@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* =========================
   RESET
========================= */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #FAF6F0;
    color: #2B1A0E;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}


/* =========================
   VARIABLES
========================= */

:root {

    --ivory: #FAF6F0;
    --cream: #F2E8D9;
    --cocoa: #2B1A0E;
    --mocha: #5C3A1E;
    --caramel: #C17D3C;
    --gold: #D4A853;
    --blush: #E8C4A0;
    --muted: #7A5C44;

    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', system-ui, sans-serif;

}


/* =========================
   NAVIGATION
========================= */
nav {


    position: sticky;
    top: 0;
    z-index: 1000;

    height: 65px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: rgba(250, 246, 240, .95);
    backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(193, 125, 60, .15);
}



/* LOGO */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;

    text-decoration: none;
}

.nav-img {
    width: 38px;
    height: 38px;

    border-radius: 50%;
    object-fit: cover;
}

.nav-logo span {

    font-family: var(--serif);

    font-size: 1.35rem;

    font-weight: 600;

    color: var(--cocoa);
}

.nav-logo em {

    color: var(--caramel);

    font-style: normal;
}


/* DESKTOP MENU */

.nav-links {

    display: flex;

    align-items: center;

    gap: 22px;

    list-style: none;
}


.nav-links a {

    text-decoration: none;

    color: var(--mocha);

    font-size: .82rem;

    font-weight: 500;

    letter-spacing: .05em;

    transition: .25s;

}


.nav-links a:hover {

    color: var(--caramel);

}


/* SOCIAL ICONS */

.nav-icon {

    font-size: 1rem;

}


.nav-icon:hover {

    color: var(--gold);

}


/* ENROLL BUTTON */

.nav-cta {

    background: var(--cocoa);

    color: #fff !important;

    padding: 9px 18px;

    border-radius: 30px;

    transition: .3s;

}


.nav-cta:hover {

    background: var(--caramel);

}


/* HAMBURGER */

.nav-toggle {

    display: none;

    width: 38px;

    height: 38px;

    background: transparent;

    border: none;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    gap: 5px;

}


.nav-toggle span {

    width: 22px;

    height: 2px;

    background: var(--cocoa);

    transition: .3s;

}



/* =========================
   MOBILE MENU
========================= */


@media(max-width:900px) {


    .nav-toggle {

        display: flex;

    }



    .nav-links {


        position: fixed;


        top: 0;


        right: -100%;


        width: 230px;


        height: 100vh;


        background: #fff;


        display: flex;


        flex-direction: column;


        align-items: flex-start;


        gap: 12px;


        padding: 75px 22px;


        list-style: none;


        box-shadow: -8px 0 25px rgba(0, 0, 0, .10);


        transition: .35s ease;


    }



    .nav-links.active {

        right: 0;

    }



    .nav-links li {

        width: 100%;

    }



    .nav-links a {


        display: block;


        width: 100%;


        padding: 10px 0;


        font-size: .85rem;


        border-bottom: 1px solid #eee;


    }



    /* SOCIAL ICONS */

    .nav-icon {

        border: none !important;

        font-size: 18px !important;

        display: inline-block !important;

        width: auto !important;

        margin-right: 12px;

    }



    /* BUTTON */


    .nav-cta {


        width: 100%;


        text-align: center;


        margin-top: 15px;


        padding: 11px;


    }



}

/* =========================
   MARQUEE
========================= */


.marquee-strip {

    background: var(--cocoa);

    color: var(--gold);

    padding: .75rem 0;

    overflow: hidden;

    white-space: nowrap;

    font-family: var(--serif);

    font-style: italic;

}


.marquee-inner {

    display: inline-block;

    animation: marquee 34s linear infinite;

}


.marquee-inner span {

    margin: 0 1.8rem;

}


@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* =========================
   COMMON
========================= */


.eyebrow {

    display: inline-flex;

    align-items: center;

    gap: .6rem;

    color: var(--caramel);

    font-size: .75rem;

    letter-spacing: .18em;

    text-transform: uppercase;

    margin-bottom: 1rem;

}


.eyebrow::before {

    content: "";

    width: 2rem;

    height: 1px;

    background: var(--caramel);

}


.section-title {

    font-family: var(--serif);

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 400;

    line-height: 1.2;

    color: var(--cocoa);

    margin-bottom: 1.2rem;

}


.section-title em {

    color: var(--caramel);

}


/* =========================
   BUTTONS
========================= */


.btn-primary,
.btn-outline,
.btn-gold {

    display: inline-block;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: .1em;

    font-size: .85rem;

    font-weight: 500;

    padding: .9rem 2.2rem;

    border-radius: 6px;

    transition: .3s;

}



.btn-primary {

    background: var(--cocoa);

    color: white;

    border: 2px solid var(--cocoa);

}


.btn-primary:hover {

    background: transparent;

    color: var(--cocoa);

    transform: translateY(-3px);

}



