/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --text-color: #f5f5f5;
    --text-color-muted: rgba(255, 255, 255, 0.7);
    --font-family: 'Outfit', sans-serif;
    --transition-smooth: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

body {
    font-family: var(--font-family);
    background-color: #1a1a1a;
    color: var(--text-color);
    overflow-x: hidden;
}

/* Hero Container */
.hero-container {
    position: relative;
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Background with subtle animation */
.background-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.bg-image {
    position: absolute;
    inset: -5%;
    width: 110%;
    height: 110%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #4b3d3d; /* Fallback color resembling the warm tone */
    animation: slowZoom 25s ease-out infinite alternate;
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.5) 0%,
        rgba(0, 0, 0, 0.1) 30%,
        rgba(0, 0, 0, 0.3) 100%
    );
}

@keyframes slowZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

/* Navigation Bar */
.navbar {
    position: relative;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px 60px;
    width: 100%;
    animation: slideDownFade 1.2s ease-out forwards;
    opacity: 0;
    transform: translateY(-20px);
}

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

/* Nav Left */
.nav-left {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    flex: 1;
}

/* Menu Trigger */
.menu-trigger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 32px;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--text-color);
    transition: var(--transition-smooth);
}

.menu-trigger:hover .hamburger span:nth-child(2) {
    width: 60%;
}

.menu-trigger:hover .hamburger span:nth-child(3) {
    width: 30%;
}

.menu-label {
    font-size: 0.65rem;
    letter-spacing: 2px;
    font-weight: 300;
    margin-top: 4px;
    color: var(--text-color-muted);
}

/* Search Box */
.search-box {
    display: flex;
    flex-direction: column;
    gap: 8px;
    cursor: pointer;
    margin-top: 5px;
}

.search-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
    font-weight: 300;
    color: var(--text-color-muted);
    transition: var(--transition-smooth);
}

.search-box:hover .search-label {
    color: var(--text-color);
}

.search-line-container {
    position: relative;
    width: 180px;
    height: 10px;
}

.search-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--text-color-muted);
    transition: var(--transition-smooth);
}

.search-angle {
    position: absolute;
    top: 0;
    right: 0;
    width: 1px;
    height: 8px;
    background-color: var(--text-color-muted);
    transition: var(--transition-smooth);
}

.search-box:hover .search-line,
.search-box:hover .search-angle {
    background-color: var(--text-color);
}

/* Nav Center (Logo) */
.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.brand-logo {
    font-size: 2.8rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
    white-space: nowrap;
    transition: var(--transition-smooth);
}

.brand-logo:hover {
    text-shadow: 0 0 20px rgba(255,255,255,0.4);
}

.reg-mark {
    font-size: 0.8rem;
    position: absolute;
    top: 5px;
    right: -15px;
    font-weight: 300;
}

/* Nav Right */
.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 40px;
    flex: 1;
    margin-top: 8px;
}

.nav-action {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-color);
    font-weight: 300;
    transition: var(--transition-smooth);
    position: relative;
    padding-bottom: 5px;
}

.nav-action i {
    font-size: 1.3rem;
    font-weight: 200;
}

.action-label {
    font-size: 0.8rem;
    letter-spacing: 1px;
}

.nav-action::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: white;
    transition: var(--transition-smooth);
}

.nav-action:hover::after {
    width: 100%;
}

/* Side Drawer Menu */
.menu-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.menu-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.menu-drawer {
    position: fixed;
    top: 0;
    left: -400px;
    width: 400px;
    max-width: 80vw;
    height: 100vh;
    background-color: rgba(56, 46, 38, 0.98); /* Deep warm earthy tone matching the image */
    z-index: 101; 
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 40px 30px;
    transition: left 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 5px 0 25px rgba(0,0,0,0.5);
}

.menu-drawer.active {
    left: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 20px; /* Reduced from 50px */
}

