@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

/* ============================================
   Angel Arts & Culinary Academy - Styles
   Warm, appetizing, artisanal design
   ============================================ */

/* CSS Variables - Color Palette */
:root {
    --cream: #fcf7f1;
    --butter-yellow: #d5a86e;
    --bakers-rose: #9f4337;
    --deep-cocoa: #1d1613;
    --brand-ink: #311f1b;
    --brand-muted: #75655f;
    --champagne: #efe1d0;
    --brand-border: rgba(93, 56, 47, 0.12);
    --white: #FFFFFF;
    --text-dark: #241c18;
    --text-light: #6c5f59;
    --border-light: #e8ddd1;
    --shadow-sm: 0 14px 35px rgba(49, 31, 27, 0.07);
    --shadow-md: 0 18px 45px rgba(49, 31, 27, 0.13);
    --shadow-lg: 0 28px 70px rgba(49, 31, 27, 0.18);
    
    /* Typography */
    --font-headline: 'Cinzel', serif;
    --font-body: 'Manrope', sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    font-family: var(--font-headline);
    font-weight: 700;
    color: var(--deep-cocoa);
}

.logo-text {
    font-size: 1.5rem;
    line-height: 1.2;
}

.logo-subtitle {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--bakers-rose);
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-menu li a {
    color: var(--text-dark);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--bakers-rose);
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bakers-rose);
}

.btn-nav-cta {
    background: var(--bakers-rose);
    color: var(--white) !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-nav-cta:hover {
    background: var(--deep-cocoa);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--deep-cocoa);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--bakers-rose) 100%);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><rect fill="%23F6D29C" width="1200" height="800"/><circle fill="%23D96A6A" opacity="0.1" cx="200" cy="200" r="150"/><circle fill="%23FFF7EE" opacity="0.2" cx="800" cy="400" r="200"/></svg>');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(59, 47, 47, 0.3) 0%, rgba(59, 47, 47, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 4rem 0;
}

.hero-headline {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(59, 47, 47, 0.3);
}

.hero-subhead {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.hero-trial-price {
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.crumb {
    position: absolute;
    font-size: 2rem;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

.crumb-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.crumb-2 {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.crumb-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(10deg); }
}

/* ============================================
   Buttons
   ============================================ */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--bakers-rose);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--deep-cocoa);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: var(--white);
    color: var(--deep-cocoa);
}

.btn-secondary:hover {
    background: var(--butter-yellow);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--bakers-rose);
    border: 2px solid var(--bakers-rose);
}

.btn-outline:hover {
    background: var(--bakers-rose);
    color: var(--white);
}

.btn-block {
    width: 100%;
}

/* ============================================
   Sections
   ============================================ */
section {
    padding: 5rem 0;
}

.section-title {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    text-align: center;
    color: var(--deep-cocoa);
    margin-bottom: 3rem;
}

.section-label {
    display: inline-block;
    background: var(--butter-yellow);
    color: var(--deep-cocoa);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

/* ============================================
   Benefits Section
   ============================================ */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* ============================================
   Featured Course
   ============================================ */
.featured-course {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
}

.featured-course-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.featured-course-text h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--deep-cocoa);
    margin-bottom: 1rem;
}

.course-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.course-details {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.detail-value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--deep-cocoa);
}

.course-image-placeholder,
.gallery-image-placeholder {
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--bakers-rose) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.featured-course-image {
    position: relative;
}

/* ============================================
   Testimonials
   ============================================ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.testimonial-quote {
    font-size: 4rem;
    font-family: var(--font-headline);
    color: var(--butter-yellow);
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--butter-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.author-name {
    font-weight: 600;
    color: var(--deep-cocoa);
}

.author-location {
    font-size: 0.9rem;
    color: var(--text-light);
}

.testimonial-badge {
    display: inline-block;
    background: var(--bakers-rose);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* ============================================
   Gallery Preview
   ============================================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   Courses Page
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--bakers-rose) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-headline);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.course-filters {
    background: var(--white);
    padding: 2rem 0;
    box-shadow: var(--shadow-sm);
}

.filter-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--bakers-rose);
    color: var(--white);
    border-color: var(--bakers-rose);
}

.courses-section {
    padding: 4rem 0;
    background: #fff;
}


.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}


.course-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}


.course-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.course-image-placeholder {
    width: 100%;
    height: 100%;
    background: #f6f6f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.2); /* ⭐ zoom level */
}

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