.btn-outline {

    color: var(--mocha);

    border: 2px solid var(--blush);

}


.btn-outline:hover {

    border-color: var(--caramel);

    color: var(--caramel);

}



.btn-gold {

    background: var(--gold);

    color: var(--cocoa);

    border: 2px solid var(--gold);

}


.btn-gold:hover {

    background: transparent;

    color: var(--gold);

}



/* =========================
   HERO
========================= */


.hero {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 4rem;

    padding: 80px 5vw;

}



.hero-title {

    font-family: var(--serif);

    font-size: clamp(2.4rem, 5vw, 4.4rem);

    font-weight: 400;

    line-height: 1.1;

    margin-bottom: 1.2rem;

}



.hero-title em {

    color: var(--caramel);

}



.hero-desc {

    color: var(--muted);

    max-width: 520px;

    margin-bottom: 1rem;

}



.hero-sub {

    font-family: var(--serif);

    font-style: italic;

    color: var(--mocha);

    margin-bottom: 2rem;

}



.hero-visual {

    position: relative;

}



.hero-img {

    width: 100%;

    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .12);

    transition: .4s;

}



.hero-img:hover {

    transform: scale(1.02);

}




/* =========================
   MISSION
========================= */

.mission {

    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 5rem;

    padding: 80px 5vw;

    background: var(--cream);

}


.mission-body p {

    color: var(--muted);

    margin-bottom: 1rem;

}


.mission-body strong {

    color: var(--mocha);

    font-weight: 500;

}


.mission-body em {

    color: var(--caramel);

}


.mission-visual {

    position: relative;

}


.mission-img {

    width: 100%;

    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

    transition: .4s;

}


.mission-img:hover {

    transform: scale(1.02);

}



.mission-badge {

    position: absolute;

    bottom: -25px;

    left: -20px;


    width: 90px;

    height: 90px;

    border-radius: 50%;


    background: var(--gold);

    color: var(--cocoa);


    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;


    font-size: .7rem;

    font-weight: 600;

    line-height: 1.4;

}



/* =========================
   ABOUT
========================= */


.about {

    display: grid;

    grid-template-columns: 400px 1fr;

    align-items: center;

    gap: 70px;

    padding: 80px 5vw;

}



.about-image img {

    width: 100%;

    border-radius: 12px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .10);

    transition: .4s;

}



.about-image img:hover {

    transform: scale(1.02);

}



.about-content p {

    color: var(--muted);

    margin-bottom: 18px;

    line-height: 1.9;

}



.about-sign {

    margin-top: 30px;

    padding-top: 20px;

    border-top: 1px solid rgba(0, 0, 0, .1);

}



.about-sign h4 {

    font-family: var(--serif);

    color: var(--caramel);

    font-size: 1.8rem;

}



.about-sign span {

    font-size: .85rem;

    color: var(--muted);

}



/* =========================
   SPECIAL WHY BOX
========================= */


.special {

    max-width: 900px;

    margin: auto;

    padding: 80px 5vw;

}



.special-intro {

    color: var(--muted);

    margin-bottom: 2rem;

}



.special-intro strong {

    color: var(--mocha);

}



.why-box {

    background: var(--cocoa);

    color: white;

    padding: 2.5rem 3rem;

    border-left: 5px solid var(--gold);

    border-radius: 8px;

}



.why-title {

    font-family: var(--serif);

    color: var(--gold);

    font-size: 1.5rem;

    margin-bottom: 1.5rem;

}



.why-list {

    list-style: none;

}



.why-list li {

    display: flex;

    gap: 1rem;

    padding: 1rem 0;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

    color: rgba(255, 255, 255, .8);

}



.why-icon {

    color: var(--gold);

    font-size: 1.2rem;

}



.why-list strong {

    color: var(--gold);

}



.why-footer {

    margin-top: 1.5rem;

    padding-top: 1.5rem;

    border-top: 1px solid rgba(255, 255, 255, .15);

    color: rgba(255, 255, 255, .7);

    font-style: italic;

}



/* =========================
   FEATURES
========================= */


.features {

    padding: 0 5vw 80px;

}



.features-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));

    gap: 25px;

}



.feat-card {

    background: var(--cream);

    padding: 2rem;

    border-radius: 8px;

    border-bottom: 3px solid transparent;

    transition: .3s;

}



.feat-card:hover {

    background: var(--ivory);

    border-bottom-color: var(--caramel);

    transform: translateY(-5px);

}



.feat-icon {

    font-size: 2rem;

    margin-bottom: 1rem;

}



.feat-card h3 {

    font-family: var(--serif);

    font-size: 1.2rem;

    color: var(--cocoa);

    margin-bottom: .5rem;

}



.feat-card p {

    color: var(--muted);

    font-size: .9rem;

}


/* =========================
   GALLERY
========================= */


.gallery {

    padding: 80px 5vw;

}



.gallery-header {

    text-align: center;

    margin-bottom: 40px;

}



