/* =============================================
   GENERAL STYLES
   ============================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-style: light;
    font-weight: 400;
    line-height: 1.6;
    color: #454545;
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    color: #6B4F4F;
}

h2 {
    font-size: 28px;
    color: #454545;
}

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

/* =============================================
   BUTTONS
   ============================================= */


.btn-nav {
    background-color: transparent;
    border: solid 1px #454545;
    font-size: 14px;
    cursor: pointer;
    color: #454545;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

.btn-nav:hover {
    background-color: #8A9A8C;
    border: solid 1px #8A9A8C;
    font-size: 14px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

.btn {
    background-color: #8A9A8C;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

.btn:hover {
    background-color: #6B4F4F;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #fff;
    transition: color 0.3s ease;
    padding: 10px 20px;
}

/* =============================================
   HEADER
   ============================================= */

.header {
    background-color: transparent;
    padding: 20px 0;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

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

.logo img {
    width: 200px;
    height: auto;
}

.navigation ul {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 30px;
}

.navigation a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s ease;
}

.nav-menu {
    color: #454545;
}

.nav-menu:hover {
    color: #8A9A8C;
}

/* =============================================
   HERO SECTION
   ============================================= */

.hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background-color: #fff;
    margin-top: -120px;
}

.hero-content {
    position: relative;
    min-height: 100vh;
}

.hero-left {
    position: absolute;
    bottom: 80px;
    left: 0;
    z-index: 3;
}

.hero-left img {
    width: 340px;
    height: auto;
    display: block;
}

.hero-center {
    position: absolute;
    top: 38%;
    left: 420px;
    transform: translateY(-50%);
    text-align: left;
    z-index: 2;
}

.hero-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 100px;
    font-weight: 400;
    line-height: 1;
    color: #2c2c2c;
    margin-bottom: 20px;
}

.hero-subheading {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 28px;
    font-weight: 400;
    line-height: 1.4;
    color: #454545;
    max-width: 380px;
    margin: 0;
}

.hero-right {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* =============================================
   POPUP HERO SECTION
   ============================================= */

.popup-hero {
    position: relative;
    z-index: 10;
    margin-top: -250px;
    padding: 0 40px 60px;
}

.popup-hero-content {
    display: flex;
    align-items: flex-start;
    background-color: #8A9A8C;
    max-width: 860px;
    padding: 50px 50px 10px 50px;
    gap: 30px;
}

#popup-box {
    display: flex;
    justify-content: center;
}

.popup-hero-text {
    flex: 1;
}

.popup-hero-heading {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 16px;
}

.popup-hero-description {
    font-size: 14px;
    font-weight: 300;
    color: #e8e8e8;
    line-height: 1.7;
    margin-bottom: 30px;
}

#bookacall {
    background-color: #6B4F4F;
    padding: 18px 55px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
}

#bookacall:hover {
    background-color: #F5EFE8;
    color:#6B4F4F;
}

.popup-hero-image {
    flex-shrink: 0;
    align-self: flex-end;
    margin-top: -120px;
}

.popup-hero-image img {
    width: 200px;
    height: auto;
    display: block;
    border-radius: 24px;
    transform: rotate(6deg);
}

/* =============================================
   LOGOS SECTION
   ============================================= */

.logos-section {
    padding: 0;
    background-color: #fff;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
}

.logo-item img {
    height: 40px;
    width: auto;
    display: block;
    filter: grayscale(100%);
    opacity: 0.6;
}


/* =============================================
   BOOK SECTION
   ============================================= */

.book-section {
    padding: 80px 0;
    background-color: #fff;
}

.book-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.book-left {
    flex-shrink: 0;
}

.book-image {
    width: 400px;
    height: auto;
    display: block;
}

.book-right {
    max-width: 480px;
    text-align: center;
}

.book-heading {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #6B4F4F;
    text-transform: uppercase;
    margin-bottom: 16px;
    line-height: 1.6;
}

.book-subheading {
    font-family: 'DM Serif Display', serif;
    font-size: 52px;
    font-weight: 400;
    color: #8A9A8C;
    margin-bottom: 20px;
}

.book-right::after {
    content: '';
    display: none;
}

.book-subheading::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #8A9A8C;
    margin: 24px auto;
}

.book-description {
    font-size: 16px;
    font-weight: 400;
    color: #454545;
    line-height: 1.7;
    margin-bottom: 16px;
}

.book-text {
    font-size: 16px;
    font-weight: 300;
    color: #6b6b6b;
    line-height: 1.7;
    margin-bottom: 36px;
}

.book-section .btn {
    padding: 18px 55px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
    padding: 80px 0;
    background-color: #f0ebe4;
}

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

.testimonial-card {
    background-color: #f5f0ea;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.testimonial-quote {
    font-family: 'DM Serif Display', serif;
    font-size: 60px;
    line-height: 1;
    color: #c9bfb3;
    display: block;
    margin-bottom: 10px;
}

.testimonial-text {
    font-size: 14px;
    font-weight: 600;
    color: #454545;
    line-height: 1.8;
    margin-bottom: 30px;
    flex-grow: 1;
}

