/* Core CSS Layout - Fully class-based styling */

.body-container {
    margin: 0;
    padding: 0;
    font-family: 'Outfit', sans-serif;
    color: #333333;
    background-color: #fcfbf9;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography Classes */
.hero-title,
.section-title,
.feature-title,
.footer-heading,
.modal-title,
.cookie-title {
    font-weight: 600;
    margin: 0;
}

.hero-title {
    font-size: 3.2rem;
    color: #2c2927;
    line-height: 1.15;
    margin-bottom: 0.5rem;
}

.section-title {
    font-size: 2.2rem;
    color: #2c2927;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #7b7167;
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-description,
.section-paragraph,
.feature-text,
.testimonial-text,
.answer-text,
.footer-text,
.modal-text,
.cookie-text {
    font-size: 1.05rem;
    color: #5d5650;
    margin-bottom: 1rem;
    font-weight: 300;
}

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

.margin-top-small {
    margin-top: 1rem;
}

/* Page Loader */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #ffffff;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid #f0e1d8;
    border-top: 3px solid #b78a63;
    border-radius: 50%;
    animation: loader-spin 1s linear infinite;
    margin-bottom: 1rem;
}

.loader-text {
    font-size: 1.2rem;
    color: #b78a63;
    font-weight: 500;
    margin: 0;
    letter-spacing: 1px;
}

@keyframes loader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Ad Notice Top */
.ad-notice-top {
    background-color: #f7f3f0;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 1px solid #efe8e3;
}

.ad-notice-text {
    font-size: 0.85rem;
    color: #8c837b;
    margin: 0;
    font-weight: 400;
}

/* Header Section */
.header-section {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
    color: inherit;
}

.logo-text,
.logo-text-mobile {
    font-size: 1.8rem;
    font-weight: 700;
    color: #b78a63;
    letter-spacing: 0.5px;
}

.desktop-nav {
    display: none;
}

.nav-list,
.mobile-nav-list,
.footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    gap: 2rem;
}

.nav-link,
.mobile-nav-link,
.footer-link {
    text-decoration: none;
    color: #4a4440;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-link:hover,
.footer-link:hover {
    color: #b78a63;
}

.header-cta-container {
    display: none;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    cursor: pointer;
    border: none;
}

.primary-btn {
    background-color: #dfb28b;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(223, 178, 139, 0.4);
}

.primary-btn:hover {
    background-color: #c0916a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(223, 178, 139, 0.5);
}

.large-btn {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.mobile-full {
    width: 100%;
    box-sizing: border-box;
}

/* Hamburger Menu */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 32px;
    height: 22px;
    cursor: pointer;
}

.hamburger-line {
    height: 3px;
    width: 100%;
    background-color: #2c2927;
    border-radius: 3px;
    transition: background-color 0.3s ease;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 41, 39, 0.6);
    z-index: 1000;
    transition: left 0s 0.4s;
    backdrop-filter: blur(4px);
}

/* Needs to be exactly 75% wide as per instruction */
.mobile-menu-content {
    position: absolute;
    top: 0;
    left: -75%;
    width: 75%;
    height: 100%;
    background-color: #ffffff;
    padding: 1.5rem;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    transition: left 0.4s ease;
    box-shadow: 5px 0 25px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
    left: 0;
    transition: left 0s 0s;
}

.mobile-menu-overlay.active .mobile-menu-content {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f0e1d8;
}

.close-icon {
    width: 25px;
    height: 25px;
    position: relative;
    cursor: pointer;
}

.close-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c2927;
}

.line1 {
    transform: rotate(45deg);
}

.line2 {
    transform: rotate(-45deg);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.mobile-nav-link {
    font-size: 1.25rem;
}

/* Main Layout Grid */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1.5rem;
}

/* Hero Section */
.hero-section {
    background: radial-gradient(circle at top right, #fffdfc, #f7f1ec);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 1.5rem 6rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

.hero-text-content {
    text-align: center;
    z-index: 2;
}

.hero-price-container {
    margin: 1.5rem 0 2.5rem;
}

.hero-price {
    font-size: 2.8rem;
    font-weight: 700;
    color: #b78a63;
}

.hero-image-content {
    width: 100%;
    max-width: 500px;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(183, 138, 99, 0.15);
    background-color: #ffffff;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px) scale(1);
    }

    50% {
        transform: translateY(-15px) scale(1.02);
    }

    100% {
        transform: translateY(0px) scale(1);
    }
}

/* About Section */
.about-section {
    background-color: #ffffff;
}

.about-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}

.about-image-wrapper {
    width: 100%;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.02);
    transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image {
    transform: scale(1.05);
}

.about-text-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Why Us */
.why-section {
    background-color: #fcfbf9;
}

.features-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3.5rem;
}

.feature-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(183, 138, 99, 0.05);
    border-top: 5px solid #dfb28b;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(183, 138, 99, 0.1);
}