.slider {

    width: 100%;

    overflow: hidden;

}



.slider-track {

    display: flex;

    gap: 20px;

    transition: .8s ease;

}



.slider-track img {

    width: 280px;

    height: 220px;

    flex-shrink: 0;

    object-fit: cover;

    border-radius: 12px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .12);

    transition: .3s;

}



.slider-track img:hover {

    transform: scale(1.04);

}

/* ===============================
   COURSE VIDEO PLAYER
================================ */


.video-header {

    text-align: center;

    max-width: 700px;

    margin: 0 auto 40px;

}



.video-header p {

    color: var(--text);

    margin-top: 15px;

}


.course-video {

    padding: 90px 5%;

    background: var(--bg);

}



.main-video {

    max-width: 1000px;

    height: 550px;

    margin: auto;

    background: black;

    border-radius: 15px;

    overflow: hidden;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .25);

}



.main-video video {

    width: 100%;

    height: 100%;

    object-fit: cover;

}



.video-list {

    max-width: 1000px;

    margin: 30px auto 0;


    display: flex;

    gap: 15px;


    overflow-x: auto;


    padding-bottom: 10px;

}



.video-list button {


    min-width: 150px;


    padding: 15px 20px;


    border: none;


    background: var(--dark);


    color: white;


    cursor: pointer;


    border-radius: 5px;


    transition: .3s;


}



.video-list button:hover {


    background: var(--orange);


}





/* MOBILE */

@media(max-width:600px) {


    .main-video {

        height: 250px;

    }


    .video-list button {

        min-width: 120px;

    }

}

/* =========================
   STUDENTS
========================= */

.students {
    padding: 90px 5%;
    background: var(--cream);
}

.students-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.students-header p {
    color: var(--muted);
}

.students-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.student-card {
    background: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    transition: .35s;
}

.student-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
}

.student-card h3 {
    font-family: var(--serif);
    color: var(--cocoa);
    margin-bottom: 5px;
    font-size: 1.5rem;
}

.student-card span {
    display: block;
    color: var(--caramel);
    font-size: .95rem;
    margin-bottom: 15px;
}

.student-card p {
    color: var(--muted);
    font-style: italic;
    line-height: 1.8;
}

/* =========================
   BUTTONS
========================= */

.student-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.btn-student,
.btn-review {
    padding: 12px 22px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    transition: .3s ease;
}

.btn-student {
    background: #2B1A0E;
    color: #fff;
}

.btn-student:hover {
    background: #C17D3C;
}

.btn-review {
    background: #C17D3C;
    color: #fff;
}

.btn-review:hover {
    background: #2B1A0E;
}

/* =========================
   MODAL
========================= */

.gallery-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    justify-content: center;
    align-items: center;
    z-index: 99999;
    padding: 20px;
}

.gallery-box {
    background: #fff;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 15px;
    padding: 25px;
    position: relative;
    animation: popup .3s ease;
}