.testimonial-author-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
}

.testimonial-details {
    text-align: right;
}

.testimonial-author {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: #454545;
    margin-bottom: 2px;
}

.testimonial-title {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #7a7a7a;
}

.testimonial-card .testimonial-avatar {
    width: 60px;
    min-width: 60px;
    max-width: 60px;
    height: 60px;
    min-height: 60px;
    max-height: 60px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

/* =============================================
   FAQs SECTION
   ============================================= */

.faqs-section {
    padding: 80px 0;
    background-color: #8A9A8C;
}

.faqs-section .container {
    max-width: 800px;
}

.faqs-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 32px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 3px;
    margin-bottom: 36px;
}

.faqs-search {
    position: relative;
    margin-bottom: 20px;
}

.faqs-search-icon {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #999;
    pointer-events: none;
}

.faqs-search-input {
    width: 100%;
    padding: 16px 20px 16px 48px;
    border: none;
    border-radius: 0;
    background-color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #454545;
    outline: none;
}

.faqs-search-input::placeholder {
    color: #aaa;
    font-style: italic;
}

.faqs-browse-label {
    text-align: center;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: #e8e8e8;
    margin-bottom: 24px;
}

.faqs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.faq-item {
    background-color: #f5f0ea;
    padding: 22px 28px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.faq-item:hover {
    background-color: #ebe5dd;
}

.faq-item h4 {
    font-size: 13px;
    font-weight: 500;
    color: #454545;
    line-height: 1.6;
    text-align: center;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
    position: relative;
    min-height: 600px;
    overflow: hidden;
}

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

.about-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position:  center 20%;
    display: block;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.55) 60%, transparent 100%);
    z-index: 2;
}

.about-section .container {
    position: relative;
    z-index: 3;
}

.about-content {
    max-width: 420px;
    padding: 80px 0;
}

.about-heading-group {
    margin-bottom: 28px;
}

.about-label {
    display: block;
    font-family: 'DM Serif Display', serif;
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 4px;
    margin-left: 60px;
    line-height: 1;
}

.about-name {
    display: block;
    font-family: 'Cedarville Cursive', cursive;
    font-size: 72px;
    font-weight: 400;
    color: #fff;
    line-height: 1.1;
}

.about-text {
    font-size: 13px;
    font-weight: 400;
    color: #fff;
    line-height: 1.7;
    margin-bottom: 16px;
}

#btn-about {
    margin-top: 16px;
    padding: 16px 45px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
}

#btn-about:hover {
    background-color: #6B4F4F;
    color: #fff;
}

/* =============================================
   SOCIAL SECTION
   ============================================= */

.social-section {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.social-heading {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #454545;
    line-height: 1.8;
    margin-bottom: 8px;
}

.social-handle {
    font-family: 'Cedarville Cursive', cursive;
    font-size: 32px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 36px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 36px;
}

.social-item {
    aspect-ratio: 1 / 1; /* makes it square */
    overflow: hidden;
}

.social-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

#btn-social {
    width: auto;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* =============================================
   NEWSLETTER SECTION
   ============================================= */

.newsletter-section {
    background-color: #fff;
    padding-bottom: 80px;
}

.newsletter-hero {
    position: relative;
    height: 420px;
    overflow: hidden;
    display: flex;
    justify-content: center;
}

.newsletter-hero-image {
    width: 100%;
    height: 100%;
}

.newsletter-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
    display: block;
    filter: grayscale(100%);
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding-top: 60px;
}

.newsletter-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: #454545;
    margin-bottom: 12px;
}

.newsletter-heading {
    font-family: 'DM Serif Display', serif;
    font-size: 40px;
    font-weight: 400;
    color: #454545;
    margin-bottom: 24px;
}

.newsletter-text {
    font-size: 13px;
    font-weight: 400;
    color: #6b6b6b;
    line-height: 1.8;
    margin-bottom: 36px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 400px;
    margin: 0 auto;
}

.email-input {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #454545;
    outline: none;
    text-align: center;
}

.email-input::placeholder {
    color: #aaa;
}

.email-input:focus {
    border-color: #8A9A8C;
}

#btn-newsletter {
    width: 100%;
    padding: 16px 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
}

/* =============================================
   FOOTER
   ============================================= */

.footer {
    background-color: #6B4F4F;
    padding: 60px 0 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
}

.footer-left {
    max-width: 320px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    width: 180px;
    height: auto;
    display: block;
}

.footer-description {
    font-size: 13px;
    font-weight: 300;
    color: #e0d6d6;
    line-height: 1.7;
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 14px;
}

.social-icon img {
    width: 28px;
    height: 28px;
    display: block;
    filter: brightness(0) invert(1);
}

.footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.footer-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.footer-menu li a {
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    color: #e0d6d6;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: #fff;
}

#btn-footer {
    background-color: transparent;
    border: 1px solid #e0d6d6;
    color: #e0d6d6;
    padding: 12px 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