.course-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #caa25c;
    color: white;
    padding: 4px 10px;
    font-size: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
}


.course-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}


.course-content h3 {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    color: var(--deep-cocoa);
    margin-bottom: 0.8rem;
}

.course-meta {
    display: flex;
    gap: 1.5rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.course-duration,
.course-level {
    font-size: 0.9rem;
    color: var(--text-light);
}

.course-modules {
    margin: 1.5rem 0;
}

.course-modules strong {
    color: var(--deep-cocoa);
    display: block;
    margin-bottom: 0.5rem;
}

.course-modules ul {
    list-style: disc;
    margin-left: 1.5rem;
    color: var(--text-light);
}

.course-modules li {
    margin-bottom: 0.4rem;
}

/* Customized menu grid */
.custom-sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.course-card-customized {
    background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,255,255,0.95));
    border-radius: 20px;
}

.custom-intro h3 {
    font-family: var(--font-headline);
    color: var(--deep-cocoa);
    margin-bottom: 0.5rem;
    font-size: 1.15rem;
}

.custom-section {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    text-align: left;
}

.custom-section:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.custom-section h4 {
    font-family: var(--font-headline);
    color: var(--deep-cocoa);
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.custom-menu {
    margin: 0;
    padding-left: 1rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Backwards compatibility: style legacy benefit-card inside custom grid to match new look */
.custom-sections-grid .benefit-card {
    background: var(--white);
    padding: 1rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s ease;
    text-align: left;
}

.custom-sections-grid .benefit-card h4 {
    font-family: var(--font-headline);
    color: var(--deep-cocoa);
    margin-bottom: 0.5rem;
}

.custom-sections-grid .benefit-card ul {
    padding-left: 1rem;
    color: var(--text-light);
    margin: 0;
    font-size: 0.95rem;
}

.custom-menu li {
    margin-bottom: 0.45rem;
}

/* Rules & PDF card for Customized Class */
.customized-pdf-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.96));
    padding: 1.25rem;
    border-radius: 14px;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
}

.custom-rules h4 {
    font-family: var(--font-headline);
    color: var(--deep-cocoa);
    margin-bottom: 0.5rem;
}

.custom-rules ul {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--text-dark);
    line-height: 1.55;
    font-size: 0.98rem;
}

.custom-cta .btn {
    min-width: 160px;
}

@media (max-width: 720px) {
    .custom-sections-grid {
        grid-template-columns: 1fr;
    }
    .custom-section {
        padding: 0.8rem;
    }
    .customized-pdf-card {
        padding: 1rem;
    }
} 

.course-prerequisites {
    background: var(--cream);
    padding: 1rem;
    border-radius: 10px;
    margin: 1rem 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--bakers-rose);
    margin: 1.5rem 0;
}

/* ============================================
   About Page
   ============================================ */
.about-story {
    padding: 5rem 0;
}

.story-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 1.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-image-placeholder {
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--bakers-rose) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.mission-section,
.certifications-section {
    background: var(--white);
    padding: 5rem 0;
}

.mission-grid,
.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card,
.cert-card {
    text-align: center;
    padding: 2rem;
}

.mission-icon,
.cert-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mission-card h3,
.cert-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 1rem;
}

.facilities-section {
    padding: 5rem 0;
}

.facilities-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 3rem;
}

.facilities-highlight {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--bakers-rose);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.facilities-list {
    list-style: none;
    margin: 1.5rem 0;
}

.facilities-list li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.facilities-image-placeholder {
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--bakers-rose) 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.social-proof-section {
    background: var(--cream);
    padding: 5rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.social-links-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.social-link-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: block;
}

.social-link-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}

.social-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.social-link-card h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 0.5rem;
}

.social-link-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-cta {
    color: var(--bakers-rose);
    font-weight: 600;
}

