/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* Variables */
:root {
    --black: #000000;
    --white: #ffffff;
    --accent: #ff2d2d;
    --gray: #333333;
}

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body {
    font-family: 'Space Grotesk', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 2rem 4rem;
    background: rgba(0,0,0,0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    text-decoration: none;
    color: var(--white);
    letter-spacing: -1px;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    transition: color 0.3s;
    cursor: pointer;
}

.nav-links a:hover {
    color: var(--accent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background: radial-gradient(circle at center, var(--gray) 0%, var(--black) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23333333' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
    animation: backgroundScroll 20s linear infinite;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1200px;
}

.hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: 8rem;
    line-height: 1;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: -4px;
    font-weight: 900;
    background: linear-gradient(45deg, var(--white) 30%, var(--accent) 70%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientFlow 5s linear infinite;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

/* Latest Drops Section */
.latest-drops {
    padding: 8rem 4rem;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    margin-bottom: 4rem;
    text-align: center;
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -2px;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    position: relative;
    overflow: hidden;
    background: var(--gray);
    transition: all 0.5s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-10px);
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
    transform: translateY(100%);
    transition: transform 0.5s;
}

.product-card:hover .product-info {
    transform: translateY(0);
}

.product-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.product-info p {
    font-size: 1rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent);
}

/* About Section */
.about {
    padding: 8rem 4rem;
    background: var(--white);
    color: var(--black);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 4rem;
    margin-bottom: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
}

.about p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* Featured Collection */
.featured-collection {
    padding: 8rem 4rem;
    background: var(--gray);
    position: relative;
}

.collection-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.collection-intro .label {
    color: var(--accent);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: block;
}

.collection-intro h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.collection-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.showcase-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.showcase-image img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: var(--white);
}

.image-overlay h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.image-overlay .price {
    color: var(--accent);
    font-weight: 600;
}

.collection-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.detail-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.detail-images img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
}

.collection-text {
    margin-top: 2rem;
}

.collection-text p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.collection-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.collection-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

@media (max-width: 992px) {
    .collection-showcase {
        grid-template-columns: 1fr;
    }
    
    .showcase-image img {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .featured-collection {
        padding: 4rem 1.5rem;
    }
    
    .collection-intro h2 {
        font-size: 2.5rem;
    }
}

/* Quote Section */
.quote-section {
    padding: 10rem 2rem;
    background: var(--accent);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.quote-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.quote-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.quote-content .translation {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.accent-line {
    width: 120px;
    height: 4px;
    background: var(--white);
    margin: 2rem auto;
}

.quote-content .description {
    font-size: 1.2rem;
    line-height: 1.8;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .quote-section {
        padding: 6rem 1.5rem;
    }

    .quote-content h2 {
        font-size: 3rem;
    }

    .quote-content .translation {
        font-size: 1.2rem;
    }

    .quote-content .description {
        font-size: 1rem;
    }
}

/* Footer */
footer {
    padding: 4rem;
    text-align: center;
    background: var(--black);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.social-links a {
    color: var(--white);
    font-size: 1.5rem;
    transition: color 0.3s;
    cursor: pointer;
}

.social-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
@keyframes backgroundScroll {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes gradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        padding: 1.5rem;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 4rem;
        letter-spacing: -2px;
    }

    .hero p {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .section-title {
        font-size: 3rem;
    }

    .latest-drops {
        padding: 4rem 1.5rem;
    }

    .about {
        padding: 4rem 1.5rem;
    }

    .about h2 {
        font-size: 3rem;
    }
}