/* Popup animation */
@keyframes popup {
    from {
        transform: scale(.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Close Button */

.close-gallery {
    position: sticky;
    top: 0;
    float: right;
    width: 40px;
    height: 40px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .2);
    transition: .3s;
    z-index: 9999;
}

.close-gallery:hover {
    background: #C17D3C;
    color: #fff;
}

.close-gallery:hover {
    background: #C17D3C;
    color: #fff;
    transform: scale(1.1);
}


/* =========================
   GALLERY
========================= */

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-top: 15px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 10px;
    transition: .3s;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}


/* =========================
   REVIEW IMAGE
========================= */

.review-image {
    width: 100%;
    max-width: 450px;
    /* Smaller image */
    height: auto;
    display: block;
    margin: 0 auto;
    /* Center the image */
    border-radius: 10px;
}


/* Scrollbar */

.gallery-box {
    background: #fff;
    width: 90%;
    max-width: 500px;
    /* Smaller popup */
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 15px;
    padding: 20px;
    position: relative;
    animation: popup .3s ease;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px) {

    .students {
        padding: 70px 5%;
    }

    .student-card {
        padding: 25px;
    }

    .student-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-student,
    .btn-review {
        width: 100%;
        max-width: 220px;
    }

    .gallery-box {
        width: 95%;
        padding: 20px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:480px) {

    .gallery-grid {
        grid-template-columns: 1fr;
    }

}


/* =========================
   QUOTE SECTION
========================= */


.quote-section {

    background: var(--cocoa);

    padding: 90px 5vw;

    text-align: center;

    position: relative;

    overflow: hidden;

}



.quote-section::before {

    content: '"';

    position: absolute;

    top: -80px;

    left: 50%;

    transform: translateX(-50%);

    font-family: var(--serif);

    font-size: 18rem;

    color: rgba(212, 168, 83, .08);

}



.insta-badge {

    display: inline-flex;

    align-items: center;

    gap: .5rem;

    padding: .5rem 1.3rem;

    border-radius: 30px;

    color: var(--gold);

    border: 1px solid rgba(212, 168, 83, .4);

    text-decoration: none;

    margin-bottom: 2rem;

}



.quote-text {

    max-width: 800px;

    margin: auto;

    color: var(--ivory);

    font-family: var(--serif);

    font-style: italic;

    font-size: clamp(1.4rem, 3vw, 2.2rem);

    line-height: 1.5;

}



.quote-text em {

    color: var(--gold);

}



.quote-text .nq-nepali {

    color: var(--gold);

}



.quote-attr {

    display: block;

    margin-top: 2rem;

    color: var(--blush);

    font-size: .8rem;

    letter-spacing: .15em;

}



/* =========================
   CONTACT
========================= */


.contact {

    display: grid;

    grid-template-columns: 2fr 1fr;

    gap: 60px;

    padding: 80px 5vw;

    background: var(--cream);

}



.contact-info {

    display: flex;

    flex-direction: column;

    gap: 25px;

    margin-top: 30px;

}



.contact-item {

    display: flex;

    gap: 18px;

}



.contact-item span {

    font-size: 28px;

    color: var(--caramel);

}



.contact-item h4 {

    font-family: var(--serif);

    margin-bottom: 5px;

}



.contact-item a {

    text-decoration: none;

    color: var(--caramel);

}



.contact-card {

    background: var(--cocoa);

    color: white;

    padding: 45px;

    border-radius: 12px;

    text-align: center;

    display: flex;

    flex-direction: column;

    justify-content: center;

}



.contact-card h3 {

    font-family: var(--serif);

    font-size: 2rem;

    margin-bottom: 20px;

}



.contact-card p {

    color: rgba(255, 255, 255, .7);

    margin-bottom: 30px;

}

/* ===============================
   COURSE POPUP FIX
================================ */

.course-modal {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .75);

    justify-content: center;

    align-items: center;

    z-index: 99999;

    padding: 20px;

    overflow: auto;

}



.course-box {

    position: relative;

    width: 90%;

    max-width: 800px;

    max-height: 90vh;

    display: flex;

    justify-content: center;

    align-items: center;

}



.course-box img {

    width: 100%;

    max-height: 85vh;

    object-fit: contain;

    border-radius: 12px;

    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);

}




.close-course {

    position: absolute;


    top: -15px;

    right: -15px;


    width: 45px;

    height: 45px;


    display: flex;

    align-items: center;

    justify-content: center;


    background: white;

    color: #222;


    border-radius: 50%;


    font-size: 28px;

    font-weight: 300;


    cursor: pointer;


    border: none;


    z-index: 10;


    box-shadow: 0 5px 20px rgba(0, 0, 0, .3);


    transition: .3s;

}



.close-course:hover {

    transform: scale(1.1);

    background: #C17D3C;

    color: white;

}




/* MOBILE POPUP */

@media(max-width:600px) {


    .course-box {

        width: 95%;

    }



    .course-box img {

        max-height: 75vh;

    }



    .close-course {

        width: 38px;

        height: 38px;

        font-size: 22px;

        top: -10px;

        right: -5px;

    }


}


/* =========================
   FOOTER
========================= */


footer {

    background: var(--cocoa);

    color: rgba(250, 246, 240, .7);

    padding: 60px 5vw 30px;

}



.footer-top {

    display: grid;

    grid-template-columns: 2fr 1fr 1fr;

    gap: 4rem;


    padding-bottom: 2.5rem;

    border-bottom: 1px solid rgba(255, 255, 255, .1);

}



.footer-logo-img {

    width: 48px;

    height: 48px;

    border-radius: 50%;

    margin-bottom: 1rem;

}



.footer-logo-text {

    font-family: var(--serif);

    font-size: 1.5rem;

    color: var(--ivory);

    margin-bottom: .5rem;

}



.footer-logo-text span {

    color: var(--gold);

}



.footer-brand p {

    color: rgba(255, 255, 255, .6);

    font-size: .9rem;

}



.footer-col h4 {

    color: var(--gold);

    font-size: .75rem;

    letter-spacing: .15em;

    text-transform: uppercase;

    margin-bottom: 1rem;

}



.footer-col ul {

    list-style: none;

}



.footer-col li {

    margin-bottom: .6rem;

}



.footer-col a {

    text-decoration: none;

    color: rgba(255, 255, 255, .65);

    transition: .3s;

}



.footer-col a:hover {

    color: var(--gold);

}



.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 1rem;

    padding-top: 25px;

}



.footer-bottom p {

    font-size: .8rem;

}



.footer-socials {

    display: flex;

    gap: 1.5rem;

}



.footer-socials a {

    color: rgba(255, 255, 255, .5);

    text-decoration: none;

    font-size: .8rem;

    text-transform: uppercase;

}



.footer-socials a:hover {

    color: var(--gold);

}


/* =========================
   SCROLLBAR
========================= */


::-webkit-scrollbar {

    width: 10px;

}