/* ============================================
   Gallery Page
   ============================================ */
.gallery-full {
    padding: 4rem 0;
}

.gallery-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 2.5rem;
}

.gallery-summary {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.gallery-summary span {
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: rgba(210, 120, 140, 0.1);
    color: var(--text-dark);
    font-weight: 600;
    border: 1px solid rgba(210, 120, 140, 0.18);
}

.gallery-filters {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.gallery-filter-btn {
    padding: 0.7rem 1.5rem;
    border: 2px solid var(--border-light);
    background: var(--white);
    color: var(--text-dark);
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--bakers-rose);
    color: var(--white);
    border-color: var(--bakers-rose);
}

.gallery-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item-full {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    opacity: 1;
}

.gallery-item-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}
.gallery-item-full img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-full video {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item-full:hover img,
.gallery-item-full:hover video {
    transform: scale(1.05);
}
.gallery-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin: 3.5rem 0 1.8rem;
    color: var(--text-dark);
    border-left: 5px solid var(--bakers-rose);
    padding-left: 1rem;
}



.gallery-item-full:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(59, 47, 47, 0.9), transparent);
    padding: 1.5rem;
    color: var(--white);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-caption {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 47, 47, 0.95);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
}

.lightbox-content video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 10px;
    display: none;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 1rem;
    font-size: 1.2rem;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border: none;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

/* ============================================
   Testimonials Page
   ============================================ */
.testimonials-full {
    padding: 4rem 0;
}

.testimonials-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.testimonial-card-full {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card-full:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

/* Reviews preview used on Courses page */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
}

.review-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    font-size: 0.98rem;
    color: var(--text-dark);
}

.review-text {
    color: var(--text-light);
    margin-bottom: 0.75rem;
}

.review-author {
    font-weight: 700;
    color: var(--bakers-rose);
    font-size: 0.95rem;
}

/* ============================================
   Contact Page
   ============================================ */
.contact-section {
    padding: 4rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-text h3 {
    font-size: 1.3rem;
    color: var(--deep-cocoa);
    margin-bottom: 0.5rem;
}

.contact-text p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-text a {
    color: var(--bakers-rose);
    font-weight: 600;
}

.contact-text a:hover {
    text-decoration: underline;
}

.whatsapp-btn {
    display: inline-block;
    background: #25D366;
    color: var(--white);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    margin-top: 0.5rem;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
}

.social-links-contact h3 {
    font-family: var(--font-headline);
    font-size: 1.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 1rem;
}

.social-links-contact .social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-links-contact .social-links a {
    background: var(--white);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.social-links-contact .social-links a:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-form-wrapper h2 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--deep-cocoa);
    margin-bottom: 2rem;
}

/* Forms */
.contact-form,
.enrollment-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-action-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--deep-cocoa);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-light);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--bakers-rose);
    box-shadow: 0 0 0 3px rgba(217, 106, 106, 0.1);
}

.map-section {
    padding: 4rem 0;
    background: var(--white);
}

.map-section h2 {
    font-family: var(--font-headline);
    font-size: 2.5rem;
    color: var(--deep-cocoa);
    text-align: center;
    margin-bottom: 2rem;
}

.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-placeholder {
    background: linear-gradient(135deg, var(--butter-yellow) 0%, var(--bakers-rose) 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: var(--white);
    min-height: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.map-note {
    font-size: 0.9rem;
    margin-top: 1rem;
    opacity: 0.9;
}

/* ============================================
   CTA Section
   ============================================ */
.cta-section {
    background: linear-gradient(135deg, var(--bakers-rose) 0%, var(--deep-cocoa) 100%);
    color: var(--white);
    text-align: center;
    padding: 5rem 0;
}

.cta-section h2 {
    font-family: var(--font-headline);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-section .btn {
    background: var(--white);
    color: var(--deep-cocoa);
}

.cta-section .btn:hover {
    background: var(--butter-yellow);
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--deep-cocoa);
    color: var(--white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-family: var(--font-headline);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--butter-yellow);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--butter-yellow);
}

.footer-contact li {
    margin-bottom: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--bakers-rose);
    transform: translateY(-3px);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.footer-contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.footer-contact-actions .btn {
    padding: 0.8rem 1.2rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
}

.newsletter-form button {
    padding: 0.8rem 1.5rem;
    white-space: nowrap;
}

.footer-legal {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Modal
   ============================================ */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 47, 47, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    color: var(--text-light);
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--cream);
    color: var(--deep-cocoa);
}

