/* Custom styles for sticky footer */
html {
    height: 100%;
    scroll-behavior: smooth;
}

body {
    height: 100%;
}

/* Site Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #fff;
    box-shadow: 0 2px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.site-header.header-hidden {
    transform: translateY(-100%);
}

.site-header.header-visible {
    transform: translateY(0);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 60px;
}

.header-logo {
    display: flex;
    align-items: center;
    height: 100%;
    overflow: hidden;
}

.header-logo img {
    height: 70px;
    width: auto;
    margin-top: -8px;
    margin-bottom: -8px;
    object-fit: contain;
}

.header-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    margin: 0;
}

.nav-link {
    display: inline-block;
    padding: 10px 14px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border-radius: 6px;
}

.nav-link:hover {
    color: #310006;
    background: rgba(49, 0, 6, 0.05);
}

.nav-link-cta {
    background: transparent;
    color: #310006 !important;
    border: 2px solid #310006;
}

.nav-link-cta:hover {
    background: #310006;
    color: #fff !important;
}

/* Mobile toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: #310006;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Mobile Nav - hidden by default on desktop */
.mobile-nav,
nav.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    background: #310006;
    z-index: 1001;
}

@media (max-width: 991px) {
    /* Hide entire header on mobile */
    .site-header {
        display: none;
    }
    
    /* Floating hamburger button */
    .mobile-toggle {
        display: flex;
        position: fixed;
        top: 15px;
        right: 15px;
        z-index: 1002;
        width: 50px;
        height: 50px;
        background: #310006;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    }
    
    .mobile-toggle span {
        background: #fff;
        width: 22px;
    }
    
    .mobile-toggle.active {
        background: #fff;
    }
    
    .mobile-toggle.active span {
        background: #310006;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    /* Full screen mobile menu */
    .mobile-nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: #310006 !important;
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px 20px;
        overflow-y: auto;
        z-index: 1001;
        box-sizing: border-box;
    }
    
    .mobile-nav.active {
        display: flex !important;
    }
    
    .mobile-logo {
        display: none;
    }
    
    .mobile-nav .nav-links {
        flex-direction: column;
        gap: 5px;
        width: 100%;
        text-align: center;
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav .nav-links li {
        width: 100%;
    }
    
    .mobile-nav .nav-link {
        display: block !important;
        padding: 18px 20px !important;
        font-size: 22px !important;
        font-weight: 600 !important;
        color: #fff !important;
        text-decoration: none !important;
        text-transform: uppercase !important;
        letter-spacing: 2px !important;
        transition: all 0.3s ease !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }
    
    .mobile-nav .nav-link:hover,
    .mobile-nav .nav-link:active {
        background: rgba(255,255,255,0.1) !important;
        color: #fff !important;
    }
    
    .mobile-nav .nav-link-cta {
        border: 2px solid #fff !important;
        background: transparent !important;
        color: #fff !important;
        margin-top: 25px !important;
        padding: 18px 40px !important;
        border-radius: 30px !important;
        font-size: 20px !important;
        display: inline-block !important;
    }
    
    .mobile-nav .nav-link-cta:hover {
        background: #fff !important;
        color: #310006 !important;
    }
}

/* Custom button colors */
.btn-primary.btn-filled {
    background: #58030d !important;
    border-color: #58030d !important;
    color: #fff !important;
}

.btn-primary.btn-filled:hover {
    background: #4a0a0f !important;
    border-color: #4a0a0f !important;
}

body {
    display: flex;
    flex-direction: column;
}

.main-container {
    flex: 1 0 auto;
    min-height: calc(100vh - 200px);
    overflow: visible !important;
}

/* Override theme overflow when modal is open */
body.modal-open .main-container {
    overflow: visible !important;
}

.footer-container {
    flex-shrink: 0;
    margin-top: auto;
}

/* Footer contact info responsive */
@media (max-width: 767px) {
    .contact-info {
        flex-direction: column !important;
        gap: 12px !important;
        align-items: center !important;
    }

    .contact-info span.contact-separator {
        display: none !important;
    }

    .contact-info .social-icons {
        margin-bottom: 0 !important;
    }
    
    .contact-info .contact-link {
        display: block;
    }
    
    .footer-title {
        font-size: 18px;
    }
}

/* Hover effects for footer links */
.footer-container .social-icons li a:hover {
    opacity: 0.7 !important;
}

/* Reduce footer padding to make it lower */
.footer-container footer.short {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    background-color: #310006 !important;
}

.footer-container .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-container .row {
    width: 100%;
    justify-content: center;
}

.footer-container .col-sm-12 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Footer title */
.footer-title {
    color: #fff;
    margin-bottom: 16px;
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 1px;
    text-align: center;
    width: 100%;
}

/* Footer contact info */
.contact-info {
    color: #fff;
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
    text-align: center;
    flex-wrap: wrap;
    gap: 24px;
}

/* Footer social icons */
.footer-social {
    margin: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    vertical-align: middle;
}

.footer-social-link {
    color: #fff;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.footer-social-link:hover {
    opacity: 0.7;
}

/* Contact separator */
.contact-separator {
    color: #fff;
    opacity: 0.5;
    margin: 0 8px;
}

/* Contact links */
.contact-link {
    color: #fff;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 1;
}

/* Hero Section */
.hero-section {
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 120px 0 100px 0;
    text-align: center;
    min-height: 450px;
    display: flex;
    align-items: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(49,0,6,0.85) 100%);
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    color: #fff;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 25px;
    border: 1px solid rgba(255,255,255,0.3);
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.15;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-content .lead {
    font-size: 20px;
    opacity: 0.95;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-cta {
    margin-top: 25px;
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-cta .btn {
    padding: 16px 40px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.btn-outline-white {
    background: transparent !important;
    border: 2px solid rgba(255,255,255,0.8) !important;
    color: #fff !important;
}

.btn-outline-white:hover {
    background: #fff !important;
    color: #310006 !important;
    border-color: #fff !important;
}

/* Tiles Section */
.tiles-section {
    padding: 50px 0 60px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 35px;
}

.section-header h2 {
    font-size: 32px;
    color: #310006;
    margin-bottom: 10px;
}

.section-header p {
    font-size: 16px;
    color: #666;
}

/* Tiles Grid - 6 tiles */
.tiles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tile {
    position: relative;
    min-height: 240px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tile:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.tile-featured {
    grid-column: span 1;
}

.tile-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.tile-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tile:hover .tile-background img {
    transform: scale(1.05);
}

.tile-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
    transition: background 0.3s ease;
}

.tile:hover .tile-overlay {
    background: linear-gradient(to bottom, rgba(49,0,6,0.3) 0%, rgba(49,0,6,0.85) 100%);
}

.tile-content {
    position: relative;
    z-index: 2;
    padding: 25px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.tile-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #310006;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tile-title {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.3;
}

.tile-text {
    color: #fff;
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0 0 15px 0;
}

.tile-cta {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.tile:hover .tile-cta {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive tiles */
@media (max-width: 991px) {
    .tiles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-section {
        padding: 120px 0 80px 0;
        min-height: 400px;
    }
    
    .tile {
        min-height: 200px;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .tiles-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .tile {
        min-height: 160px;
    }
    
    .tile-badge {
        display: none;
    }
    
    .tile-title {
        font-size: 18px;
    }
    
    .tile-text {
        font-size: 13px;
    }
    
    .hero-content h1 {
        font-size: 26px;
    }
    
    .hero-content h1 br {
        display: none;
    }
    
    .hero-content .lead {
        font-size: 15px;
    }
    
    .hero-section {
        padding: 90px 0 50px 0;
        min-height: 320px;
    }
    
    .hero-badge {
        font-size: 10px;
        padding: 5px 12px;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 14px 30px;
    }
    
    .tiles-section {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 25px;
    }
    
    .section-header h2 {
        font-size: 22px;
    }
    
    .section-header p {
        font-size: 14px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
}

/* Page Hero */
.page-hero {
    position: relative;
    padding: 100px 0 50px 0;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(49,0,6,0.8) 100%);
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero .lead {
    color: #fff;
    opacity: 0.9;
    font-size: 16px;
}

/* Page Content Styles */
.page-content {
    padding: 100px 0 50px 0;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f0eb 100%);
    min-height: calc(100vh - 150px);
}

.page-content-no-hero {
    padding: 40px 0 50px 0;
}

/* Full height page content */
.page-content-fullheight {
    min-height: calc(100vh - 200px);
    display: flex;
    flex-direction: column;
    padding: 30px 0 80px 0 !important;
}

.page-content-fullheight .container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    min-height: 0;
}

.page-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
}

.page-header:before {
    display: none !important;
}

.page-header h1 {
    font-size: 36px;
    color: #310006;
    margin-bottom: 10px;
}

.page-header .lead {
    font-size: 16px;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Remove any split background effects from theme */
.page-content .container {
    position: relative;
    z-index: 1;
}

.page-container-flex {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.main-content-area {
    flex: 1;
}

.sidebar-area {
    width: 300px;
    flex-shrink: 0;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 40px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

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

.product-card-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #310006;
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
}

.product-card-image {
    height: 200px;
    overflow: hidden;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-content {
    padding: 25px;
}

.product-card-content h3 {
    font-size: 22px;
    color: #310006;
    margin-bottom: 15px;
}

.product-card-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 15px;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 15px;
}

.course-details span {
    font-size: 13px;
    color: #666;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.course-details span i {
    color: #310006;
    font-size: 14px;
}

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

/* Info Section */
.info-section {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.info-section h2 {
    text-align: center;
    font-size: 22px;
    color: #310006;
    margin-bottom: 25px;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.info-item {
    text-align: center;
}

.info-item i {
    font-size: 28px;
    color: #310006;
    margin-bottom: 10px;
    display: block;
}

.info-item h4 {
    font-size: 14px;
    color: #333;
    margin-bottom: 5px;
}

.info-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 25px;
    background: #fff;
    border-radius: 12px;
}

.cta-section h3 {
    font-size: 20px;
    color: #310006;
    margin-bottom: 10px;
}

.cta-section p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Course intro */
.course-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 30px;
}

.course-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/* Calendar styles */
.calendar-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 25px;
}

.calendar-intro p {
    font-size: 15px;
    color: #555;
}

.calendar-placeholder {
    background: #fff;
    padding: 35px 30px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 30px;
}

.calendar-notice i {
    font-size: 36px;
    color: #310006;
    margin-bottom: 12px;
    display: block;
}

.calendar-notice h3 {
    font-size: 20px;
    color: #310006;
    margin-bottom: 10px;
}

.calendar-notice p {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

.themes-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.theme-card {
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.theme-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.theme-card h4 {
    font-size: 15px;
    color: #310006;
    margin-bottom: 8px;
}

.theme-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* About page */
.about-intro {
    max-width: 700px;
    margin: 0 auto 30px;
    text-align: center;
}

.about-intro p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.values-section {
    margin-bottom: 30px;
}

.values-section h2 {
    text-align: center;
    font-size: 22px;
    color: #310006;
    margin-bottom: 25px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.value-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-3px);
}

.value-card > i {
    font-size: 28px;
    color: #310006;
    margin-bottom: 12px;
    display: block;
}

.value-card h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.location-section {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.location-section h2 {
    font-size: 20px;
    color: #310006;
    margin-bottom: 15px;
}

.location-details h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.location-details p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}

/* Shop page */
.shop-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 30px;
}

.shop-intro p {
    font-size: 15px;
    color: #555;
}

.shop-features {
    margin-bottom: 30px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card {
    background: #fff;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-3px);
}

.feature-card > i {
    font-size: 28px;
    color: #310006;
    margin-bottom: 12px;
    display: block;
}

.feature-card h4 {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
}

.feature-card p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

.voucher-section {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.voucher-section h2 {
    font-size: 20px;
    color: #310006;
    margin-bottom: 8px;
}

.voucher-section > p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.voucher-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.voucher-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 6px;
}

.voucher-info p {
    font-size: 13px;
    color: #666;
    margin-bottom: 8px;
}

.product-option-highlight {
    background: linear-gradient(135deg, #f9f5f5 0%, #fff 100%);
    border: 1px solid rgba(49, 0, 6, 0.1);
}

/* Sidebar */
.sidebar-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.sidebar-box h3 {
    font-size: 18px;
    color: #310006;
    margin-bottom: 15px;
}

.sidebar-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.sidebar-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sidebar-area.sidebar-horizontal {
    flex-direction: row;
    gap: 20px;
}

.sidebar-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    flex: 1;
}

.sidebar-card h3 {
    font-size: 18px;
    color: #310006;
    margin-bottom: 15px;
    font-weight: 600;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.info-list li {
    padding: 8px 0;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #555;
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: #333;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.btn-outline-dark {
    background: transparent !important;
    border: 2px solid #310006 !important;
    color: #310006 !important;
}

.btn-outline-dark:hover {
    background: #310006 !important;
    color: #fff !important;
}

/* Upcoming events */
.upcoming-events {
    margin-bottom: 30px;
}

.upcoming-events h2 {
    font-size: 20px;
    color: #310006;
    margin-bottom: 15px;
}

.themes-grid-compact {
    grid-template-columns: repeat(2, 1fr);
}

/* Content box */
.content-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.content-box h2 {
    font-size: 22px;
    color: #310006;
    margin-bottom: 15px;
}

.content-box p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* Compact grids */
.values-grid-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

/* Icons */
.value-icon,
.feature-icon {
    font-size: 28px;
    display: block;
    margin-bottom: 10px;
}

/* Voucher box */
.voucher-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.voucher-box-content h3 {
    font-size: 18px;
    color: #310006;
    margin-bottom: 8px;
}

.voucher-box-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

/* Product card adjustments for single column */
.col-md-8 .product-card {
    margin-bottom: 20px;
}

.col-md-8 .product-card:last-of-type {
    margin-bottom: 0;
}

/* Info list links */
.info-list a {
    color: #310006;
    text-decoration: none;
}

.info-list a:hover {
    text-decoration: underline;
}

/* Responsive for pages */
@media (max-width: 991px) {
    .row {
        display: flex;
        flex-wrap: wrap;
    }
    
    .col-md-8,
    .col-md-4 {
        width: 100%;
        flex: none;
    }
    
    .col-md-4 {
        margin-top: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .info-grid,
    .themes-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .feature-grid,
    .feature-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .values-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    /* No header on mobile - reduce top padding */
    .page-content {
        padding: 20px 15px 50px;
    }
    
    .page-content-no-hero {
        padding: 20px 0 40px 0;
    }
    
    .page-hero {
        padding: 30px 0 30px 0;
    }
    
    .hero-section {
        padding: 30px 0 50px 0;
        min-height: 350px;
    }
    
    .checkout-page {
        padding: 20px 15px 60px 15px;
    }
    
    .thank-you-page {
        padding: 20px 0 60px 0;
    }
}

@media (max-width: 767px) {
    .page-content {
        padding: 15px 15px 40px;
    }
    
    .page-content-no-hero {
        padding: 15px 0 30px 0;
    }
    
    .info-grid,
    .themes-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .info-section {
        padding: 25px 15px;
    }
    
    .voucher-card {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .voucher-box {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }
    
    .voucher-box .btn {
        width: 100%;
    }
    
    .page-header h1 {
        font-size: 24px;
    }
    
    .feature-card,
    .value-card {
        padding: 20px 15px;
    }
    
    .feature-card h4,
    .value-card h4 {
        font-size: 14px;
    }
    
    .feature-card p,
    .value-card p {
        font-size: 12px;
    }
}

/* Contact page styles */
.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.contact-card h2 {
    font-size: 26px;
    color: #310006;
    margin-bottom: 12px;
    font-weight: 600;
}

.contact-card > p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 35px;
    font-size: 15px;
}

.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 35px;
}

.contact-detail {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-detail > i {
    font-size: 26px;
    color: #310006;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-detail > div {
    flex: 1;
}

.contact-detail h4 {
    font-size: 16px;
    color: #310006;
    margin-bottom: 10px;
    font-weight: 600;
}

.contact-detail p {
    color: #555;
    font-size: 14px;
    line-height: 1.7;
    margin: 0;
}

.contact-detail a {
    color: #310006;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact-detail a:hover {
    color: #722F37;
    text-decoration: underline;
}

.contact-cta {
    margin-top: 30px;
    text-align: center;
}

.contact-cta .btn {
    padding: 14px 40px;
    font-size: 15px;
    font-weight: 600;
}

.social-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li {
    margin-bottom: 0;
}

.social-links li a {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
    text-decoration: none;
    padding: 10px 0;
    transition: color 0.2s ease;
    font-size: 14px;
}

.social-links li a:hover {
    color: #310006;
}

.social-links li a i {
    font-size: 22px;
    color: #310006;
}

.quick-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quick-links li {
    margin-bottom: 12px;
}

.quick-links li:last-child {
    margin-bottom: 0;
}

.quick-links li a {
    color: #555;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: block;
    padding: 4px 0;
}

.quick-links li a:hover {
    color: #310006;
    padding-left: 5px;
}

@media (max-width: 767px) {
    .contact-details-grid {
        grid-template-columns: 1fr;
    }
}
}


/* Modal styles */
#voucher-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999999;
    overflow-y: auto;
    padding: 80px 20px;
    box-sizing: border-box;
}

#voucher-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    z-index: 1;
}

#voucher-modal .modal-content {
    background: #fff;
    max-width: 650px;
    width: 100%;
    border-radius: 12px;
    padding: 35px;
    position: relative;
    box-shadow: 0 25px 80px rgba(0,0,0,0.5);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 2;
    margin: 0 auto;
}

.modal-large {
    max-width: 700px !important;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: #310006;
}

.modal-content h2 {
    font-size: 28px;
    color: #310006;
    margin-bottom: 10px;
}

.modal-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.product-options {
    margin-bottom: 30px;
}

.product-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-option:last-child {
    margin-bottom: 0;
}

.product-info {
    flex: 1;
    padding-right: 20px;
}

.product-info h3 {
    font-size: 18px;
    color: #333;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
    line-height: 1.5;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: #310006;
}

.btn-buy {
    flex-shrink: 0;
    padding: 12px 30px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
}

.modal-info {
    background: linear-gradient(135deg, #310006 0%, #4a0009 100%);
    padding: 25px;
    border-radius: 10px;
    margin-top: 25px;
    color: #fff;
}

.modal-info h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.modal-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.modal-info ul li {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    padding-left: 25px;
    position: relative;
    margin-bottom: 10px;
    line-height: 1.5;
}

.modal-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.modal-text {
    color: #555;
    line-height: 1.7;
}

.modal-text p {
    margin-bottom: 15px;
}

.shop-info {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin: 25px 0;
}

.shop-info h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.shop-info p {
    margin: 0;
    color: #666;
}

@media (max-width: 767px) {
    .modal {
        padding: 20px 15px;
    }
    
    .modal-content {
        padding: 25px;
    }
    
    .modal-content h2 {
        font-size: 22px;
        padding-right: 30px;
    }
    
    .product-option {
        flex-direction: column;
        text-align: center;
    }
    
    .product-info {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .btn-buy {
        width: 100%;
    }
}

/* Checkout Page Styles */
.checkout-page {
    padding: 120px 0 80px 0;
    background: #f5f5f5;
    min-height: calc(100vh - 100px);
}

.checkout-page .row {
    display: flex;
    align-items: stretch;
}

.checkout-page .col-md-7,
.checkout-page .col-md-5 {
    display: flex;
    flex-direction: column;
}

.checkout-form-section {
    background: #fff;
    padding: 45px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.checkout-header {
    margin-bottom: 35px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.checkout-header h1 {
    font-size: 28px;
    color: #310006;
    margin-bottom: 8px;
    font-weight: 700;
}

.checkout-subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
}

.form-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.form-section-header i {
    font-size: 20px;
    color: #310006;
}

.form-section-header h3 {
    margin: 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.form-section {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 2px solid #f0f0f0;
    background: #fafafa;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #eee;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section .form-group:last-child {
    margin-bottom: 0;
}


.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group.half {
    flex: 1;
}

.form-group.third {
    flex: 0 0 35%;
}

.form-group.two-thirds {
    flex: 1;
}

.checkout-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #555;
    font-size: 14px;
}

.checkout-form .form-control {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s ease;
    background: #fff;
}

.checkout-form .form-control:hover {
    border-color: #ccc;
}

.checkout-form .form-control:focus {
    border-color: #310006;
    outline: none;
    box-shadow: 0 0 0 4px rgba(49, 0, 6, 0.08);
    background: #fff;
}

.payment-info {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.payment-method {
    cursor: pointer;
}

.payment-method input[type="radio"] {
    display: none;
}

.payment-method-content {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.payment-method-content img {
    width: 40px;
    height: 28px;
    object-fit: contain;
}

.payment-method-content span {
    font-weight: 500;
    color: #333;
}

.payment-method input[type="radio"]:checked + .payment-method-content {
    border-color: #310006;
    background: rgba(49, 0, 6, 0.03);
}

.payment-method:hover .payment-method-content {
    border-color: #999;
}

.checkbox-group {
    margin-bottom: 15px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    font-weight: 400 !important;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: 18px;
    height: 18px;
    accent-color: #310006;
    flex-shrink: 0;
}

.checkbox-label span {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.checkbox-label a {
    color: #310006;
    text-decoration: underline;
}

/* Order Summary */
.order-summary {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: sticky;
    top: 100px;
    flex: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.order-summary-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.order-summary-header h2 {
    font-size: 22px;
    color: #310006;
    margin: 0;
    font-weight: 700;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
}

.order-item-name {
    font-weight: 500;
    color: #333;
    flex: 1;
    padding-right: 15px;
}

.order-item-price {
    font-weight: 600;
    color: #310006;
    white-space: nowrap;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
    margin-top: 15px;
    border-top: 2px solid #f0f0f0;
    border-bottom: 2px solid #f0f0f0;
}

.order-total span:first-child {
    font-weight: 500;
    color: #333;
}

.total-price {
    font-size: 24px;
    font-weight: 700;
    color: #310006;
}

.checkout-info {
    background: linear-gradient(135deg, #310006 0%, #4a0009 100%);
    padding: 20px;
    border-radius: 8px;
    margin-top: 25px;
    margin-bottom: 25px;
    color: #fff;
}

.checkout-info h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 12px;
    font-weight: 600;
}

.checkout-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checkout-info ul li {
    font-size: 13px;
    color: rgba(255,255,255,0.9);
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.5;
}

.checkout-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fff;
    font-weight: bold;
}

.checkout-info ul li:last-child {
    margin-bottom: 0;
}

.btn-pay {
    width: 100%;
    padding: 18px 24px !important;
    font-size: 17px;
    font-weight: 600;
    margin-top: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(49, 0, 6, 0.2);
}

.btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(49, 0, 6, 0.3);
}

.payment-security {
    text-align: center;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.payment-security p {
    color: #666;
    font-size: 13px;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.payment-security i {
    color: #310006;
}

.back-link {
    display: block;
    text-align: center;
    margin-top: 20px;
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: #310006;
}

@media (max-width: 991px) {
    .checkout-page .row {
        flex-direction: column;
    }
    
    .checkout-page .col-md-5 {
        margin-top: 30px;
    }
    
    .order-summary {
        position: static;
        height: auto;
    }
}

@media (max-width: 767px) {
    .checkout-page {
        padding: 80px 15px 60px 15px;
    }
    
    .checkout-form-section {
        padding: 20px;
    }
    
    .checkout-header h1 {
        font-size: 22px;
    }
    
    .checkout-subtitle {
        font-size: 14px;
    }
    
    .form-section {
        padding: 20px;
        margin-bottom: 25px;
    }
    
    .form-section-header h3 {
        font-size: 16px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group.half,
    .form-group.third,
    .form-group.two-thirds {
        flex: none;
        width: 100%;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        padding: 20px;
    }
    
    .order-summary-header h2 {
        font-size: 18px;
    }
    
    .payment-methods-section .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .checkout-info {
        padding: 15px;
    }
    
    .checkout-info h4 {
        font-size: 14px;
    }
    
    .btn-pay {
        padding: 16px 20px !important;
        font-size: 15px;
    }
}

/* Payment methods section in order summary */
.payment-methods-section {
    margin: 25px 0;
    padding: 20px 0;
    border-top: 2px solid #f0f0f0;
}

.payment-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.payment-section-header i {
    font-size: 18px;
    color: #310006;
}

.payment-methods-section h3 {
    font-size: 18px;
    color: #333;
    margin: 0;
    font-weight: 600;
}

.payment-methods-section .payment-info {
    font-size: 12px;
    color: #666;
    margin-bottom: 15px;
}

.payment-methods-section .payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.payment-methods-section .payment-method-content {
    padding: 12px 15px;
}

.payment-methods-section .payment-method-content img {
    width: 35px;
    height: 24px;
}

.payment-methods-section .payment-method-content span {
    font-size: 13px;
}

/* Checkbox section in order summary */
.checkbox-section {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.checkbox-section .checkbox-group {
    margin-bottom: 0;
}

/* Thank You Page Styles */
.thank-you-page {
    padding: 120px 0 80px 0;
    background: #f5f5f5;
    min-height: calc(100vh - 100px);
}

.thank-you-content {
    background: #fff;
    padding: 60px 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    text-align: center;
}

.thank-you-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 30px;
    background: #310006;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-icon i {
    font-size: 40px;
    color: #fff;
}

.thank-you-content h1 {
    font-size: 36px;
    color: #310006;
    margin-bottom: 15px;
}

.thank-you-content .lead {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.order-details {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-label {
    font-weight: 500;
    color: #666;
}

.detail-value {
    font-weight: 600;
    color: #310006;
}

.next-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto 40px;
}

.next-steps h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 15px;
}

.next-steps ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.next-steps ul li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #310006;
    font-weight: bold;
}

.action-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.action-buttons .btn {
    min-width: 200px;
}

@media (max-width: 767px) {
    .thank-you-content {
        padding: 40px 25px;
    }
    
    .thank-you-content h1 {
        font-size: 28px;
    }
    
    .thank-you-content .lead {
        font-size: 16px;
    }
    
    .action-buttons {
        flex-direction: column;
    }
    
    .action-buttons .btn {
        width: 100%;
    }
}

/* Hero Cards - Visual Product Display */
.hero-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 20px;
    flex: 1;
    min-height: 0;
}

.hero-card {
    position: relative;
    min-height: 400px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.hero-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    transition: background 0.4s ease;
}

.hero-card:hover .hero-card-overlay {
    background: linear-gradient(to top, rgba(49,0,6,0.95) 0%, rgba(49,0,6,0.5) 50%, rgba(49,0,6,0.2) 100%);
}

.hero-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    color: #fff;
    z-index: 2;
}

.hero-card-badge {
    display: inline-block;
    background: #310006;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.hero-card h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
}

.hero-card-subtitle {
    font-size: 14px;
    opacity: 0.9;
    margin-bottom: 15px;
    color: #fff;
}

.hero-card-price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #fff;
}

.hero-card-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.hero-card:hover .hero-card-details {
    max-height: 100px;
    opacity: 1;
    margin-bottom: 20px;
}

.hero-card-details p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

.btn-white {
    background: #fff !important;
    color: #310006 !important;
    border: none !important;
    padding: 14px 35px !important;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: #f0f0f0 !important;
    transform: scale(1.05);
}

/* Themes Section */
.themes-section {
    margin-bottom: 20px;
    flex-shrink: 0;
}

.themes-section h3 {
    text-align: center;
    font-size: 24px;
    color: #310006;
    margin-bottom: 30px;
}

.themes-carousel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.theme-tile {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    cursor: pointer;
}

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

.theme-tile i {
    font-size: 36px;
    color: #310006;
    margin-bottom: 15px;
    display: block;
}

.theme-tile h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 600;
}

.theme-tile span {
    font-size: 13px;
    color: #888;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #310006 0%, #5a0010 100%);
    padding: 30px 40px;
    border-radius: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #fff;
    flex-shrink: 0;
}

.cta-banner-content h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #fff;
}

.cta-banner-content p {
    font-size: 15px;
    opacity: 0.9;
    margin: 0;
}

.cta-banner .btn {
    background: #fff !important;
    color: #310006 !important;
    padding: 14px 35px !important;
    flex-shrink: 0;
}

.cta-banner .btn:hover {
    background: #f0f0f0 !important;
}

/* Course Path - Visual Steps */
.course-path {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    flex: 1;
}

.course-step {
    flex: 1;
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    height: 100%;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.course-step:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.3);
}

.course-step-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.2) 100%);
    transition: background 0.4s ease;
}

.course-step:hover .course-step-overlay {
    background: linear-gradient(to top, rgba(49,0,6,0.95) 0%, rgba(49,0,6,0.3) 100%);
}

.course-step-number {
    position: absolute;
    top: 25px;
    left: 25px;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
}

.course-step-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 35px;
    color: #fff;
}

.course-step-badge {
    display: inline-block;
    background: #310006;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.course-step h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
}

.course-step-info {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 13px;
    opacity: 0.85;
}

.course-step-info span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-step-price {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.course-step-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

.course-step:hover .course-step-details {
    max-height: 80px;
    opacity: 1;
    margin-bottom: 15px;
}

.course-step-details p {
    font-size: 14px;
    line-height: 1.5;
    opacity: 0.9;
    margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .page-content-fullheight {
        min-height: calc(100vh - 150px);
        max-height: none;
    }
    
    .hero-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .hero-card {
        min-height: 350px;
    }
    
    .themes-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 25px 25px;
    }
    
    .course-path {
        flex-direction: column;
        gap: 20px;
    }
    
    .course-step {
        min-height: 400px;
    }
}

@media (max-width: 576px) {
    .hero-card {
        min-height: 300px;
    }
    
    .hero-card h2 {
        font-size: 20px;
    }
    
    .hero-card-price {
        font-size: 24px;
    }
    
    .hero-card-content {
        padding: 25px;
    }
    
    .themes-carousel {
        grid-template-columns: 1fr;
    }
    
    .theme-tile {
        padding: 20px 15px;
    }
    
    .theme-tile i {
        font-size: 28px;
    }
    
    .theme-tile h4 {
        font-size: 14px;
    }
    
    .themes-section h3 {
        font-size: 20px;
    }
    
    .cta-banner {
        padding: 20px;
    }
    
    .cta-banner-content h3 {
        font-size: 20px;
    }
    
    .cta-banner-content p {
        font-size: 14px;
    }
    
    .course-step {
        min-height: 350px;
    }
    
    .course-step h3 {
        font-size: 20px;
    }
    
    .course-step-price {
        font-size: 24px;
    }
    
    .course-step-content {
        padding: 25px;
    }
    
    .page-hero h1 {
        font-size: 28px;
    }
    
    .page-hero .lead {
        font-size: 14px;
    }
    
    .page-hero {
        padding: 80px 0 40px 0;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .content-box h2 {
        font-size: 20px;
    }
    
    .sidebar-box {
        padding: 20px;
    }
}

/* Calendar Events - Clean List */
.events-month-block {
    margin-bottom: 30px;
}

.month-title {
    font-size: 20px;
    font-weight: 700;
    color: #310006;
    margin-bottom: 15px;
    padding-left: 5px;
}

.events-list-container {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
}

.events-list {
    display: flex;
    flex-direction: column;
}

.event-row {
    display: flex;
    align-items: center;
    padding: 18px 25px;
    border-bottom: 1px solid #f0f0f0;
    transition: background 0.2s ease;
}

.event-row:last-child {
    border-bottom: none;
}

.event-row:hover {
    background: #faf8f5;
}

.event-date-simple {
    font-size: 16px;
    font-weight: 700;
    color: #310006;
    min-width: 60px;
}

.event-time {
    font-size: 14px;
    color: #888;
    min-width: 50px;
}

.event-name {
    flex: 1;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    padding: 0 15px;
}

.event-btn {
    background: #310006;
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
}

.event-btn:hover {
    background: #4a0009;
    color: #fff;
    text-decoration: none;
}

.event-status-badge {
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 20px;
}

.event-status-badge.sold-out {
    background: #f0f0f0;
    color: #999;
}

.event-row.event-sold-out {
    opacity: 0.6;
}

.event-row.event-sold-out:hover {
    background: transparent;
}

@media (max-width: 767px) {
    .events-month-block {
        margin-bottom: 25px;
    }
    
    .month-title {
        font-size: 18px;
        margin-bottom: 12px;
    }
    
    .event-row {
        display: grid;
        grid-template-columns: 35px 50px 1fr;
        grid-template-rows: auto auto;
        gap: 5px 10px;
        padding: 15px;
        align-items: center;
    }
    
    .event-date-simple {
        font-size: 18px;
        font-weight: 700;
        min-width: auto;
        grid-row: 1;
        grid-column: 1;
    }
    
    .event-time {
        font-size: 13px;
        min-width: auto;
        grid-row: 1;
        grid-column: 2;
    }
    
    .event-name {
        font-size: 15px;
        padding: 0;
        grid-row: 1;
        grid-column: 3;
    }
    
    .event-btn {
        grid-row: 2;
        grid-column: 1 / -1;
        text-align: center;
        padding: 10px 20px;
        margin-top: 5px;
    }
    
    .event-status-badge {
        grid-row: 2;
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 5px;
    }
    
    .col-md-4[style*="margin-top"] {
        margin-top: 20px !important;
    }
}

/* Team Section - O nas */
.team-section {
    margin-bottom: 50px;
}

.team-member {
    display: flex;
    gap: 50px;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-bottom: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.team-member:last-child {
    margin-bottom: 0;
}

.team-member-photo {
    flex: 0 0 350px;
    height: 400px;
    overflow: hidden;
}

.team-member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover .team-member-photo img {
    transform: scale(1.05);
}

.team-member-info {
    flex: 1;
    padding: 40px 50px 40px 0;
}

.team-member-info h2 {
    font-size: 32px;
    color: #333;
    margin-bottom: 10px;
    font-weight: 400;
}

.team-member-info h2 span {
    font-weight: 700;
    color: #310006;
}

.team-member-role {
    font-size: 14px;
    color: #310006;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px !important;
}

.team-member-bio {
    font-size: 15px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px !important;
}

.team-member-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.team-member-tags span {
    background: linear-gradient(135deg, #310006 0%, #5a0010 100%);
    color: #fff;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
}

/* Reverse layout for second member */
.team-member-reverse {
    flex-direction: row-reverse;
}

.team-member-reverse .team-member-info {
    padding: 40px 0 40px 50px;
}

@media (max-width: 991px) {
    .team-member,
    .team-member-reverse {
        flex-direction: column;
    }
    
    .team-member-photo {
        flex: none;
        width: 100%;
        height: 300px;
    }
    
    .team-member-info,
    .team-member-reverse .team-member-info {
        padding: 30px;
    }
    
    .team-member-info h2 {
        font-size: 26px;
    }
}

@media (max-width: 576px) {
    .team-member-photo {
        height: 250px;
    }
    
    .team-member-info h2 {
        font-size: 22px;
    }
    
    .team-member-tags span {
        padding: 6px 14px;
        font-size: 11px;
    }
}

