/*
Theme Name: Valrow Edge
Theme URI: https://yourwebsite.com
Author: Your Name
Author URI: https://yourwebsite.com
Description: A bold, chrome-themed streetwear theme inspired by VALROW. Features dark aesthetics, metallic effects, and modern typography for the new generation.
Version: 1.0.0
License: GPL v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: valrow-edge
Tags: streetwear, dark, modern, bold, chrome, fashion, e-commerce
*/

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

/* Chrome Text Effect */
.chrome-text {
    background: linear-gradient(135deg, #e0e0e0 0%, #ffffff 50%, #a0a0a0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    animation: chromeShine 3s infinite;
}

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

/* Header Styles */
.site-header {
    padding: 20px 40px;
    position: fixed;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.site-header.sticky {
    padding: 15px 40px;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo span {
    color: #c0c0c0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    font-size: 14px;
    transition: all 0.3s;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, #c0c0c0);
    transition: width 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0 40px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(circle at 30% 50%, #1a1a1a 0%, #0a0a0a 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 18px;
    letter-spacing: 6px;
    margin-bottom: 20px;
    color: #c0c0c0;
    text-transform: uppercase;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(60px, 12vw, 140px);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-title-line {
    display: block;
}

.hero-description {
    font-size: 18px;
    max-width: 600px;
    margin-bottom: 40px;
    color: #cccccc;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Button Styles */
.hero-buttons {
    animation: fadeInUp 1s ease 0.6s both;
}

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffffff;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn:hover {
    color: #0a0a0a;
}

.btn:hover::before {
    left: 0;
}

.btn-chrome {
    border: none;
    background: linear-gradient(135deg, #e0e0e0, #ffffff, #a0a0a0);
    color: #0a0a0a;
    margin-left: 20px;
}

.btn-chrome::before {
    display: none;
}

.btn-chrome:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

/* Scrolling Tagline */
.scrolling-tagline {
    background: #111111;
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    white-space: nowrap;
    position: relative;
}

.scrolling-tagline::before,
.scrolling-tagline::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.scrolling-tagline::before {
    left: 0;
    background: linear-gradient(90deg, #111111, transparent);
}

.scrolling-tagline::after {
    right: 0;
    background: linear-gradient(-90deg, #111111, transparent);
}

.tagline-track {
    display: inline-block;
    animation: scroll 30s linear infinite;
}

.tagline-track span {
    font-size: 16px;
    letter-spacing: 4px;
    color: #c0c0c0;
    margin-right: 40px;
    text-transform: uppercase;
}

.tagline-track span i {
    color: #ffffff;
    margin: 0 10px;
    font-style: normal;
    font-weight: 300;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Collection Section */
.collection-section {
    padding: 100px 40px;
    background: #0a0a0a;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-subtitle {
    color: #c0c0c0;
    font-size: 16px;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.collection-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #1a1a1a;
    border-radius: 4px;
    cursor: pointer;
}

.collection-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.collection-item:hover .collection-image {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 30px;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
    color: #ffffff;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.collection-item:hover .collection-overlay {
    transform: translateY(-5px);
}

.collection-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.collection-category {
    color: #c0c0c0;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transform: translateY(0);
    transition: transform 0.3s ease 0.1s;
}

/* Footer */
.site-footer {
    background: #111111;
    padding: 60px 40px 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
}

.footer-links h4 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: #c0c0c0;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    line-height: 2;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

.copyright {
    text-align: center;
    color: #666666;
    font-size: 14px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-header {
        padding: 15px 20px;
    }
    
    .hero-section {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .main-nav {
        display: none;
    }
    
    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-chrome {
        margin-left: 0;
    }
    
    .collection-section {
        padding: 60px 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-title {
        font-size: 80px;
    }
    
    .collection-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}