html, body {
    max-width: 100%;
    overflow-x: hidden;
}


:root {
    --brown-dark: #3d2b1f;
    --brown-light: #6d5348;
    --cream-light: #fdf5e6;
    --cream: #f5f5dc;
    --beige: #e8dcc8;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    margin: 0;
    font-family: 'Segoe UI', -apple-system, sans-serif;
    background-color: var(--cream-light);
    color: var(--brown-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header */
.navbar {
    position: fixed;
    width: 100%;
    z-index: 100;
    padding: 15px 0;
    background: var(--cream-light);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-circle {
    border: 2px solid var(--brown-dark);
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brown-dark);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
}

nav {
    display: flex;
    gap: 40px;
    align-items: center;
}


.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--cream-light);
    font-size: 24px;
    cursor: pointer;
}


/* Hero Section */
.hero {
    height: calc(100vh - 100px);
    position: relative;
    display: flex;
    margin-top: 100px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--cream-light);
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('../images/bg.jpg');
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 43, 31, 0.5);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 490px;
    font-family: 'Georgia', serif;
}

.large-letter {
    font-size: 6rem;
    font-weight: 300;
    display: block;
}

.book-btn-wrapper {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 10;
}

.book-button {
    padding: 12px 30px;
    border: 2px solid var(--cream-light);
    color: var(--cream-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-block;
}

.book-button:hover {
    background: var(--cream-light);
    color: var(--brown-dark);
}

/* Sections */
.about-section {
    padding: 100px 0;
    background: var(--cream);
    position: relative;
}

.subtitle {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--brown-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 40px;
    font-family: 'Georgia', serif;
    letter-spacing: 1px;
}

.section-title.light {
    color: var(--cream-light);
}

/* Ribbon/Marquee */
.ribbon-container {
    width: 100%;
    overflow: hidden;
    background: var(--brown-light);
    color: var(--cream-light);
    padding: 15px 0;
    margin: 40px 0;
    white-space: nowrap;
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 20s linear infinite;
    white-space: nowrap;
    font-size: 14px;
    letter-spacing: 3px;
}

.marquee-top {
    background: var(--brown-light);
    color: var(--cream-light);
    padding: 15px 0;
    text-align: center;
    font-size: 13px;
    letter-spacing: 2px;
    font-weight: 500;
}

.content-box {
    background: rgba(255, 255, 255, 0.5);
    padding: 40px;
    border-radius: 8px;
    font-size: 15px;
    line-height: 1.8;
}

.content-box p {
    margin-bottom: 15px;
}

.content-box strong {
    color: var(--brown-dark);
    font-weight: 600;
}

/* Founder Section */
.founder-section {
    /* padding: 100px 0;
    background: var(--brown-dark); */
    color: var(--cream-light);
    /* position: relative; */
    padding: 120px 80px;
    background: var(--cream);
    position: relative;
}

.founder-text h2 {
    font-size: 3rem;
}

.founder-text p {
    font-size: 15px;
    line-height: 1.8;
    margin-top: 20px;
}

.founder-image-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.image-border {
    border: 15px solid var(--brown-light);
    border-radius: 12px;
    overflow: hidden;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.founder-name {
    margin-top: 20px;
    font-size: 18px;
    font-weight: 600;
    text-align: center;
}

.grayscale {
    filter: grayscale(100%);
    width: 100%;
    display: block;
}

/* FAQ Section */
.faq-section {
    padding: 77px 30px;
    background-image: url("bg2.jpeg");
    background-size: cover;
    background-position: center top;    
    background-repeat: no-repeat;
}


.faq-section .grid {
    grid-template-columns: auto 1fr;
    gap: 80px;
}

.faq-list {
    max-width: 600px;
}

.faq-item {
    border: none;
    padding: 0;
    margin-bottom: 20px;
}

.faq-question {
    width: 100%;
    background: var(--beige);
    border: none;
    text-align: left;
    font-size: 15px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-radius: 8px;
    color: var(--brown-dark);
    font-weight: 500;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: #ddd1c0;
}

.faq-question span {
    font-size: 20px;
    font-weight: 300;
}

.faq-answer {
    display: none;
    padding: 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 0 0 8px 8px;
}

.faq-answer.show {
    display: block;
}

/* Footer */
.footer {
    background: var(--brown-dark);
    color: var(--cream-light);
    text-align: center;
    padding: 30px 0;
    font-size: 13px;
}

/* Marquee Animation */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}


/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item {
    background: rgba(255, 255, 255, 0.8);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-item h3 {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--brown-light);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.contact-item p {
    font-size: 15px;
    color: var(--brown-dark);
    line-height: 1.6;
}

.contact-item a {
    color: var(--brown-dark);
    text-decoration: none;
    border-bottom: 1px solid var(--brown-dark);
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--brown-light);
}

.contact-description {
    font-size: 16px;
    color: #666;
    margin-top: 20px;
    line-height: 1.7;
    max-width: 400px;
}

.map-container {
    margin-top: 60px;
    width: 100%;
    height: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    font-size: 14px;
    justify-content: center;
}

.social-links a {
    color: var(--brown-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--brown-light);
}

/* Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
    }

    .mobile-menu-btn {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        background: var(--brown-dark);
        padding: 20px;
        gap: 10px;
    }

    nav.active {
        display: flex;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .large-letter {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .contact-info {
        grid-template-columns: 1fr;
    }

    .faq-section .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}


/* ===== ABOUT SECTION (REFERENCE MATCH) ===== */

.about-premium {
    background: #efe9e1;
    padding: 100px 0;
}

.about-section {
    padding: 15px 14px;
    background-color: var(--cream-dark);
}

.about-small-title {
    font-size: 50px;
    letter-spacing: 4px;
    color: #7a5a46;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-text-italic {
    font-family: 'EB Garamond', serif;
    font-size: 19px;
    line-height: 1.8;
    color: var(--brown-dark);
    font-style: italic;
    font-weight: 400;
}

.about-main-heading {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    color: #4a3528;
    letter-spacing: 1px;
    /* margin-bottom: 60px; */
}

/* Ribbon */
.about-ribbon {
  background: transparent;   /* removed dark bar */
    /* padding: 12px 0; */
    overflow: hidden;
    margin: 40px 0 23px;
}

.about-marquee {
    color: #412404;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    letter-spacing: 3px;
    white-space: nowrap;
    animation: about-marquee 19s linear infinite;
}

@keyframes about-marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Grid */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Image */
/* .about-image-box {
    background: #fff;
    padding: 12px;
    border-radius: 2px;
} */

.about-image-box img {
    width: 90%;
    display: block;
    height: 451px;
    border-radius: 8px;
}

/* Text */
.about-text-box {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    line-height: 1.9;
    color: #3e2d23;
}

.about-text-box p {
    margin-bottom: 22px;
}

/* Highlight */
.about-highlight {
    margin-top: 30px;
    font-size: 18px;
}

.about-highlight span {
    border: 2px solid #4a3528;
    padding: 8px 20px;
    border-radius: 50%;
    font-style: normal;
    font-weight: 600;
}

/* Mobile */
@media (max-width: 768px) {
    .about-main-heading {
        font-size: 30px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-ribbon {
        background: transparent;
        /* removed dark bar */
        padding: 12px 0;
        overflow: hidden;
        margin: 40px 0 80px;
    }
}