#btn-footer:hover {
    background-color: #fff;
    color: #6B4F4F;
    border-color: #fff;
}

.footer-bottom {
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    font-weight: 300;
    color: #c4b5b5;
}

/* =============================================
   MOBILE
   ============================================= */

/* Hamburger button - hidden on desktop */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 101;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #454545;
    transition: all 0.3s ease;
}

/* Animate to X when open */
.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .navigation ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        max-width: 300px;
        height: 100vh;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 80px 40px;
        background-color: #fff;
        box-shadow: -4px 0 12px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        gap: 30px;
    }

    .navigation ul.open {
        right: 0;
    }

    .logo img {
        width: 150px;
    }

     /* --- Hero --- */
    .hero {
        min-height: auto;
        margin-top: -80px;
    }

    .hero-content {
        min-height: auto;
        display: flex;
        flex-direction: column;
    }

    /* Move the right image to the top on mobile */
    .hero-right {
        order: -1;
        position: relative;
        width: 100%;
        height: 55vw;
        min-height: 260px;
    }

    /* Hide the overlapping left portrait — too awkward on small screens */
    .hero-left {
        display: none;
    }

    .hero-center {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        text-align: center;
        padding: 36px 24px 60px;
    }

    .hero-heading {
        font-size: 56px;
    }

    .hero-subheading {
        font-size: 18px;
        max-width: 100%;
    }

    /* --- Popup Hero --- */
    .popup-hero {
        margin-top: 0;
        padding: 0 20px 40px;
    }

    .popup-hero-content {
        flex-direction: column;
        align-items: center;
        padding: 36px 24px 30px;
        max-width: 100%;
    }

    .popup-hero-image {
        display: none;
    }

    #bookacall {
        width: 100%;
        padding: 16px 24px;
        font-size: 14px;
    }

    .logos-grid {
        flex-direction: column;
        gap: 30px; /* smaller spacing for mobile */
    }

    .logo-item img {
        height: 70px; /* optional: scale down logos */
        width: auto;
        padding: 20px
    }

        /* --- Book Section --- */

   .book-section {
        padding: 60px 0;
    }

    .book-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .book-left {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .book-image {
        width: 80%;
        max-width: 300px;
    }

    .book-right {
        max-width: 100%;
        padding: 0 10px;
    }

    .book-heading {
        font-size: 12px;
        letter-spacing: 2px;
    }

    .book-subheading {
        font-size: 32px;
    }

    .book-description,
    .book-text {
        font-size: 14px;
    }

    .book-section .btn {
        width: 100%;
        padding: 16px;
        font-size: 13px;
    }

        /* --- Testimonials Section --- */

    .testimonials-grid {
        display: flex;               /* switch to flex */
        flex-direction: row;         /* horizontal row */
        overflow-x: auto;            /* enable horizontal scroll */
        scroll-snap-type: x mandatory; /* optional: snap to cards */
        gap: 20px;                   /* smaller gap for mobile */
        padding-bottom: 10px;
    }

    .testimonial-card {
        max-width: 360px;            /* card width */
        flex: 0 0 auto;              /* prevent shrinking */
        scroll-snap-align: start;    /* snap start of card */
    }

    /* optional: hide scrollbar in webkit browsers */
    .testimonials-grid::-webkit-scrollbar {
        display: none;
    }

        /* --- FAQs Section --- */

    /* Reduce padding for smaller screens */
    .faqs-section {
        padding: 60px 20px;
    }

    /* Make container full width with some padding */
    .faqs-section .container {
        max-width: 100%;
        padding: 0 10px;
    }

    /* Reduce heading size for mobile */
    .faqs-heading {
        font-size: 24px;
        margin-bottom: 24px;
    }

    /* Search input takes full width */
    .faqs-search-input {
        padding: 12px 16px 12px 44px; /* smaller padding for mobile */
        font-size: 13px;
    }

    /* Label font smaller */
    .faqs-browse-label {
        font-size: 11px;
        margin-bottom: 16px;
    }

    /* Switch grid to 1 column */
    .faqs-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Adjust FAQ item padding */
    .faq-item {
        padding: 16px 20px;
    }

    .faq-item h4 {
        font-size: 12px;
    }

        /* --- Footer Section --- */

    /* Stack footer content vertically */
    .footer-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding-bottom: 30px;
    }

    /* Center the left content */
    .footer-left {
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        margin-bottom: 16px;
    }

    .footer-logo img {
        width: 150px; /* smaller logo for mobile */
    }

    .footer-description {
        font-size: 12px;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .social-icons {
        justify-content: center;
        gap: 12px;
    }

    /* Center the right content */
    .footer-right {
        align-items: center;
        gap: 20px;
    }

    .footer-menu {
        align-items: center;
        gap: 10px;
    }

    .footer-menu li a {
        font-size: 13px;
    }

    #btn-footer {
        padding: 10px 25px;
        font-size: 11px;
    }

    .footer-bottom {
        padding: 15px 10px;
    }

    .footer-bottom p {
        font-size: 11px;
    }

}
  