::-webkit-scrollbar-thumb {

    background: var(--caramel);

    border-radius: 20px;

}

/* =========================
   TABLET RESPONSIVE
========================= */


@media(max-width:1000px) {


    .hero {

        grid-template-columns: 1fr;

        gap: 3rem;

        padding: 60px 5vw;

    }



    .hero-visual {

        order: -1;

    }



    .hero-visual::before {

        display: none;

    }



    .mission {

        grid-template-columns: 1fr;

        gap: 3rem;

    }



    .mission-visual {

        order: -1;

    }



    .about {

        grid-template-columns: 1fr;

        gap: 40px;

    }



    .about-image {

        max-width: 500px;

    }



    .contact {

        grid-template-columns: 1fr;

    }



    .footer-top {

        grid-template-columns: 1fr 1fr;

    }



}



/* =========================
   MOBILE NAVIGATION
========================= */


@media(max-width:900px) {


    .nav-toggle {

        display: flex;

    }



    .nav-links {


        position: fixed;

        top: 70px;

        left: 0;

        right: 0;


        background: var(--ivory);


        display: flex;

        flex-direction: column;

        align-items: flex-start;


        padding: 20px 5vw;


        transform: translateY(-120%);

        opacity: 0;


        transition: .3s;


        box-shadow: 0 10px 25px rgba(0, 0, 0, .08);


    }



    .nav-links.open {

        transform: translateY(0);

        opacity: 1;

    }



    .nav-links li {

        width: 100%;

        padding: 12px 0;

        border-bottom: 1px solid rgba(193, 125, 60, .15);

    }



    .nav-cta {

        display: inline-block;

        margin-top: 10px;

    }



}




/* =========================
   SMALL MOBILE
========================= */


@media(max-width:600px) {



    body {

        font-size: 15px;

    }



    .section-title {

        font-size: 2rem;

    }



    .hero {

        padding: 45px 5vw;

    }



    .hero-title {

        font-size: 2.7rem;

    }



    .mission,

    .about,

    .contact {

        padding: 60px 5vw;

    }



    .why-box {

        padding: 2rem 1.5rem;

    }



    .features {

        padding-bottom: 60px;

    }



    .features-grid {

        grid-template-columns: 1fr;

    }



    .slider-track img {

        width: 220px;

        height: 180px;

    }



    .contact-card {

        padding: 30px 20px;

    }



    .footer-top {

        grid-template-columns: 1fr;

        gap: 2rem;

    }



    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }



    .footer-socials {

        justify-content: center;

        flex-wrap: wrap;

    }



    .mission-badge {

        width: 70px;

        height: 70px;

        font-size: .6rem;

        left: 10px;

        bottom: 10px;

    }


}

/* =========================
   GLOBAL TRANSITIONS
========================= */


a,
button,
img,
.card {

    -webkit-tap-highlight-color: transparent;

}



/* =========================
   SMOOTH SECTION APPEARANCE
========================= */


.fade-up {

    animation: fadeUp .8s ease forwards;

}



@keyframes fadeUp {

    from {

        opacity: 0;

        transform: translateY(30px);

    }


    to {

        opacity: 1;

        transform: translateY(0);

    }

}



/* =========================
   CARD HOVER EFFECT
========================= */


.reason-card {

    background: var(--ivory);

    padding: 2rem;

    border-radius: 8px;

    transition: .3s;

}



.reason-card:hover {

    transform: translateY(-6px);

    box-shadow: 0 12px 30px rgba(0, 0, 0, .08);

}



.reason-card h4 {

    font-family: var(--serif);

    font-size: 1.2rem;

    margin-bottom: .5rem;

}



.reason-card p {

    color: var(--muted);

}



/* =========================
   NUMBER STYLE
========================= */


.reason-num {

    position: absolute;

    right: 20px;

    top: 15px;


    font-family: var(--serif);

    font-size: 3rem;

    color: rgba(193, 125, 60, .15);

}



.reason-card {

    position: relative;

}



/* =========================
   TEXT SELECTION
========================= */


::selection {

    background: var(--gold);

    color: var(--cocoa);

}



/* =========================
   ACCESSIBILITY
========================= */


button:focus,
a:focus {

    outline: 2px solid var(--gold);

    outline-offset: 4px;

}



/* =========================
   DISABLE ANIMATION OPTION
========================= */


@media(prefers-reduced-motion:reduce) {


    *,
    *::before,
    *::after {

        animation-duration: .01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;

        transition-duration: .01ms !important;

    }


}



/* =========================
   EXTRA IMAGE POLISH
========================= */


.hero-img,
.mission-img,
.about-image img,
.slider-track img {


    cursor: pointer;

}



/* =========================
   MOBILE BUTTON FIX
========================= */


@media(max-width:500px) {


    .btn-primary,
    .btn-outline,
    .btn-gold {

        width: 100%;

        text-align: center;

    }


}