.modal-content h2 {
    font-family: var(--font-headline);
    font-size: 2rem;
    color: var(--deep-cocoa);
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
}

/* ============================================
   Toast Notification
   ============================================ */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--deep-cocoa);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-lg);
    z-index: 4000;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    max-width: 400px;
}

.toast.active {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   2026 Brand Refresh
   ============================================ */
body {
    background:
        radial-gradient(circle at top left, rgba(213, 168, 110, 0.16), transparent 28%),
        linear-gradient(180deg, #fffdf9 0%, var(--cream) 48%, #fffaf5 100%);
}

.navbar {
    background: rgba(255, 250, 245, 0.9);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(159, 67, 55, 0.08);
    box-shadow: none;
}

.nav-wrapper {
    gap: 2rem;
}

.logo {
    flex-direction: row;
    align-items: center;
    gap: 0.9rem;
}

.logo-lockup {
    display: flex;
    flex-direction: column;
}

.logo-mark {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(213, 168, 110, 0.3), transparent 35%),
        linear-gradient(135deg, rgba(159, 67, 55, 0.18), rgba(29, 22, 19, 0.08));
    border: 1px solid rgba(159, 67, 55, 0.15);
    color: var(--bakers-rose);
    font-family: var(--font-headline);
    font-size: 1.8rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0.5);
}

.logo-text {
    font-size: 1.4rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-ink);
}

.logo-subtitle {
    margin-top: 0.15rem;
    color: var(--bakers-rose);
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
}

