/* 
 * Anellora Luxury Design System
 * Theme: Black & White (Luxury Minimalist)
 * Primary Color: #7D5449
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;700&family=Montserrat:wght@300;400;600&display=swap');

:root {
    --primary-color: #7D5449;
    --secondary-color: #FFFFFF;
    --bg-light: #F5F5F5;
    --text-dark: #1A1A1A;
    --text-muted: #666666;
    --accent-silver: linear-gradient(135deg, #E0E0E0 0%, #BDBDBD 100%);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.root-styles {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.body-container {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
}

.header-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

/* Page Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    letter-spacing: 5px;
    color: var(--primary-color);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.5;
    }
}

/* Ad Header */
.ad-disclaimer {
    background: var(--bg-light);
    color: var(--text-muted);
    font-size: 0.75rem;
    text-align: center;
    padding: 8px 0;
    letter-spacing: 1px;
    border-bottom: 1px solid #EEE;
}

/* Navbar */
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-soft);
}

.logo-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--text-dark);
    text-decoration: none;
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-item-link {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-smooth);
}

.nav-item-link:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 12px 25px;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0;
    transition: var(--transition-smooth);
}

.cta-button:hover {
    background: #5D3E36;
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://luminelledesign.com/cdn/shop/files/imgi_10_O1CN011AWrMr2JeKK9RRRf4__2378709446-0-cib_jpg.webp?v=1759388533&width=3840');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* Parallax */
    color: var(--secondary-color);
}

.hero-content {
    max-width: 800px;
}

.hero-headline {
    font-size: 4rem;
    margin-bottom: 20px;
}

.hero-subtext {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

/* Common Section Layout */
.section-wrapper {
    padding: 100px 8%;
}

.section-title-wrap {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-muted);
    font-style: italic;
    font-family: 'Playfair Display', serif;
}

.gray-bg {
    background-color: var(--bg-light);
}

/* Why Us Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px;
    background: white;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Footer Styles */
.footer-container {
    background: #111;
    color: #CCC;
    padding: 80px 8% 20px 8%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-heading {
    color: white;
    margin-bottom: 30px;
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-item {
    margin-bottom: 12px;
}

.footer-link {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 40px;
}

.ad-note-footer {
    text-align: center;
    font-size: 0.8rem;
    margin-bottom: 30px;
    color: #666;
    line-height: 1.6;
}

.copyright {
    text-align: center;
    font-size: 0.75rem;
    color: #444;
}

/* Cookie Popup */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: white;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    transform: translateY(150%);
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.cookie-active {
    transform: translateY(0);
}

.cookie-btn-group {
    display: flex;
    gap: 15px;
}

.btn-secondary {
    border: 1px solid #CCC;
    background: transparent;
    padding: 10px 25px;
    cursor: pointer;
}

/* Mobile Menu */
.hamburger-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100%;
    background: white;
    z-index: 3000;
    padding: 80px 40px;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: right 0.5s ease;
}

.mobile-menu-active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 25px;
    right: 40px;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-nav-links {
    list-style: none;
    margin-top: 50px;
}

.mobile-nav-item {
    margin-bottom: 30px;
}

.mobile-nav-link {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    text-decoration: none;
    color: var(--text-dark);
}

@media (max-width: 992px) {

    .nav-links,
    .cta-button {
        display: none;
    }

    .hamburger-toggle {
        display: block;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-headline {
        font-size: 2.8rem;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}