/* ===============================
   RESET
================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #FAF6F0;
    color: #2B1A0E;
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    line-height: 1.7;
    overflow-x: hidden;
}


/* ===============================
   COLORS
================================ */

:root {

    --bg: #FAF6F0;
    --light: #F2E8D9;

    --dark: #2B1A0E;
    --brown: #5C3A1E;

    --orange: #C17D3C;
    --gold: #D4A853;

    --soft: #E8C4A0;
    --text: #7A5C44;


    --serif: 'Cormorant Garamond', serif;
    --sans: 'DM Sans', sans-serif;
}



/* ===============================
   NAVBAR
================================ */

nav {

    position: sticky;
    top: 0;
    z-index: 999;

    height: 75px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 5%;

    background: rgba(250, 246, 240, .95);
    backdrop-filter: blur(10px);

    border-bottom: 1px solid rgba(193, 125, 60, .2);

}



.nav-logo {

    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;

    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 600;

    color: var(--dark);

    white-space: nowrap;

}



.nav-logo em {

    color: var(--orange);
    font-style: normal;

}



.nav-img {

    width: 40px;
    height: 40px;

    border-radius: 50%;

    object-fit: cover;

}



.nav-links {

    display: flex;

    align-items: center;

    gap: 25px;

    list-style: none;

}



.nav-links a {

    text-decoration: none;

    color: var(--brown);

    font-size: .85rem;

    text-transform: uppercase;

    letter-spacing: .08em;

    transition: .3s;

}


.nav-links a:hover {

    color: var(--orange);

}



.nav-cta {

    background: var(--dark);

    color: white !important;

    padding: 10px 20px;

    border-radius: 4px;

}



.nav-cta:hover {

    background: var(--orange);

}



/* MOBILE BUTTON */


.nav-toggle {

    display: none;

    background: none;

    border: 0;

    cursor: pointer;

}



.nav-toggle span {

    display: block;

    width: 30px;

    height: 2px;

    background: var(--dark);

    margin: 6px 0;

    transition: .3s;

}

/* ===============================
   COMMON TEXT
================================ */


.section-title {

    font-family: var(--serif);

    font-size: clamp(2rem, 4vw, 3rem);

    font-weight: 300;

    line-height: 1.2;

    color: var(--dark);

    margin-bottom: 20px;

}


.section-title em {

    color: var(--orange);

    font-style: italic;

}



.eyebrow {

    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--orange);

    font-size: .75rem;

    letter-spacing: .2em;

    text-transform: uppercase;

    margin-bottom: 15px;

}



.eyebrow::before {

    content: "";

    width: 35px;

    height: 1px;

    background: var(--orange);

}




/* ===============================
   BUTTONS
================================ */


.btn-primary,
.btn-outline,
.btn-gold {


    display: inline-block;

    padding: 14px 30px;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: .1em;

    font-size: .85rem;

    transition: .3s;

}



.btn-primary {


    background: var(--dark);

    color: white;

    border: 2px solid var(--dark);

}



.btn-primary:hover {

    background: transparent;

    color: var(--dark);

    transform: translateY(-3px);

}




.btn-outline {


    color: var(--brown);

    border: 2px solid var(--soft);

}



.btn-outline:hover {

    border-color: var(--orange);

    color: var(--orange);

}




.btn-gold {


    background: var(--gold);

    color: var(--dark);

    border: 2px solid var(--gold);

}



.btn-gold:hover {

    background: transparent;

    color: var(--gold);

}





/* ===============================
   HERO SECTION
================================ */


.hero {


    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;


    padding: 80px 5%;

}




.hero-title {


    font-family: var(--serif);

    font-size: clamp(2.5rem, 5vw, 4.5rem);

    font-weight: 300;

    line-height: 1.1;

    margin-bottom: 20px;

}



.hero-title em {

    color: var(--orange);

    font-style: italic;

}



.hero-desc {

    color: var(--text);

    max-width: 500px;

    margin-bottom: 15px;

}



.hero-sub {


    font-family: var(--serif);

    color: var(--brown);

    font-style: italic;

    margin-bottom: 30px;

}




/* HERO IMAGE */


.hero-visual {

    position: relative;

}



.hero-img {


    width: 100%;

    border-radius: 15px;

    display: block;

    object-fit: cover;


    box-shadow:

        0 20px 50px rgba(0, 0, 0, .15);

}



.hero-visual::after {


    content: "";

    position: absolute;

    width: 100%;

    height: 100%;


    border: 2px solid var(--gold);

    top: 20px;

    right: -20px;

    z-index: -1;

    border-radius: 15px;

    opacity: .5;


}

/* ===============================
   MISSION SECTION
================================ */


.mission {


    display: grid;

    grid-template-columns: 1fr 1fr;

    align-items: center;

    gap: 60px;


    padding: 90px 5%;

    background: var(--light);

}




.mission-body p {


    color: var(--text);

    margin-bottom: 18px;

    line-height: 1.8;

}



