/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000;
    --text-color: #333;
    --bg-color: #fff;
    --light-bg: #f5f5f5;
    --accent-color: #10408d;
    --overlay-color: rgba(0, 0, 0, 0.4);
    --font-primary: 'Open Sans', sans-serif;
    --font-secondary: 'Playfair Display', serif;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--bg-color);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-secondary);
    font-weight: 500;
    color: var(--primary-color);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.sub-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: #fff;
}

/* Animations */
.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.tracking-in-expand {
    animation: tracking-in-expand 1s cubic-bezier(0.215, 0.610, 0.355, 1.000) both;
}

@keyframes tracking-in-expand {
    0% {
        letter-spacing: -0.5em;
        opacity: 0;
    }

    40% {
        opacity: 0.6;
    }

    100% {
        opacity: 1;
    }
}

/* Header & Navigation */
.site-header {
    background-color: #f4f4f4;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
}

.logo-text {
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    gap: 25px;
}

.nav-menu>li {
    position: relative;
}

.nav-menu>li>a {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 10px 0;
    display: inline-block;
    position: relative;
}

.nav-menu>li>a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu>li:hover>a::after,
.nav-menu>li.active>a::after {
    width: 100%;
}

.nav-menu>li.active>a {
    color: var(--accent-color);
}

.nav-menu .fas.fa-caret-down {
    font-size: 0.8rem;
    margin-left: 5px;
}

/* Dropdown */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #f4f4f4;
    min-width: 200px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
    border-top: 2px solid var(--accent-color);
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li {
    border-bottom: 1px solid #f0f0f0;
}

.dropdown li:last-child {
    border-bottom: none;
}

.dropdown a {
    display: block;
    padding: 12px 20px;
    font-size: 0.9rem;
    color: var(--text-color);
    transition: background 0.3s;
}

.dropdown a:hover,
.dropdown li.active a {
    background: var(--light-bg);
    color: var(--accent-color);
    padding-left: 25px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Banner Section */
.banner-section {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 500px;
    overflow: hidden;
}

.banner-slider {
    width: 100%;
    height: 100%;
}

.slide {
    width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-color);
    border-bottom: 1px solid #f0f0f0;
}

.grid-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    text-align: center;
}

.feature-item {
    padding: 20px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.feature-item i {
    font-size: 3rem;
    color: var(--accent-color);
    margin-bottom: 25px;
    opacity: 0.8;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-item p {
    color: #777;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Intro Section */
.intro-section {
    padding: 80px 0;
    background-color: var(--bg-color);
}

.title-separator {
    width: 60px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 0 auto 30px;
}

.section-desc {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
}

/* Product Showcase */
.product-showcase {
    padding: 60px 0;
}

.women-section {
    background-color: var(--light-bg);
}

.men-section {
    background-color: var(--bg-color);
}

.flex-container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.flex-container.reverse-if-needed {
    flex-direction: row;
}

.col {
    flex: 1;
}

.img-col {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.img-col img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.7s ease;
}

.img-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(16, 64, 141, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.img-hover-zoom:hover img {
    transform: scale(1.05);
}

.img-hover-zoom:hover .img-glow {
    opacity: 1;
}

.text-col {
    padding: 20px;
}

.sub-separator {
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
    margin-bottom: 20px;
}

.text-col p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: #555;
}

/* Brands Section */
.brands-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111 0%, #333 100%);
    position: relative;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.brand-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    background: #fff;
}

.brand-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.5s ease;
}

.brand-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: bottom 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.brand-overlay span {
    color: #fff;
    font-family: var(--font-secondary);
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.brand-item:hover img {
    transform: scale(1.1);
}

.brand-item:hover .brand-overlay {
    bottom: 0;
}

.glass-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Footer Element */
.site-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 60px;
}

.footer-grid {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding-bottom: 50px;
    text-align: center;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 25px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
}

.info-list li {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.info-list i {
    color: var(--accent-color);
    margin-top: 5px;
}

.link-list li {
    margin-bottom: 12px;
}

.link-list a:hover {
    color: var(--accent-color);
    padding-left: 5px;
}

.social-list li {
    margin-bottom: 15px;
}

.social-list a {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-list a:hover {
    color: var(--accent-color);
}

.social-list i {
    font-size: 1.2rem;
}

.footer-bottom {
    background-color: #111;
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 15px 20px;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        transition: left 0.3s ease;
        overflow-y: auto;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.show {
        left: 0;
    }

    .nav-menu {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu>li>a {
        display: block;
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }

    .dropdown {
        position: static;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        border-top: none;
        padding-left: 20px;
        background: var(--light-bg);
    }

    .has-dropdown.active-dropdown .dropdown {
        display: block;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .flex-container,
    .flex-container.reverse-if-needed {
        flex-direction: column;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .section-title {
        font-size: 2rem;
    }

    .video-section {
        height: 300px;
    }
}