/* Reset and Variables */
:root {
    /* UPDATED: Brand Colors */
    --primary-color: #076CA9; /* Blue */
    --secondary-color: #EB1C22; /* Red */
    
    --bg-light: #f9f9f9;
    --text-dark: #333;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text-dark);
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 5%;
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    min-height: 90px;
}

/* Logo Size (Desktop) */
.logo { 
    height: 150px; 
    width: auto; 
    object-fit: contain;
} 

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--secondary-color); } /* Red hover */

.btn-nav {
    border: 1px solid var(--primary-color);
    padding: 0.5rem 1.2rem;
    color: var(--primary-color);
    transition: all 0.3s;
}
.btn-nav:hover { background: var(--primary-color); color: var(--white); }

.hamburger { display: none; cursor: pointer; font-size: 1.5rem; color: var(--primary-color); }

/* Hero Section */
.hero {
    height: 90vh;
    /* Darkened overlay slightly to make white text pop against the new blue/red theme if needed */
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1441984904996-e0b6ba687e04?ixlib=rb-1.2.1&auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-content p { font-size: 1.2rem; margin-bottom: 2rem; }

.btn-primary {
    background: var(--white);
    color: var(--primary-color); /* Blue text */
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}
.btn-primary:hover { background: var(--secondary-color); color: var(--white); } /* Red background on hover */

/* Marquee Section */
.brand-section {
    background: var(--primary-color); /* Blue Background */
    padding: 1.5rem 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-container { width: 100%; overflow: hidden; }

.marquee-content {
    display: inline-block;
    /* UPDATED: Slower speed (45s instead of 20s) */
    animation: marquee 45s linear infinite;
}

.brand-logo {
    color: var(--white); 
    font-family: var(--font-heading);
    font-size: 1.5rem;
    /* UPDATED: More space between logos (6rem instead of 3rem) */
    margin: 0 6rem;
    font-weight: bold;
    letter-spacing: 2px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* About Section */
.about-section { padding: 5rem 5%; background: var(--bg-light); }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 1.5rem;
    color: var(--primary-color); /* Blue Heading */
}
.about-text p { margin-bottom: 1rem; color: #555; }

.placeholder-box {
    width: 100%;
    height: 400px;
    background: #e0e0e0;
    border: 2px dashed #999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #666;
}
.placeholder-box i { font-size: 3rem; margin-bottom: 1rem; color: var(--primary-color); }

/* Collection Section */
.collection-section { padding: 5rem 5%; text-align: center; }
.collection-section h2 { 
    font-family: var(--font-heading); 
    font-size: 2.5rem; 
    margin-bottom: 3rem; 
    color: var(--primary-color);
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card { position: relative; overflow: hidden; cursor: pointer; }
.card img { width: 100%; height: 400px; object-fit: cover; transition: 0.5s; }
.card:hover img { transform: scale(1.1); }

.card .info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    padding: 1rem;
    text-align: left;
    border-top: 3px solid var(--secondary-color); /* Red accent line */
}
.card .info h3 { color: var(--primary-color); }

/* Reviews */
.reviews-section { padding: 5rem 5%; background: var(--bg-light); text-align: center; }
.reviews-section h2 { font-family: var(--font-heading); margin-bottom: 3rem; font-size: 2.5rem; color: var(--primary-color);}
.review-container { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; }

.review-card {
    background: var(--white);
    padding: 2rem;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-bottom: 3px solid var(--primary-color);
}
.stars { color: var(--secondary-color); margin-bottom: 1rem; } /* Red Stars */
.review-card h4 { margin-top: 1rem; font-style: italic; color: var(--primary-color); }

/* Contact Section */
.contact-section { padding: 5rem 5%; }
.contact-section h2 { font-family: var(--font-heading); font-size: 2.5rem; margin-bottom: 3rem; text-align: center; color: var(--primary-color); }

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
}

.contact-info .item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
}
.contact-info i {
    font-size: 1.5rem;
    color: var(--secondary-color); /* Red Icons */
    margin-right: 1.5rem;
    width: 30px;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus { outline: 1px solid var(--primary-color); }

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    margin-bottom: 2rem;
}
.form-check a { color: var(--secondary-color); text-decoration: underline; }

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color); /* Blue Button */
    color: var(--white);
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.btn-submit:hover { background: var(--secondary-color); } /* Red Hover */

/* Footer */
footer {
    background: var(--primary-color); /* Blue Footer */
    color: var(--white);
    padding: 2rem 5%;
    text-align: center;
}
.footer-content { display: flex; flex-direction: column; gap: 1rem; }
.footer-links a { margin: 0 10px; font-size: 0.9rem; opacity: 0.8; }
.footer-links a:hover { opacity: 1; color: #fff; text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .navbar { padding: 1rem; min-height: 70px; }
    
    /* UPDATED: Increased mobile logo height */
    .logo { height: 100px; } 

    .hamburger { display: block; }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    }
    .nav-links.active { display: flex; }
    .hero-content h1 { font-size: 2.5rem; }
    .about-grid, .contact-grid { grid-template-columns: 1fr; }
}