/* ===========================
   LUXIENNE DESIGN SYSTEM (partial / updated)
   =========================== */

/* Navbar */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(26, 22, 20, 0.95), rgba(26, 22, 20, 0));
    padding: var(--spacing-lg) 0; /* increased to fit larger logo */
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.logo img {
    height: 160px; /* doubled from 80px */
    width: auto;
    opacity: 0.95;
    transition: all 0.3s ease;
    max-height: calc(100% - 16px);
}

.logo img:hover {
    opacity: 1;
}

/* Hero Section */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: var(--color-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hero-video picture {
    position: static;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-gif {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Content Section */
.content {
    padding: var(--spacing-md) var(--spacing-md) var(--spacing-xl); /* top padding reduced */
}

/* Other styles (unchanged) kept from previous CSS */

