/* CSS for Noirbellede - Premium Designer Aesthetic */

:root {
    --primary-bg: #ffffff;
    --secondary-bg: #fcfcfc;
    --text-main: #181803;
    --text-muted: #555555;
    --accent-gold: #c5a047;
    /* Gold/Brass */
    --accent-gold-light: #e6d3a5;
    --white: #ffffff;
    --black: #000000;
    --transition-smooth: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 15px 45px rgba(0, 0, 0, 0.1);
}

/* Base resets via classes since tags are restricted */
.body-reset {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
    color: var(--text-main);
    background-color: var(--primary-bg);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Loader */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease-out, visibility 0.5s;
}

.loader-container.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-brand {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.loader-bar-bg {
    width: 200px;
    height: 2px;
    background-color: #eee;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.loader-bar-fill {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--accent-gold);
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* Top Ad Banner */
.top-ad-banner {
    background-color: #f5f5f5;
    text-align: center;
    padding: 8px 15px;
    border-bottom: 1px solid #eee;
}

.top-ad-text {
    margin: 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.05rem;
}

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

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

.header-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.1rem;
    color: var(--text-main);
    text-decoration: none;
    text-transform: uppercase;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
    transition: var(--transition-smooth);
}

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

.header-cta-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.btn-primary {
    background-color: var(--text-main);
    color: var(--white);
    padding: 12px 28px;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    border-radius: 0;
    transition: var(--transition-smooth);
    border: 1px solid var(--text-main);
    display: inline-block;
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--text-main);
}

.hamburger-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.hamburger-bar {
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
}

/* Mobile Nav Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background-color: var(--white);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

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

.mobile-nav-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.mobile-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
}

.mobile-close-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.close-icon {
    width: 32px;
    height: 32px;
    color: var(--text-main);
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.mobile-cta-btn {
    margin-top: 20px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

/* Main Content */
.main-content {
    animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

.hero-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    color: var(--accent-gold);
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
}

.text-accent {
    font-weight: 700;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.text-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-gold-light);
    z-index: -1;
}

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

.hero-main-img {
    width: 100%;
    height: auto;
    box-shadow: var(--shadow-medium);
}

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

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

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

.about-img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 30px;
}

.section-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

/* Why Section */
.why-section {
    padding: 100px 0;
    background-color: #f9f9f9;
}

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

.feature-card {
    background-color: var(--white);
    padding: 50px 30px;
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.feature-icon-wrapper {
    margin-bottom: 25px;
    color: var(--accent-gold);
}

.feature-icon {
    width: 40px;
    height: 40px;
}

.feature-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.1rem;
}

.feature-card-text {
    font-size: 0.95rem;
    color: var(--text-muted);
}

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

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

.testimonial-card {
    padding: 40px;
    background-color: var(--white);
    border: 1px solid #eee;
    font-style: italic;
}

.stars-wrapper {
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

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

.testimonial-author {
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.05rem;
}

.social-proof-banner {
    margin-top: 50px;
    text-align: center;
}

.social-proof-text {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    font-size: 0.85rem;
    color: var(--accent-gold);
}

/* GallerySection */
.gallery-section {
    padding-bottom: 100px;
}

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

.gallery-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.gallery-img:hover {
    filter: brightness(0.9);
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background-color: #fcfcfc;
}

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

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

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 0;
    text-align: left;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-toggle {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--accent-gold);
}

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

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

.faq-item.active .faq-toggle {
    content: '-';
}

.faq-text {
    padding-bottom: 25px;
    color: var(--text-muted);
}

/* Footer */
.main-footer {
    background-color: #111;
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
}

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

.footer-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.15rem;
    margin-bottom: 30px;
    color: var(--accent-gold);
}

.footer-info {
    font-size: 0.9rem;
    margin-bottom: 10px;
    color: #ccc;
}

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

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

.footer-link {
    color: #ccc;
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--transition-smooth);
}

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

.footer-ad-note {
    border-top: 1px solid #333;
    padding: 30px 0;
    text-align: center;
}

.footer-ad-text {
    font-size: 0.75rem;
    line-height: 1.8;
    color: #888;
    max-width: 800px;
    margin: 0 auto;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
}

.copyright-text {
    font-size: 0.75rem;
    color: #666;
}

/* Modals */
.modal-overlay {
    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: 5000;
}

.modal-container {
    background-color: var(--white);
    width: 90%;
    max-width: 700px;
    max-height: 80vh;
    padding: 40px;
    overflow-y: auto;
    position: relative;
}

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

.modal-title {
    font-family: 'Outfit', sans-serif;
    margin: 0;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

.modal-body {
    line-height: 1.8;
}

.modal-subtitle {
    font-family: 'Outfit', sans-serif;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-main);
}

.modal-bold {
    color: var(--text-main);
    font-weight: 700;
}

.modal-text {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Cookie Popup */
.cookie-popup-container {
    position: fixed;
    bottom: -300px;
    left: 30px;
    right: 30px;
    background-color: var(--white);
    padding: 25px;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    z-index: 4000;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-width: 500px;
    border: 1px solid #eee;
}

.cookie-popup-container.active {
    bottom: 30px;
}

.cookie-title {
    margin: 0 0 10px 0;
    font-family: 'Outfit', sans-serif;
}

.cookie-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

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

.cookie-btn {
    padding: 10px 20px;
    font-size: 0.75rem;
}

.btn-secondary {
    background: none;
    border: 1px solid #ccc;
    color: var(--text-main);
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
}

/* Responsive Queries */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text-content {
        order: 2;
    }

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

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

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

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

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

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

    .hamburger-menu-btn {
        display: flex;
    }

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

    .features-grid,
    .testimonials-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .gallery-img {
        height: 300px;
    }
}