.feature-title {
    font-size: 1.5rem;
    color: #2c2927;
    margin-bottom: 1.2rem;
}

/* Gallery Section */
.gallery-section {
    background-color: #ffffff;
}

.gallery-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1.5rem 5rem;
}

.gallery-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.gallery-image:hover {
    transform: scale(1.01);
}

/* Testimonials */
.testimonials-section {
    background-color: #f7f3f0;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 3.5rem;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(183, 138, 99, 0.08);
    position: relative;
}

.testimonial-rating {
    color: #dfb28b;
    font-size: 1.4rem;
    letter-spacing: 3px;
    margin: 0 0 1.2rem 0;
}

.testimonial-author {
    font-weight: 600;
    color: #2c2927;
    margin: 0;
    font-size: 1.1rem;
}

/* FAQs */
.faq-section {
    background-color: #ffffff;
    padding-bottom: 7rem;
}

.faq-accordion {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.faq-item {
    border: 1px solid #efe8e3;
    border-radius: 12px;
    overflow: hidden;
    background-color: #ffffff;
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: transparent;
    border: none;
    padding: 1.5rem 1.8rem;
    font-size: 1.15rem;
    font-weight: 500;
    color: #4a4440;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.8rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: #dfb28b;
    transition: transform 0.4s ease;
}

.faq-question.active {
    background-color: #fcfbf9;
    color: #dfb28b;
}

.faq-question.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background-color: #fcfbf9;
}

.answer-content {
    padding: 0 1.8rem 1.5rem;
}

/* Footer Element Styling */
.footer-section {
    background-color: #2c2927;
    color: #ffffff;
    padding-top: 5rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-bottom: 4rem;
}

.footer-heading {
    font-size: 1.4rem;
    color: #dfb28b;
    margin-bottom: 1.8rem;
    font-weight: 500;
}

.footer-item {
    margin-bottom: 1rem;
}

.footer-link {
    color: #d1cbc5;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-link:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-text {
    color: #d1cbc5;
}

.footer-disclaimer-box {
    border-top: 1px solid #4a4440;
    padding: 2.5rem 0;
    text-align: center;
}

.footer-disclaimer-text {
    font-size: 0.85rem;
    color: #a8a09a;
    margin: 0;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #4a4440;
    padding: 2.5rem 0;
    text-align: center;
}

.copyright-text {
    font-size: 0.95rem;
    color: #8c837b;
    margin: 0;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(44, 41, 39, 0.7);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: blur(8px);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background-color: #ffffff;
    width: 90%;
    max-width: 550px;
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #efe8e3;
    padding-bottom: 1rem;
}

.modal-title {
    font-size: 1.6rem;
    color: #2c2927;
}

.modal-close-btn {
    background: none;
    border: none;
    font-size: 2.2rem;
    line-height: 1;
    color: #7b7167;
    cursor: pointer;
    transition: color 0.3s;
}

.modal-close-btn:hover {
    color: #dfb28b;
}

/* Cookies Popup */
.cookie-popup {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    padding: 2rem;
    z-index: 1500;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border-left: 6px solid #dfb28b;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-title {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c2927;
}

.cookie-text {
    font-size: 1rem;
    color: #5d5650;
    margin-bottom: 1.8rem;
    line-height: 1.5;
}

.cookie-actions {
    display: flex;
    gap: 1.2rem;
}

.cookie-btn {
    padding: 0.9rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-family: inherit;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.2s;
    flex: 1;
}

.cookie-btn:active {
    transform: scale(0.98);
}

.cookie-reject {
    background-color: #f0e1d8;
    color: #4a4440;
}

.cookie-reject:hover {
    background-color: #e3ccbc;
}

.cookie-accept {
    background-color: #dfb28b;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #c0916a;
}

/* Desktop Styles & Media Queries */
@media (min-width: 768px) {

    .features-grid,
    .testimonials-grid {
        flex-direction: row;
    }

    .feature-card,
    .testimonial-card {
        flex: 1;
    }

    .gallery-container {
        grid-template-columns: 1fr 1fr;
    }

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

    .cookie-popup {
        max-width: 450px;
        right: auto;
        left: 30px;
    }
}

@media (min-width: 992px) {
    .hamburger-menu {
        display: none;
    }

    .desktop-nav,
    .header-cta-container {
        display: block;
    }

    .header-container {
        padding: 1rem 2rem;
    }

    .hero-container {
        flex-direction: row;
        text-align: left;
        padding: 6rem 2rem 8rem;
        gap: 5rem;
    }

    .hero-text-content {
        text-align: left;
        flex: 1;
    }

    .hero-image-content {
        flex: 1;
    }

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

    .about-container {
        flex-direction: row;
        align-items: center;
        gap: 5rem;
    }

    .about-image-wrapper {
        flex: 1;
    }

    .about-text-wrapper {
        flex: 1;
    }

    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}