/* ======================
   CSS VARIABLES & SETUP
   ====================== */
:root {
    --primary-color: #b76e79;
    /* Rose Gold */
    --primary-hover: #9c5c67;
    --secondary-color: #2d3748;
    /* Deep Charcoal / Slate */
    --text-color: #4a5568;
    --light-bg: #fdfbfb;
    --card-bg: #ffffff;
    --border-color: #e2e8f0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --transition: all 0.3s ease;
}

/* Base classes to replace reset */
.site-body {
    background-color: var(--light-bg);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    font-family: var(--font-body);
}

.loader-wrapper,
.top-ad-bar,
.main-header,
.hero-section,
.about-section,
.benefits-section,
.testimonials-section,
.gallery-section,
.faq-section,
.main-footer,
.cookie-popup,
.modal-overlay {
    box-sizing: border-box;
}

/* Typography styles */
.hero-title,
.section-title,
.footer-heading,
.modal-title,
.brand-logo,
.mobile-logo {
    font-family: var(--font-heading);
    color: var(--secondary-color);
}

.section-title {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

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

.section-desc {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* ======================
   PAGE LOADER
   ====================== */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--card-bg);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}

.loader-brand {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid var(--border-color);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

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

/* ======================
   AD TOP BAR
   ====================== */
.top-ad-bar {
    background-color: var(--secondary-color);
    padding: 8px 15px;
    text-align: center;
    position: relative;
    z-index: 100;
}

.top-ad-text {
    color: #cbd5e1;
    font-size: 0.8rem;
    letter-spacing: 0.5px;
}

/* ======================
   HEADER & NAVIGATION
   ====================== */
.main-header {
    background-color: var(--card-bg);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
    color: var(--primary-color);
}

.desktop-nav {
    display: flex;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-weight: 500;
    font-size: 1rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-color);
}

.header-cta-btn,
.primary-btn,
.mobile-cta-btn {
    text-decoration: none;
    background-color: var(--primary-color);
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.header-cta-btn:hover,
.primary-btn:hover,
.mobile-cta-btn:hover {
    background-color: var(--primary-hover);
    box-shadow: 0 4px 15px rgba(183, 110, 121, 0.4);
}

/* Hamburger */
.hamburger-menu {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    transition: right 0.4s ease;
}

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background-color: var(--card-bg);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
}

.close-menu {
    align-self: flex-end;
    font-size: 2rem;
    cursor: pointer;
    color: var(--secondary-color);
}

.mobile-logo {
    font-size: 2rem;
    margin-bottom: 30px;
    text-decoration: none;
}

.mobile-nav-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.mobile-link {
    text-decoration: none;
    font-size: 1.2rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ======================
   HERO SECTION
   ====================== */
.hero-section {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    align-items: center;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.hero-image-wrapper {
    flex: 1;
    text-align: right;
}

.hero-img,
.about-img {
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.hero-img:hover,
.about-img:hover {
    transform: translateY(-10px);
}

/* ======================
   ABOUT US
   ====================== */
.about-section {
    background-color: var(--card-bg);
    padding: 80px 20px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 50px;
}

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

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

/* ======================
   WHY US (BENEFITS)
   ====================== */
.benefits-section {
    padding: 80px 20px;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-card {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.benefit-title {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.benefit-desc {
    font-size: 0.95rem;
}

/* ======================
   TESTIMONIALS
   ====================== */
.testimonials-section {
    background-color: var(--secondary-color);
    padding: 80px 20px;
}

.testimonials-section .section-title {
    color: #fff;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 15px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stars {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #e2e8f0;
}

.testimonial-author {
    font-weight: 600;
    color: #fff;
}

/* ======================
   GALLERY
   ====================== */
.gallery-section {
    padding: 80px 20px;
    background-color: var(--card-bg);
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.gallery-img {
    width: 100%;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ======================
   FAQS
   ====================== */
.faq-section {
    padding: 80px 20px;
}

.faq-list {
    max-width: 800px;
    margin: 40px auto 0;
}

.faq-item {
    background: var(--card-bg);
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    padding: 0 20px;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer-text {
    padding-bottom: 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

/* ======================
   FOOTER
   ====================== */
.main-footer {
    background-color: #1e293b;
    color: #94a3b8;
    padding-top: 60px;
}

.footer-ad-notice {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 0 20px;
    text-align: center;
}

.footer-ad-text {
    font-size: 0.85rem;
    color: #64748b;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding: 0 20px 40px;
}

.footer-heading {
    color: #fff;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-text,
.footer-link {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-list {
    list-style: none;
}

.footer-link {
    text-decoration: none;
    color: #94a3b8;
    transition: var(--transition);
    cursor: pointer;
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    background-color: #0f172a;
    padding: 20px;
    text-align: center;
}

.footer-copy {
    font-size: 0.9rem;
}

/* ======================
   COOKIE POPUP
   ====================== */
.cookie-popup {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    z-index: 3000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.show {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    text-align: center;
}

.cookie-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.cookie-text {
    margin-bottom: 20px;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.accept-btn {
    background-color: var(--primary-color);
    color: #fff;
}

.accept-btn:hover {
    background-color: var(--primary-hover);
}

.reject-btn {
    background-color: #e2e8f0;
    color: var(--secondary-color);
}

.reject-btn:hover {
    background-color: #cbd5e1;
}

/* ======================
   MODALS
   ====================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 4000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.show-modal {
    opacity: 1;
    pointer-events: auto;
}

.modal-content {
    background-color: var(--card-bg);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    padding: 40px;
    border-radius: 15px;
    position: relative;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
}

.modal-overlay.show-modal .modal-content {
    transform: translateY(0);
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.close-modal:hover {
    color: var(--primary-color);
}

.modal-title {
    margin-bottom: 20px;
    font-size: 1.8rem;
    color: var(--secondary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
    display: inline-block;
}

.modal-text {
    margin-bottom: 15px;
}

.modal-list {
    margin-bottom: 15px;
    padding-left: 20px;
}

.modal-list-item {
    margin-bottom: 8px;
    list-style-type: disc;
}

/* ======================
   RESPONSIVE DESIGN
   ====================== */
@media screen and (max-width: 992px) {

    .hero-section,
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .hero-image-wrapper {
        text-align: center;
    }

    .desktop-nav,
    .header-cta-btn {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }

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

@media screen and (max-width: 576px) {
    .section-title {
        font-size: 1.8rem;
    }

    .about-section,
    .hero-section,
    .benefits-section,
    .testimonials-section,
    .gallery-section,
    .faq-section {
        padding: 50px 15px;
    }
}