/* Custom Styles for Yubileum Fransiskan 2026 */

:root {
    --primary-color: #8B4513;
    --secondary-color: #D4A574;
    --accent-color: #4A90E2;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --bg-light: #F8F9FA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
}

/* Navbar Styles */
.navbar {
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.2rem;
    color: var(--primary-color) !important;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    margin: 0 10px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background-color: var(--primary-color);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.9), rgba(212, 165, 116, 0.8));
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: -1;
    transition: opacity 0.6s ease-in-out;
}

.hero-section.fade-transition::before {
    opacity: 0;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1.2s ease;
}

.hero-content .btn {
    animation: fadeInUp 1.4s ease;
    padding: 12px 35px;
    font-weight: 600;
}

.hero-content img {
    animation: fadeInUp 1.3s ease;
}

.hero-content .church-name {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

/* Hero Content Overlay */
.hero-content {
    position: relative;
    z-index: 1;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-section {
        min-height: 60vh;
        padding-top: 30px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
        margin-top: 20px;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .church-name {
        font-size: 1.2rem;
    }
    
    .hero-content .btn {
        padding: 10px 25px;
        font-size: 0.9rem;
        margin-bottom: 15px;
        display: inline-block;
        width: auto;
    }
}

/* Cards */
.card {
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-img-top {
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* Section Titles */
.section-title {
    position: relative;
    margin-bottom: 3rem;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #6B3410;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.btn-outline-primary {
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    transform: translateY(-2px);
}

/* Certificate Button - White with Brown Text */
.btn-certificate {
    background-color: white;
    color: #6B3410;
    border: 2px solid white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-certificate:hover {
    background-color: #f8f9fa;
    color: #4A2810;
    border-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.5);
}

.btn-certificate:active {
    transform: translateY(0px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

/* Timeline */
.timeline {
    position: relative;
    padding: 20px 0;
}

.timeline-item {
    padding: 20px 0;
    position: relative;
}

.timeline-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    margin-bottom: 15px;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(139, 69, 19, 0.25);
    font-weight: 600;
    transition: all 0.3s ease;
}

.card:hover .timeline-icon {
    transform: scale(1.1);
    box-shadow: 0 5px 18px rgba(139, 69, 19, 0.35);
}

/* Info Boxes */
.info-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.info-box:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    transform: translateY(-5px);
}

.info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

/* Footer */
.text-light-gray {
    color: #B0B0B0;
}

.hover-link:hover {
    color: white !important;
}

.wa-link {
    transition: color 0.3s ease;
}

.wa-link:hover {
    color: #ffe865 !important;
}

.social-icons a {
    transition: color 0.3s ease;
}

.social-icons a:hover {
    color: var(--secondary-color) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease;
}

/* Image Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-content .church-name {
        font-size: 1.1rem;
        font-weight: 700;
        letter-spacing: 0.5px;
    }
    
    .hero-content img {
        max-width: 80px !important;
    }
    
    .nav-link {
        margin: 5px 0;
    }
    
    .section-title {
        margin-bottom: 2rem;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 10px;
        min-width: 40px;
    }
    
    .card-body .d-flex.align-items-center {
        gap: 0.75rem;
    }
    
    .card-body h4 {
        font-size: 1rem;
    }
    
    /* Indulgensi section - button dan konten */
    .bg-dark.text-white.rounded-pill h5 {
        font-size: 0.95rem !important;
        padding: 8px 16px;
    }
    
    /* Jadwal Novena - responsif */
    .d-flex.align-items-center.justify-content-between {
        padding: 12px 16px !important;
        font-size: 0.9rem;
    }
    
    .d-flex.align-items-center.justify-content-between strong {
        font-size: 0.9rem;
    }
    
    .d-flex.align-items-center.justify-content-between span {
        font-size: 0.85rem;
    }
    
    /* Card body spacing - reduce all padding */
    .card-body.p-4 {
        padding: 0.75rem 1rem !important;
    }
    
    /* Fix excessive top spacing in schedule cards with align-items-center */
    .card-body .row.align-items-center {
        display: block !important;
    }
    
    .card-body .row.align-items-center .col-md-2,
    .card-body .row.align-items-center .col-md-9 {
        display: block !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .card-body .row.align-items-center .col-md-2 {
        margin-bottom: 1rem !important;
    }
    
    /* Remove extra spacing from card title */
    .card-body h4 {
        margin-top: 0 !important;
        padding-top: 0 !important;
        margin-bottom: 0.5rem !important;
    }
}

/* Utility Classes */
.bg-light-brown {
    background-color: #F5F0EA;
}

.text-brown {
    color: var(--primary-color);
}

.shadow-custom {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Responsive Images */
@media (max-width: 768px) {
    .rounded.shadow-custom {
        margin-top: 20px;
        width: 100%;
        height: auto;
        max-width: 100%;
    }
    
    /* Spacing for buttons in Welcome Section on mobile */
    .row.align-items-center .btn-primary {
        margin-bottom: 15px;
        margin-right: 0 !important;
        display: inline-block;
    }
}

/* Program Carousel */
.program-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.program-carousel-container {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 10px 5px 20px;
    -webkit-overflow-scrolling: touch;
}

.program-carousel-container::-webkit-scrollbar {
    height: 8px;
}

.program-carousel-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.program-carousel-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.program-carousel-container::-webkit-scrollbar-thumb:hover {
    background: #6B3410;
}

.program-card {
    flex: 0 0 auto;
    width: 350px;
    scroll-snap-align: center;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-card .card {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: none;
    transition: all 0.3s ease;
}

.program-card .card:hover {
    box-shadow: 0 8px 25px rgba(139, 69, 19, 0.2);
}

.program-card .card-img-top {
    height: 250px;
    object-fit: cover;
}

/* Desktop: Show 3 cards at once */
@media (min-width: 992px) {
    .program-carousel-container {
        justify-content: flex-start;
    }
    
    .program-card {
        width: calc(33.333% - 1rem);
        min-width: 300px;
    }
}

/* Tablet: Show 2 cards at once */
@media (min-width: 768px) and (max-width: 991px) {
    .program-card {
        width: calc(50% - 0.75rem);
        min-width: 280px;
    }
}

/* Mobile: Show 1 card at once with smooth swipe */
@media (max-width: 767px) {
    .program-carousel-container {
        gap: 1rem;
        padding: 10px 0 20px;
    }
    
    .program-card {
        width: 85%;
        min-width: 280px;
        max-width: 350px;
    }
    
    .program-card .card-img-top {
        height: 200px;
    }
}

/* PDF Viewer Container */
.pdf-viewer-container {
    position: relative;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
}

.pdf-scroll-container {
    width: 100%;
    max-height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
    background: #f8f9fa;
    padding: 20px;
}

.pdf-scroll-container::-webkit-scrollbar {
    width: 10px;
}

.pdf-scroll-container::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.pdf-scroll-container::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 5px;
}

.pdf-scroll-container::-webkit-scrollbar-thumb:hover {
    background: #6B3410;
}

.pdf-page-canvas {
    display: block;
    margin: 0 auto 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background: white;
    max-width: 100%;
}

#pdf-loading {
    min-height: 200px;
}

/* Responsive PDF Viewer */
@media (max-width: 768px) {
    .pdf-scroll-container {
        max-height: 600px;
        padding: 15px;
    }
    
    .pdf-page-canvas {
        margin-bottom: 15px;
    }
}

@media (max-width: 576px) {
    .pdf-scroll-container {
        max-height: 500px;
        padding: 10px;
    }
    
    .pdf-page-canvas {
        margin-bottom: 10px;
    }
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   Event Cards - Jadwal Kegiatan Yubileum
   ======================================== */

/* Event Card Container */
.event-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.event-card-container {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

/* Event Date Badge */
.event-date-badge {
    flex-shrink: 0;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-radius: 12px;
    padding: 1rem 1.25rem;
    text-align: center;
    min-width: 120px;
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

.date-number {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.date-month {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

.special-date .date-month-range {
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.25rem;
}

.special-date .date-year {
    font-size: 0.9rem;
    font-weight: 500;
    opacity: 0.95;
}

/* Event Content */
.event-content {
    flex: 1;
    min-width: 0;
}

.event-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.event-description {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Event Details */
.event-details {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    line-height: 1.6;
}

.detail-item i {
    flex-shrink: 0;
    margin-top: 2px;
}

.detail-label {
    font-weight: 600;
    color: #333;
}

.detail-value {
    color: #666;
}

/* Novena Card */
.novena-card {
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.novena-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15) !important;
}

.novena-title {
    font-size: 1.25rem;
    font-weight: 700;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.novena-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 0.75rem;
}

.novena-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.novena-item:hover {
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    border-color: #8B4513;
    box-shadow: 0 4px 12px rgba(139, 69, 19, 0.1);
    transform: translateX(5px);
}

.novena-label {
    font-weight: 700;
    color: #8B4513;
    font-size: 0.95rem;
}

.novena-date {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   Responsive Design - Mobile
   ======================================== */

@media (max-width: 768px) {
    /* Event Card - Stack layout on mobile */
    .event-card-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .event-date-badge {
        width: 100%;
        min-width: auto;
        padding: 0.75rem 1rem;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 1rem;
    }
    
    .date-number {
        font-size: 2rem;
        margin-bottom: 0;
    }
    
    .date-month {
        font-size: 0.85rem;
        text-align: left;
    }
    
    .special-date {
        flex-direction: column;
        gap: 0.25rem;
    }
    
    .special-date .date-month-range {
        font-size: 1rem;
        margin-bottom: 0.1rem;
    }
    
    .special-date .date-year {
        font-size: 0.85rem;
    }
    
    .event-title {
        font-size: 1.1rem;
    }
    
    .event-description {
        font-size: 0.9rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    /* Novena Card - Single column on mobile */
    .novena-title {
        font-size: 1.05rem;
    }
    
    .novena-list {
        grid-template-columns: 1fr;
    }
    
    .novena-item {
        padding: 0.875rem 1rem;
    }
    
    .novena-label {
        font-size: 0.9rem;
    }
    
    .novena-date {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    /* Extra small devices - More compact */
    .event-card .card-body {
        padding: 1rem !important;
    }
    
    .event-date-badge {
        padding: 0.625rem 0.875rem;
        gap: 0.75rem;
    }
    
    .date-number {
        font-size: 1.75rem;
    }
    
    .date-month {
        font-size: 0.8rem;
    }
    
    .event-title {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .event-description {
        font-size: 0.875rem;
        margin-bottom: 0.75rem;
    }
    
    .detail-item {
        font-size: 0.85rem;
    }
    
    .detail-label, .detail-value {
        font-size: 0.85rem;
    }
    
    .novena-title {
        font-size: 1rem;
        padding-bottom: 0.75rem;
    }
    
    .novena-item {
        padding: 0.75rem 0.875rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .novena-label {
        font-size: 0.875rem;
    }
    
    .novena-date {
        font-size: 0.8rem;
    }
}

/* ========================================
   Indulgensi Card Section
   ======================================== */

/* Indulgensi Card */
.indulgensi-card {
    border: none;
    overflow: hidden;
}

.indulgensi-card .card-body {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

/* Indulgensi Header */
.indulgensi-header {
    background: transparent;
    color: #8B4513;
    padding: 0 0 1.5rem 0;
    border-radius: 0;
    margin-bottom: 2rem;
    box-shadow: none;
    display: block;
    border-bottom: 3px solid #8B4513;
    position: relative;
}

.indulgensi-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #8B4513;
}

.indulgensi-title i {
    font-size: 1.5rem;
    color: #A0522D;
}

/* Indulgensi List */
.indulgensi-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Indulgensi Item */
.indulgensi-item {
    display: flex;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.indulgensi-item:hover {
    transform: translateX(8px);
    box-shadow: 0 6px 20px rgba(139, 69, 19, 0.15);
    border-left-color: #8B4513;
}

/* Indulgensi Icon */
.indulgensi-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(139, 69, 19, 0.25);
}

/* Indulgensi Content */
.indulgensi-content {
    flex: 1;
    min-width: 0;
}

.indulgensi-subtitle {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.indulgensi-text {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* ========================================
   Responsive - Indulgensi Section
   ======================================== */

@media (max-width: 768px) {
    .indulgensi-card .card-body {
        padding: 1.5rem !important;
    }
    
    .indulgensi-header {
        padding: 0 0 1.25rem 0;
        margin-bottom: 1.5rem;
        width: 100%;
        display: block;
    }
    
    .indulgensi-title {
        font-size: 1.1rem;
        text-align: left;
        flex-wrap: wrap;
    }
    
    .indulgensi-title i {
        font-size: 1.3rem;
    }
    
    .indulgensi-list {
        gap: 1.25rem;
    }
    
    .indulgensi-item {
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .indulgensi-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .indulgensi-subtitle {
        font-size: 1rem;
    }
    
    .indulgensi-text {
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .indulgensi-card .card-body {
        padding: 1.25rem !important;
    }
    
    .indulgensi-header {
        padding: 0 0 1rem 0;
        margin-bottom: 1.25rem;
        border-radius: 0;
    }
    
    .indulgensi-title {
        font-size: 0.95rem;
        flex-direction: row;
        gap: 0.5rem;
        text-align: left;
    }
    
    .indulgensi-title i {
        font-size: 1.25rem;
        margin: 0 !important;
    }
    
    .indulgensi-list {
        gap: 1rem;
    }
    
    .indulgensi-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }
    
    .indulgensi-icon {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
    
    .indulgensi-subtitle {
        font-size: 0.95rem;
    }
    
    .indulgensi-text {
        font-size: 0.9rem;
        line-height: 1.6;
    }
}

/* ========================================
   Custom Buttons
   ======================================== */

/* Brown Button */
.btn-brown {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border: 2px solid #8B4513;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 6px 25px rgba(139, 69, 19, 0.4);
    padding: 14px 40px !important;
    font-size: 1.05rem;
}

.btn-brown:hover {
    background: linear-gradient(135deg, #A0522D 0%, #8B4513 100%);
    color: white;
    border-color: #A0522D;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.6);
}

.btn-brown:active {
    transform: translateY(-1px);
}

/* Outline Brown Button */
.btn-outline-brown {
    background: rgba(255, 255, 255, 0.95);
    color: #8B4513;
    border: 2px solid #8B4513;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(139, 69, 19, 0.25);
    padding: 14px 40px !important;
    font-size: 1.05rem;
}

.btn-outline-brown:hover {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    color: white;
    border-color: #8B4513;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(139, 69, 19, 0.6);
}

.btn-outline-brown:active {
    transform: translateY(-1px);
}

/* Hero Buttons Container */
.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Responsive Hero Buttons */
@media (max-width: 768px) {
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 90%;
        max-width: 300px;
        padding: 12px 30px !important;
    }
    
    .hero-buttons .btn.me-2 {
        margin-right: 0 !important;
    }
}

@media (max-width: 576px) {
    .hero-buttons .btn {
        max-width: 100%;
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .hero-buttons .btn i {
        font-size: 1rem;
    }
}

/* ========================================
   Booklet Download Buttons
   ======================================== */

.booklet-buttons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #f0f0f0;
}

.booklet-buttons .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

.booklet-buttons .btn i {
    font-size: 1.2rem;
}

/* Responsive Booklet Buttons */
@media (max-width: 768px) {
    .booklet-buttons {
        margin-top: 1.5rem;
        padding-top: 1.25rem;
    }
    
    .booklet-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.75rem;
    }
}

@media (max-width: 576px) {
    .booklet-buttons {
        margin-top: 1.25rem;
        padding-top: 1rem;
        gap: 0.75rem !important;
    }
    
    .booklet-buttons .btn {
        max-width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
        min-width: auto;
    }
    
    .booklet-buttons .btn i {
        font-size: 1.1rem;
    }
}

/* ========================================
   Download Page Styles
   ======================================== */

/* Download Card */
.download-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.download-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(139, 69, 19, 0.15);
    border-color: #8B4513;
}

/* Download Icon */
.download-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(139, 69, 19, 0.3);
}

.download-icon i {
    font-size: 2.5rem;
    color: white;
}

/* Download Content */
.download-content {
    flex: 1;
    margin-bottom: 1.5rem;
}

.download-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.download-description {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.download-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.download-meta .badge {
    padding: 0.5rem 0.875rem;
    font-weight: 600;
    font-size: 0.85rem;
}

/* Download Action */
.download-action .btn {
    font-weight: 600;
    padding: 0.875rem 1.5rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.download-action .btn i {
    font-size: 1.2rem;
}

/* Badge Brown */
.bg-brown {
    background: linear-gradient(135deg, #8B4513 0%, #A0522D 100%) !important;
    color: white !important;
}

/* Alert Info Custom */
.alert-info-custom {
    background: linear-gradient(135deg, #e3f2fd 0%, #f0f7ff 100%);
    border: 2px solid #90caf9;
    border-radius: 12px;
    padding: 1.75rem;
}

.alert-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #2196F3 0%, #1976D2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.alert-icon i {
    font-size: 1.5rem;
    color: white;
}

.alert-content {
    flex: 1;
}

.alert-heading {
    font-weight: 700;
    color: #1976D2;
    margin-bottom: 0.75rem;
}

.alert-content p,
.alert-content ul {
    color: #37474F;
    font-size: 0.95rem;
}

.alert-content ul li {
    margin-bottom: 0.5rem;
}

/* ========================================
   Responsive - Download Page
   ======================================== */

@media (max-width: 992px) {
    .download-card {
        padding: 1.75rem;
    }
    
    .download-icon {
        width: 70px;
        height: 70px;
    }
    
    .download-icon i {
        font-size: 2.2rem;
    }
    
    .download-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .download-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .download-icon {
        width: 65px;
        height: 65px;
        margin-bottom: 1.25rem;
    }
    
    .download-icon i {
        font-size: 2rem;
    }
    
    .download-title {
        font-size: 1.15rem;
        margin-bottom: 0.875rem;
    }
    
    .download-description {
        font-size: 0.9rem;
        margin-bottom: 0.875rem;
    }
    
    .download-content {
        margin-bottom: 1.25rem;
    }
    
    .alert-info-custom {
        padding: 1.5rem;
    }
    
    .alert-icon {
        width: 45px;
        height: 45px;
    }
    
    .alert-icon i {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .download-card {
        padding: 1.25rem;
    }
    
    .download-icon {
        width: 60px;
        height: 60px;
        border-radius: 15px;
    }
    
    .download-icon i {
        font-size: 1.75rem;
    }
    
    .download-title {
        font-size: 1.1rem;
    }
    
    .download-description {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .download-meta {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .download-action .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }
    
    .alert-info-custom {
        padding: 1.25rem;
    }
    
    .alert-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 1rem;
    }
    
    .alert-icon i {
        font-size: 1.2rem;
    }
    
    .alert-info-custom .d-flex {
        flex-direction: column;
    }
    
    .alert-heading {
        font-size: 1.1rem;
    }
    
    .alert-content p,
    .alert-content ul {
        font-size: 0.875rem;
    }
}
