/* Root Variables for Modern Color Palette */
:root {
    --primary-color: #d4af37;
    /* Elegant Gold */
    --hover-gold: #c2a133;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --text-main: #333333;
    --text-muted: #777777;
    --transition: 0.3s ease;
}

/* Reset and Global Base Classes */
.body-container {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Ad Banners */
.ad-banner-top {
    background-color: var(--light-bg);
    color: var(--text-muted);
    font-size: 14px;
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
    font-weight: 400;
}

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

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

.loader-logo {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--dark-bg);
    margin-bottom: 20px;
}

.loader-bar-container {
    width: 200px;
    height: 3px;
    background-color: #eee;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar {
    width: 50%;
    height: 100%;
    background-color: var(--primary-color);
    animation: loaderMove 1.5s infinite linear;
}

@keyframes loaderMove {
    0% {
        transform: translateX(-100%);
        width: 30%;
    }

    50% {
        width: 50%;
    }

    100% {
        transform: translateX(200%);
        width: 30%;
    }
}

/* Header & Navigation */
.header-main {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo-container .logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-bg);
    text-decoration: none;
    letter-spacing: 1px;
}

.nav-desktop .nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-desktop .nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 15px;
    font-weight: 500;
    transition: var(--transition);
}

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

/* Buttons */
.btn-primary {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    border-radius: 4px;
    transition: var(--transition);
    display: inline-block;
    box-sizing: border-box;
    /* Ensure padding doesn't increase width */
    border: 1px solid var(--dark-bg);
    cursor: pointer;
}

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

.btn-primary.large-btn {
    padding: 16px 40px;
    font-size: 16px;
}

/* Hamburger & Mobile Menu */
.hamburger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-line {
    width: 25px;
    height: 2px;
    background-color: var(--dark-bg);
    transition: var(--transition);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 40px;
    box-sizing: border-box;
    /* Inclusion of padding in the width calculation */
}

.mobile-menu-overlay.active {
    right: 0;
}

.close-menu {
    font-size: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--dark-bg);
    position: absolute;
    top: 20px;
    right: 20px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin-top: 60px;
}

.mobile-nav-item {
    margin-bottom: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 600;
}

.mobile-cta-wrapper {
    margin-top: 40px;
}

.mobile-btn {
    width: 100%;
    text-align: center;
    padding: 18px 20px;
    /* More prominent on mobile */
}

/* Hero Section */
.hero-section {
    padding: 80px 30px;
    background-color: var(--light-bg);
}

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

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

.hero-subtitle {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 500px;
}

.hero-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

/* About Section */
.about-section {
    padding: 100px 30px;
}

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

.about-grid {
    display: flex;
    align-items: center;
    gap: 80px;
}

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

.about-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-title.centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.about-features {
    list-style: none;
    padding: 0;
}

.feature-item {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}

/* Why Us Section */
.why-us-section {
    padding: 100px 30px;
    background-color: var(--light-bg);
}

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

.why-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease;
}

.why-card:hover {
    transform: translateY(-10px);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.why-text {
    color: var(--text-muted);
}

/* Testimonials */
.testimonials-section {
    padding: 100px 30px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.testimonial-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 8px;
    max-width: 450px;
}

.rating {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: 600;
}

/* FAQ Section */
.faq-section {
    padding: 100px 30px;
    background-color: var(--white);
}

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

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 20px 0;
    font-size: 1.2rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--dark-bg);
    font-family: 'Inter', sans-serif;
}

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

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 20px;
}

.faq-answer-text {
    margin: 0;
    color: var(--text-muted);
}

/* Final CTA Section */
.final-cta-section {
    padding: 120px 30px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://asset.swarovski.com/images/$size_1450/t_swa002/c_scale,dpr_1.0,f_auto,w_375/5514421_ms1/swan-halskette--dancing-swan--wei%C3%9F--rhodiniert-swarovski-5514421.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: center;
    color: var(--white);
}

.cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 40px;
}

/* Footer */
.footer-main {
    background-color: var(--dark-bg);
    color: #999;
    padding: 80px 30px 40px;
}

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

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-title {
    color: var(--white);
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.footer-subtitle {
    color: var(--white);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

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

.footer-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-ad-note {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 4px;
    margin-bottom: 40px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-ad-disclaimer {
    font-size: 13px;
    color: #666;
}

/* Modals */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 3000;
    padding: 20px;
}

.modal-content {
    background-color: var(--white);
    padding: 50px;
    border-radius: 8px;
    max-width: 700px;
    width: 100%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 25px;
}

.modal-subtitle {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--dark-bg);
}

.modal-text {
    margin-bottom: 15px;
    color: var(--text-main);
}

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

.modal-list-item {
    margin-bottom: 10px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 -5px 30px rgba(0, 0, 0, 0.1);
    z-index: 4000;
    padding: 25px 0;
    transition: 0.5s ease;
}

.cookie-banner.active {
    bottom: 0;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-text {
    font-size: 14px;
}

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

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

.cookie-btn.accept {
    background-color: var(--dark-bg);
    color: var(--white);
}

.cookie-btn.decline {
    background-color: #eee;
    color: var(--text-main);
}

/* Media Queries */
@media (max-width: 992px) {
    .header-content {
        padding: 0 20px;
    }

    .nav-desktop {
        display: none;
    }

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

    .hamburger-menu {
        display: flex;
    }

    .hero-container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

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

    .hero-description {
        margin: 0 auto 40px;
    }

    .about-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .testimonial-slider {
        flex-direction: column;
        align-items: center;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .modal-content {
        padding: 30px;
    }
}