.drawer-logo-text {
    font-size: 1.2rem;
    font-weight: 500;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 2px;
    position: relative;
    display: inline-block;
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.drawer-close:hover {
    color: #d1bcae;
    transform: rotate(90deg);
}

.menu-content {
    width: 100%;
    text-align: left;
}

.menu-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.menu-links li {
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.4s ease;
}

.menu-drawer.active .menu-links li {
    opacity: 1;
    transform: translateX(0);
}

/* Stagger the list items animation */
.menu-drawer.active .menu-links li:nth-child(1) { transition-delay: 0.1s; }
.menu-drawer.active .menu-links li:nth-child(3) { transition-delay: 0.2s; }
.menu-drawer.active .menu-links li:nth-child(5) { transition-delay: 0.3s; }
.menu-drawer.active .menu-links li:nth-child(7) { transition-delay: 0.4s; }

.menu-links a {
    color: #f5f5f5;
    text-decoration: none;
    font-size: 0.95rem; /* Reduced from 1.2rem */
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.menu-links a:hover {
    color: #d1bcae; /* Soft beige hover effect */
}

.menu-links a i {
    font-size: 0.95rem; /* Reduced from 1.2rem */
    color: var(--text-color-muted);
    transition: transform 0.3s ease;
}

.menu-links a:hover i {
    transform: translateX(5px);
    color: #d1bcae;
}

.menu-divider {
    height: 1px;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    margin: 0;
}

/* Content Area */
.hero-content {
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 60px;
}

.bottom-indicators {
    display: flex;
    gap: 30px;
    align-items: center;
}

.indicator {
    width: 50px;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.indicator.active, .indicator:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .navbar {
        padding: 30px 40px;
    }
    .nav-left { gap: 40px; }
    .nav-right { gap: 25px; }
    .search-line-container { width: 140px; }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px 20px;
    }
    
    .action-label {
        display: none;
    }
    
    .search-box {
        display: none;
    }
    
    .nav-right {
        gap: 20px;
    }
    
    .nav-action i {
        font-size: 1.5rem;
    }

    .brand-logo {
        font-size: 1.8rem;
    }
    
    .hero-content {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.4rem;
    }
    
    .reg-mark {
        font-size: 0.5rem;
        top: 2px;
        right: -8px;
    }
    
    .bottom-indicators {
        gap: 15px;
    }
    .indicator {
        width: 30px;
    }
}

/* --- Section 2: Fabrics --- */
.fabrics-section {
    background-color: #f9f8f6;
    padding: 80px 0 100px;
    color: #2c241f; /* Dark brown for text */
    position: relative;
    overflow: hidden;
}

.fabrics-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    padding: 0 20px;
    position: relative;
}

.fabrics-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.fabrics-header p {
    font-size: 1rem;
    font-style: italic;
    color: #8c7362;
    margin-bottom: 25px;
}

.fabrics-divider {
    width: 80px;
    height: 1px;
    background-color: #8c7362;
    margin: 0 auto;
}

.carousel-nav {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 15px;
}

.nav-btn {
    background: transparent;
    border: none;
    color: #8c7362;
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.7;
}

.nav-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.carousel-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 0 40px;
    width: max-content;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-item {
    width: 350px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    opacity: 0.6;
    transform: scale(0.9);
}

/* Middle item pops out */
.carousel-item.active {
    opacity: 1;
    transform: scale(1.05);
    z-index: 2;
}

.carousel-item img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.item-info {
    text-align: left;
    padding: 0 10px;
}

.item-info h3 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #8c7362;
    margin-bottom: 5px;
}

.item-info h4 {
    font-size: 0.9rem;
    font-style: italic;
    font-weight: 400;
    color: #5a4b42;
    margin-bottom: 12px;
}

.item-info p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #2c241f;
    font-weight: 300;
}

@media (max-width: 768px) {
    .fabrics-header h2 { font-size: 2rem; }
    .carousel-item { width: 280px; }
    .carousel-item img { height: 350px; }
}

/* --- Section 3: Store Banner --- */
.store-banner-section {
    width: 100vw;
    height: 100vh;
    min-height: 500px;
    max-height: 1000px;
    position: relative;
    overflow: hidden;
}