.mission-body strong {

    color: var(--brown);

    font-weight: 500;

}



.mission-body em {

    color: var(--orange);

    font-style: italic;

}




.mission-visual {

    position: relative;

}




.mission-img {


    width: 100%;

    display: block;

    border-radius: 12px;


    box-shadow:

        0 20px 45px rgba(0, 0, 0, .12);

}




.mission-badge {


    position: absolute;

    left: -20px;

    bottom: -20px;


    width: 90px;

    height: 90px;


    display: flex;

    align-items: center;

    justify-content: center;


    text-align: center;


    border-radius: 50%;


    background: var(--gold);

    color: var(--dark);


    font-size: .7rem;

    font-weight: 600;


    padding: 10px;


}




/* ===============================
   ABOUT SECTION
================================ */


.about {


    display: grid;


    grid-template-columns: 350px 1fr;


    align-items: center;


    gap: 70px;


    padding: 100px 5%;


}





.about-image img {


    width: 100%;


    border-radius: 12px;


    display: block;


    box-shadow:

        0 20px 50px rgba(0, 0, 0, .12);


}





.about-content p {


    color: var(--text);

    line-height: 1.9;

    margin-bottom: 20px;


}




.about-sign {


    margin-top: 30px;

    padding-top: 20px;


    border-top: 1px solid rgba(0, 0, 0, .15);


}



.about-sign h4 {


    font-family: var(--serif);


    font-size: 1.8rem;


    color: var(--orange);


}




.about-sign span {


    color: var(--text);

    font-size: .85rem;

    letter-spacing: .1em;

    text-transform: uppercase;


}

/* ===============================
   SPECIAL / WHY BOX
================================ */


.special {


    max-width: 900px;

    margin: auto;


    padding: 90px 5%;


}



.special-intro {


    color: var(--text);

    margin-bottom: 35px;

}




.why-box {


    background: var(--dark);

    color: white;


    padding: 45px;


    border-left: 5px solid var(--gold);


    border-radius: 8px;


}




.why-title {


    font-family: var(--serif);

    font-size: 1.8rem;

    color: var(--gold);

    margin-bottom: 25px;


}




.why-list {


    list-style: none;


}



.why-list li {


    padding: 15px 0;


    border-bottom: 1px solid rgba(255, 255, 255, .15);


    color: rgba(255, 255, 255, .8);


}



.why-list strong {


    color: var(--gold);


}




.why-footer {


    margin-top: 25px;


    color: rgba(255, 255, 255, .7);


    font-style: italic;


}





/* ===============================
   FEATURES
================================ */


.features {


    padding: 0 5% 90px;


}




.features-grid {


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(220px, 1fr));


    gap: 20px;


}




.feat-card {


    background: var(--light);


    padding: 35px 25px;


    transition: .3s;


    border-bottom: 3px solid transparent;


}




.feat-card:hover {


    transform: translateY(-8px);


    background: white;


    border-color: var(--orange);


}





.feat-icon {


    font-size: 2rem;


    margin-bottom: 15px;


}




.feat-card h3 {


    font-family: var(--serif);


    font-size: 1.3rem;


    margin-bottom: 10px;


}



.feat-card p {


    color: var(--text);

    font-size: .9rem;


}





/* ===============================
   GALLERY
================================ */


.gallery {


    padding: 90px 5%;


}



.gallery-header {


    text-align: center;

    margin-bottom: 40px;


}



.slider {


    overflow: hidden;


}




.slider-track {


    display: flex;


    gap: 20px;


}



.slider-track img {


    width: 280px;

    height: 220px;


    flex-shrink: 0;


    object-fit: cover;


    border-radius: 12px;


    box-shadow:

        0 10px 30px rgba(0, 0, 0, .15);


    transition: .3s;


}




.slider-track img:hover {


    transform: scale(1.05);


}

/* ===============================
   QUOTE SECTION
================================ */


.quote-section {


    background: var(--dark);

    padding: 100px 5%;

    text-align: center;

    position: relative;


}




.insta-badge {


    display: inline-block;


    padding: 10px 20px;


    border-radius: 30px;


    border: 1px solid var(--gold);


    color: var(--gold);


    text-decoration: none;


    margin-bottom: 30px;


}




.quote-text {


    max-width: 800px;

    margin: auto;


    font-family: var(--serif);


    font-size: clamp(1.5rem, 3vw, 2.3rem);


    font-style: italic;


    color: white;


    line-height: 1.5;


}




.quote-text em {


    color: var(--gold);

    font-style: normal;


}




.quote-attr {


    margin-top: 25px;


    color: var(--soft);


    letter-spacing: .15em;


    text-transform: uppercase;


    font-size: .8rem;


}






/* ===============================
   WHY JOIN
================================ */


.why-join {


    background: var(--light);


    padding: 90px 5%;


}



.why-join-inner {


    max-width: 1100px;

    margin: auto;


}