.nav-menu li a {
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.btn-nav-cta,
.btn-primary {
    background: linear-gradient(135deg, #b35b49 0%, #8f352d 100%);
    box-shadow: 0 12px 28px rgba(159, 67, 55, 0.22);
}

.btn-nav-cta:hover,
.btn-primary:hover {
    background: linear-gradient(135deg, #1d1613 0%, #4a2d28 100%);
}

.btn-secondary {
    background: rgba(255,255,255,0.88);
    color: var(--brand-ink);
    border: 1px solid rgba(255,255,255,0.45);
}

.btn-outline {
    border-color: rgba(159, 67, 55, 0.35);
    color: var(--bakers-rose);
}

.section-title {
    letter-spacing: 0.04em;
}

.section-title-left {
    text-align: left;
    max-width: 14ch;
}

.section-label {
    background: rgba(159, 67, 55, 0.08);
    color: var(--bakers-rose);
    border: 1px solid rgba(159, 67, 55, 0.12);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero.hero-brand {
    min-height: calc(100vh - 88px);
    padding: 6rem 0 4rem;
}

.hero-image-brand {
    background:
        linear-gradient(120deg, rgba(29, 22, 19, 0.76), rgba(29, 22, 19, 0.26)),
        url('../gallery/Cakes/blueweddingcake.jpeg') center/cover no-repeat;
    transform: scale(1.03);
}

.hero-overlay {
    background:
        radial-gradient(circle at top right, rgba(213, 168, 110, 0.35), transparent 28%),
        linear-gradient(90deg, rgba(19, 13, 11, 0.92) 8%, rgba(19, 13, 11, 0.48) 56%, rgba(19, 13, 11, 0.28) 100%);
}

.hero-layout {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 3rem;
    align-items: center;
}

.hero-copy {
    color: var(--white);
    text-align: left;
}

.hero-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    color: var(--champagne);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.82rem;
    font-weight: 700;
}

.hero-headline {
    max-width: 11ch;
    margin-bottom: 1.2rem;
    text-shadow: none;
}

.hero-subhead {
    margin-left: 0;
    margin-right: 0;
    max-width: 64ch;
    color: rgba(255, 248, 243, 0.9);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.hero-stat {
    padding: 1.1rem 1rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.hero-stat strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.hero-stat span {
    display: block;
    color: rgba(255, 248, 243, 0.82);
    font-size: 0.92rem;
}

.hero-panel {
    position: relative;
}

.hero-showcase {
    position: relative;
    min-height: 620px;
    padding: 1rem;
}

.hero-showcase img {
    width: 100%;
    height: 100%;
    min-height: 620px;
    object-fit: cover;
    border-radius: 32px;
    box-shadow: var(--shadow-lg);
}

.hero-showcase-card {
    position: absolute;
    bottom: 2rem;
    left: -1rem;
    right: 2rem;
    padding: 1.5rem;
    background: rgba(255, 250, 245, 0.94);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    color: var(--text-dark);
    box-shadow: var(--shadow-md);
}

.hero-showcase-card h2 {
    font-family: var(--font-headline);
    font-size: 1.6rem;
    line-height: 1.3;
    margin-bottom: 0.65rem;
}

.signature-strip {
    padding-top: 0;
    margin-top: -2rem;
    position: relative;
    z-index: 3;
}

.signature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.signature-item {
    background: rgba(255, 250, 245, 0.92);
    padding: 1.6rem;
    border-radius: 22px;
    border: 1px solid rgba(159, 67, 55, 0.1);
    box-shadow: var(--shadow-sm);
}

.signature-item span,
.path-eyebrow,
.course-tag {
    display: inline-block;
    color: var(--bakers-rose);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    margin-bottom: 0.75rem;
}

.signature-item h3,
.path-card h3 {
    font-family: var(--font-headline);
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--brand-ink);
}

.brand-benefits .benefit-card,
.path-card,
.testimonial-card,
.course-card,
.review-card,
.contact-form,
.enrollment-form,
.modal-content {
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(8px);
}

.benefit-card {
    text-align: left;
    border-radius: 24px;
}

.benefit-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 92px;
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: rgba(159, 67, 55, 0.08);
    color: var(--bakers-rose);
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.learning-paths {
    background: linear-gradient(180deg, rgba(239, 225, 208, 0.18), transparent);
}

.path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
}

.path-card {
    padding: 2rem;
    border-radius: 24px;
}

.path-list {
    margin-top: 1rem;
    display: grid;
    gap: 0.75rem;
}

.path-list li,
.feature-list li,
.course-modules li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-light);
    line-height: 1.65;
}

.path-list li::before,
.feature-list li::before,
.course-modules li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 0.42rem;
    height: 0.42rem;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--butter-yellow), var(--bakers-rose));
}

.featured-course {
    background: transparent;
}

.featured-course-content {
    gap: 4rem;
}

.featured-course-image img {
    width: 100%;
    min-height: 540px;
    object-fit: cover;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
}

.feature-list {
    display: grid;
    gap: 0.8rem;
    margin: 1.4rem 0 2rem;
}

.course-detail-grid,
.header-pill-row {
    display: grid;
    gap: 1rem;
}

.course-detail-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 1.5rem 0;
}

.detail-card {
    padding: 1rem;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255,255,255,0.95), rgba(248,241,233,0.9));
    border: 1px solid rgba(159, 67, 55, 0.1);
}

.detail-card span {
    display: block;
    font-size: 0.82rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    margin-bottom: 0.45rem;
}

.detail-card strong {
    font-size: 1rem;
    color: var(--brand-ink);
}

.gallery-grid-rich {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.gallery-grid-rich .gallery-item {
    min-height: 320px;
    border-radius: 24px;
}

.gallery-grid-rich .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-header-luxury {
    background:
        linear-gradient(120deg, rgba(29, 22, 19, 0.85), rgba(29, 22, 19, 0.62)),
        url('../gallery/Desserts/eclair.jpeg') center/cover no-repeat;
    padding: 5.5rem 0 4.5rem;
}

.page-header-luxury h1 {
    max-width: 14ch;
    margin: 0.4rem auto 1rem;
}

.page-header-luxury p {
    max-width: 62ch;
    margin: 0 auto;
}

.header-pill-row {
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    margin-top: 1.8rem;
}

.header-pill-row span {
    padding: 0.8rem 1rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.92);
    font-size: 0.9rem;
}