.store-banner-bg {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- Section 4: About Section --- */
.about-section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.about-panel {
    position: relative;
    z-index: 2;
    background-color: #000000;
    color: #ffffff;
    max-width: 480px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.about-label {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.about-title {
    font-size: 2.2rem;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 40px;
}

.about-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 300;
    margin-bottom: 25px;
    color: rgba(255, 255, 255, 0.85);
}

.about-text p strong {
    font-weight: 500;
    color: #ffffff;
}

.about-link {
    align-self: flex-end;
    margin-top: 20px;
    color: #ffffff;
    text-decoration: none;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.about-link:hover {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .about-panel {
        width: 90%;
        padding: 50px 30px;
        margin: 40px 0;
    }
}

/* --- Section 5: Features & Lifestyle --- */
.features-lifestyle-section {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.features-bar {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 30px 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    max-width: 380px;
}

.feature-icon {
    width: 65px;
    height: 65px;
    min-width: 65px;
    border-radius: 50%;
    background-color: #ffffff;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
}

.feature-text h4 {
    color: #d1bcae;
    font-size: 1.05rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.85rem;
    line-height: 1.5;
    font-weight: 300;
}

.lifestyle-bg {
    width: 100vw;
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.lifestyle-logo-container {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: -1%;
    display: flex;
    justify-content: flex-start;
}

.lifestyle-logo-img {
    width: 100%;
    max-width: 100%;
    object-fit: contain;
    object-position: left bottom;
    opacity: 0.95;
    transform: translateY(45%);
}

@media (max-width: 1024px) {
    .features-bar {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
}

/* --- Section 6: Collection Section --- */
.collection-section {
    background-color: #ffffff;
    padding: 80px 20px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    overflow: hidden;
}

.collection-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin-bottom: 50px;
}

.collection-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    letter-spacing: 2px;
    color: #1a1a1a;
}

.collection-nav {
    position: absolute;
    right: 0;
    display: flex;
    gap: 10px;
}

.collection-nav .nav-btn {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #d1bcae; /* taupe color for arrows */
    cursor: pointer;
    transition: transform 0.3s ease;
}

.collection-nav .nav-btn:hover {
    transform: scale(1.1);
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    width: 100%;
    max-width: 1200px;
    margin-bottom: 60px;
}

.product-card {
    display: flex;
    flex-direction: column;
}

.product-image {
    background-color: #f7f4ef;
    padding: 20px;
    height: 380px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    border-radius: 2px;
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 15px rgba(0, 0, 0, 0.15));
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: translateY(-5px) scale(1.02);
}

.product-info {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 1rem;
    font-weight: 400;
    color: #555555;
    margin-bottom: 20px;
}

.product-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #eaeaea;
}

.color-swatches {
    display: flex;
    gap: 8px;
}

.swatch {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    border: 1px solid transparent;
}

.swatch:hover {
    border: 1px solid #333;
}

.add-btn {
    background: transparent;
    border: 1px solid #cccccc;
    color: #555555;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-btn:hover {
    background-color: #555555;
    color: #ffffff;
}

.collection-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}

.giant-text {
    font-size: 6rem;
    font-weight: 200;
    letter-spacing: 10px;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.view-more-link {
    color: #a87932;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: opacity 0.3s ease;
}

.view-more-link i {
    font-size: 1rem;
}

.view-more-link:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .giant-text {
        font-size: 4rem;
    }
}

@media (max-width: 600px) {
    .collection-grid {
        grid-template-columns: 1fr;
    }
    .collection-nav {
        position: static;
        margin-top: 15px;
    }
    .collection-header {
        flex-direction: column;
    }
    .giant-text {
        font-size: 3rem;
    }
}

/* --- Section 7: Quality Overlap --- */
.quality-overlap-section {
    width: 100vw;
    display: flex;
    flex-direction: column;
    position: relative;
    background-color: #ffffff;
}

.quality-top-banner {
    width: 100vw;
    height: 90vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
}

.quality-logo {
    bottom: 0;
    left: -1%;
    justify-content: flex-start;
}
.quality-logo img {
    transform: translateY(45%);
}

.quality-overlap-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: -150px;
    position: relative;
    z-index: 5;
    padding: 0 20px;
    margin-bottom: 80px;
}

.quality-card {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background: linear-gradient(to right, #fdfcf9 40%, #f4e9de 100%);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.quality-card-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.quality-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    color: #666;
    margin-bottom: 20px;
}

.quality-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
}

.quality-desc {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    font-weight: 300;
    margin-bottom: 40px;
}

.btn-dark {
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    padding: 15px 35px;
    font-size: 0.9rem;
    letter-spacing: 1px;
    align-self: flex-start;
    transition: background-color 0.3s ease;
}

.btn-dark:hover {
    background-color: #333333;
}

.quality-card-image {
    flex: 1.2;
    display: flex;
}

.quality-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1024px) {
    .quality-overlap-container {
        margin-top: -100px;
    }
    .quality-card {
        flex-direction: column;
    }
    .quality-card-text {
        padding: 50px 30px;
    }
    .quality-card-image img {
        height: 400px;
    }
}

/* --- Footer Section --- */
.site-footer {
    width: 100vw;
    display: flex;
    flex-direction: column;
}

.footer-dark {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 10vw 40px;
    display: flex;
    flex-direction: column;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 80px;
}

.footer-col h4 {
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-col ul li a {
    color: #888888;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 300;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-newsletter-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.newsletter-box {
    max-width: 500px;
}

.newsletter-box h3 {
    font-size: 1.2rem;
    font-weight: 400;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.newsletter-box p {
    color: #888888;
    font-size: 0.8rem;
    margin-bottom: 25px;
    font-weight: 300;
}

.input-group {
    width: 100%;
    margin-bottom: 20px;
}

.input-group input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid #444444;
    padding: 10px 0;
    color: #ffffff;
    font-size: 0.85rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.input-group input:focus {
    border-bottom-color: #ffffff;
}

.input-group input::placeholder {
    color: #555555;
}

.disclaimer {
    color: #666666 !important;
    font-size: 0.65rem !important;
    margin-bottom: 0 !important;
}

.footer-logo-faint {
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
}

.footer-light {
    background-color: #ffffff;
    color: #000000;
    padding: 30px 10vw 40px;
    display: flex;
    flex-direction: column;
}

.footer-light-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-lang {
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-logo-center {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
}

.footer-copy {
    font-size: 0.75rem;
    font-weight: 500;
}

.footer-socials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-socials a {
    color: #000000;
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.footer-socials a:hover {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 20px;
    }
    .footer-newsletter-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 40px;
    }
    .footer-light-top {
        flex-direction: column;
        gap: 20px;
    }
}
@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

/* --- Advanced Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.reveal.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #f9f8f6;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-spinner {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 2px solid transparent;
    border-top-color: #8c7362;
    border-bottom-color: #8c7362;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.preloader-logo {
    font-family: var(--font-family);
    font-size: 1.2rem;
    letter-spacing: 3px;
    color: #2c241f;
    font-weight: 500;
}

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