.reasons-grid {


    display: grid;


    grid-template-columns:

        repeat(auto-fit, minmax(260px, 1fr));


    gap: 20px;


}



.reason-card {


    background: var(--bg);


    padding: 30px;


    position: relative;


    transition: .3s;


}



.reason-card:hover {


    transform: translateY(-6px);


}




.reason-num {


    position: absolute;


    right: 20px;

    top: 10px;


    font-family: var(--serif);


    font-size: 3rem;


    color: rgba(193, 125, 60, .2);


}



.reason-card h4 {


    font-family: var(--serif);


    font-size: 1.3rem;


    margin-bottom: 10px;


}



.reason-card p {


    color: var(--text);

    font-size: .9rem;


}






/* ===============================
   CONTACT
================================ */


.contact {


    display: grid;


    grid-template-columns: 2fr 1fr;


    gap: 60px;


    padding: 100px 5%;


    background: var(--light);


}



.contact-info {


    margin-top: 30px;


    display: flex;


    flex-direction: column;


    gap: 25px;


}



.contact-item {


    display: flex;


    gap: 20px;


    align-items: flex-start;


}



.contact-item span {


    font-size: 28px;


    color: var(--orange);


}



.contact-item h4 {


    font-family: var(--serif);


    margin-bottom: 5px;


}



.contact-item a {


    color: var(--orange);

    text-decoration: none;


}




.contact-card {


    background: var(--dark);


    color: white;


    padding: 45px;


    border-radius: 12px;


    text-align: center;


}



.contact-card h3 {


    font-family: var(--serif);


    font-size: 2rem;


    margin-bottom: 20px;


}



.contact-card p {


    color: rgba(255, 255, 255, .7);


    margin-bottom: 25px;


}

/* ===============================
   COURSE POPUP
================================ */


.course-modal {

    display: none;

    position: fixed;

    inset: 0;


    background: rgba(0, 0, 0, .8);


    justify-content: center;

    align-items: center;


    z-index: 9999;


    padding: 20px;


}



.course-box {


    position: relative;


    max-width: 900px;


    width: 90%;


}



.course-box img {


    width: 100%;


    border-radius: 12px;


}



.close-course {


    position: absolute;


    right: -15px;

    top: -15px;


    width: 40px;

    height: 40px;


    border-radius: 50%;


    border: 0;


    background: white;


    color: black;


    font-size: 25px;


    cursor: pointer;


}







/* ===============================
   FOOTER
================================ */


footer {


    background: var(--dark);


    color: rgba(255, 255, 255, .7);


    padding: 60px 5% 30px;


}



.footer-top {


    display: grid;


    grid-template-columns:

        2fr 1fr 1fr;


    gap: 50px;


    padding-bottom: 40px;


    border-bottom:

        1px solid rgba(255, 255, 255, .1);


}



.footer-logo-img {


    width: 50px;

    height: 50px;


    border-radius: 50%;


}




.footer-logo-text {


    font-family: var(--serif);


    font-size: 1.5rem;


    color: white;


    margin: 15px 0;


}



.footer-logo-text span {


    color: var(--gold);


}



.footer-brand p {


    font-size: .9rem;


}



.footer-col h4 {


    color: var(--gold);


    font-size: .8rem;


    letter-spacing: .15em;


    margin-bottom: 15px;


}



.footer-col ul {


    list-style: none;


}



.footer-col li {


    margin-bottom: 10px;


}



.footer-col a {


    color: rgba(255, 255, 255, .7);


    text-decoration: none;


}



.footer-col a:hover {


    color: var(--gold);


}





.footer-bottom {


    display: flex;


    justify-content: space-between;


    align-items: center;


    padding-top: 25px;


}



.footer-socials {


    display: flex;


    gap: 20px;


}



.footer-socials a {


    color: white;


    font-size: .8rem;


}





/* ===============================
   MOBILE RESPONSIVE
================================ */


@media(max-width:900px) {



    .hero,
    .mission,
    .contact {


        grid-template-columns: 1fr;


    }



    .hero-visual {


        order: -1;


    }




    .about {


        grid-template-columns: 1fr;


        gap: 40px;


    }



    .about-image {


        order: -1;


    }




    .footer-top {


        grid-template-columns: 1fr;


    }



    .nav-toggle {


        display: block;


    }



    .nav-links {


        position: absolute;


        top: 75px;


        left: 0;


        width: 100%;


        background: var(--bg);


        flex-direction: column;


        align-items: flex-start;


        padding: 20px 5%;


        display: none;


    }



    .nav-links.open {


        display: flex;


    }



}




@media(max-width:560px) {



    .hero {

        padding: 50px 5%;

    }



    .section-title {

        font-size: 2rem;

    }



    .why-box {

        padding: 25px;

    }



    .contact-card {

        padding: 30px 20px;

    }



    .footer-bottom {


        flex-direction: column;


        text-align: center;


        gap: 20px;


    }



    .slider-track img {


        width: 220px;

        height: 170px;


    }



}