.course-filters {
    background: transparent;
    box-shadow: none;
}

.filter-buttons {
    padding: 0.5rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.72);
    border: 1px solid var(--brand-border);
    box-shadow: var(--shadow-sm);
}

.filter-btn {
    border-color: transparent;
}

.courses-section {
    background: transparent;
}

.course-section-break {
    height: 1px;
    margin: 3.5rem 0;
    background: linear-gradient(90deg, transparent, rgba(159, 67, 55, 0.25), transparent);
}

.courses-grid {
    align-items: stretch;
}

.course-card {
    border-radius: 26px;
    overflow: hidden;
}

.course-image {
    height: 250px;
}

.course-image img {
    transform: scale(1);
    transition: transform 0.45s ease;
}

.course-card:hover .course-image img {
    transform: scale(1.06);
}

.course-badge {
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #c08b4f, #a26432);
    padding: 0.5rem 0.85rem;
    letter-spacing: 0.05em;
}

.course-content {
    padding: 1.6rem;
    gap: 0.9rem;
}

.course-content h3 {
    font-size: 1.55rem;
    line-height: 1.3;
    margin-bottom: 0;
}

.course-description {
    font-size: 1rem;
    margin-bottom: 0;
}

.course-modules {
    margin: 0;
}

.course-modules strong {
    margin-bottom: 0.9rem;
}

.course-modules ul {
    margin-left: 0;
    list-style: none;
}

.course-note {
    padding: 1rem 1.05rem;
    border-radius: 16px;
    background: rgba(159, 67, 55, 0.06);
    color: var(--text-dark);
    font-size: 0.96rem;
    line-height: 1.65;
}

.course-footer {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 0.4rem;
}

.course-price {
    margin: 0;
    line-height: 1.1;
}

.course-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0.75rem;
}

.course-actions .btn {
    padding-inline: 1.2rem;
}

.course-card-customized .course-content {
    padding: 2rem;
}

.footer {
    background:
        radial-gradient(circle at top center, rgba(213, 168, 110, 0.12), transparent 25%),
        #1a1411;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-md);
        transition: left 0.3s ease;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }

    .nav-menu li a {
        display: block;
        padding: 1rem 0;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .logo-mark {
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }

    .hero-layout,
    .path-grid,
    .signature-grid,
    .course-detail-grid,
    .gallery-grid-rich {
        grid-template-columns: 1fr;
    }

    .hero-copy {
        text-align: center;
    }

    .hero-subhead {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-showcase {
        min-height: auto;
        padding: 0;
    }

    .hero-showcase img {
        min-height: 420px;
    }

    .hero-showcase-card {
        position: static;
        margin: -2rem 1rem 0;
    }

    .signature-strip {
        margin-top: 0;
        padding-top: 1rem;
    }

    .section-title-left {
        text-align: center;
        max-width: none;
    }

    .header-pill-row {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        border-radius: 24px;
    }

    .course-footer {
        align-items: stretch;
        flex-direction: column;
    }

    .course-actions {
        justify-content: stretch;
    }

    .course-actions .btn {
        width: 100%;
    }

    .hero-subhead {
        font-size: 1rem;
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-ctas .btn {
        width: 100%;
    }

    .benefits-grid,
    .courses-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .featured-course-content,
    .story-content,
    .facilities-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .course-details {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-buttons,
    .gallery-filters {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }

    .filter-btn,
    .gallery-filter-btn {
        white-space: nowrap;
    }

    .courses-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid-full {
        grid-template-columns: 1fr;
    }

    .social-links-large {
        grid-template-columns: 1fr;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form button {
        width: 100%;
    }

    .footer-contact-actions {
        flex-direction: column;
    }

    .footer-contact-actions .btn {
        width: 100%;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .form-action-row {
        grid-template-columns: 1fr;
    }

    .toast {
        right: 1rem;
        left: 1rem;
        max-width: none;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero.hero-brand {
        padding-top: 4.5rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .course-content,
    .testimonial-card,
    .benefit-card {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .btn,
    .modal,
    .toast {
        display: none;
    }
}
