/* Custom Fonts */
@font-face {
    font-family: 'Athena Inline';
    src: url('fonts/athena-inline.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

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

:root {
    /* Luxury Color Palette */
    --primary-color: #c39c5b;
    --primary-dark: #a67c52;
    --primary-light: #d4af37;
    --secondary-color: #c39c5b;
    --accent-color: #c39c5b;
    --text-primary: #ffffff;
    --text-secondary: #d1d5db;
    --text-light: #9ca3af;
    --text-dark: #1f2937;
    --bg-primary: #000000;
    --bg-secondary: #111111;
    --bg-tertiary: #1a1a1a;
    --bg-dark: #000000;
    --bg-golden: #c39c5b;
    --border-color: #374151;
    --border-golden: #c39c5b;
    --shadow-sm: 0 1px 2px 0 rgb(195 156 91 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(195 156 91 / 0.2), 0 2px 4px -2px rgb(195 156 91 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(195 156 91 / 0.3), 0 4px 6px -4px rgb(195 156 91 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(195 156 91 / 0.4), 0 8px 10px -6px rgb(195 156 91 / 0.1);
    --shadow-golden: 0 0 20px rgba(195, 156, 91, 0.3);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Athena Inline', cursive;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Spacing */
    --spacing-1: 0.25rem;
    --spacing-2: 0.5rem;
    --spacing-3: 0.75rem;
    --spacing-4: 1rem;
    --spacing-5: 1.25rem;
    --spacing-6: 1.5rem;
    --spacing-8: 2rem;
    --spacing-10: 2.5rem;
    --spacing-12: 3rem;
    --spacing-16: 4rem;
    --spacing-20: 5rem;
    --spacing-24: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.25rem;
    --radius-md: 0.375rem;
    --radius-lg: 0.5rem;
    --radius-xl: 0.75rem;
    --radius-2xl: 1rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease-in-out;
    --transition-normal: 300ms ease-in-out;
    --transition-slow: 500ms ease-in-out;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(195, 156, 91, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(195, 156, 91, 0.03) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-golden);
    z-index: 1000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-golden);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition-fast);
}

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

.nav-logo h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--primary-color);
    margin: 0;
    text-shadow: 0 0 10px rgba(195, 156, 91, 0.3);
}

.nav-menu {
    display: flex;
    gap: var(--spacing-8);
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
    text-shadow: 0 0 8px rgba(195, 156, 91, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition-fast);
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(26, 26, 26, 0.8) 50%, rgba(0, 0, 0, 0.7) 100%),
        url('images/pexels-leeloothefirst-5602720_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 100px;
    background: url('dosenfisch-logo.svg') no-repeat center;
    background-size: contain;
    opacity: 0.1;
    z-index: 1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-4);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    color: white;
    position: relative;
    z-index: 3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--font-size-5xl);
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: var(--spacing-6);
}

.highlight {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(195, 156, 91, 0.5);
}

.hero-subtitle {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-8);
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-2);
    padding: var(--spacing-3) var(--spacing-6);
    border: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: var(--font-size-base);
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--bg-primary);
    box-shadow: var(--shadow-golden);
    font-weight: 700;
    border: 1px solid var(--primary-color);
}

.btn-primary:hover {
    background: linear-gradient(45deg, var(--primary-light), var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(195, 156, 91, 0.6);
    color: var(--bg-primary);
}

.btn-secondary {
    background: rgba(195, 156, 91, 0.1);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(195, 156, 91, 0.2);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-golden);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--bg-primary);
    box-shadow: var(--shadow-golden);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-12);
}

.vintage-collection {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 300px;
    background: url('images/pexels-elisa-giaccaglia-704611068-18331781_optimized.jpg');
    background-size: cover;
    background-position: center;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-golden);
    border: 3px solid var(--primary-color);
    transition: var(--transition-normal);
    cursor: pointer;
}

.vintage-collection:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 40px rgba(195, 156, 91, 0.6);
}

.vintage-collection::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3), rgba(195, 156, 91, 0.2));
    z-index: 1;
}

.collection-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    z-index: 2;
    padding: var(--spacing-6);
}

.collection-title {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 400;
    color: var(--primary-color);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    margin-bottom: var(--spacing-2);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.collection-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.premium-badge {
    background: linear-gradient(135deg, rgba(195, 156, 91, 0.1), rgba(212, 175, 55, 0.1));
    border: 2px solid var(--primary-color);
    border-radius: var(--radius-2xl);
    padding: var(--spacing-8);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-golden);
    position: relative;
    overflow: hidden;
}

.premium-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent, rgba(195, 156, 91, 0.1), transparent);
    animation: shimmer 3s ease-in-out infinite;
}

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

.badge-content {
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    position: relative;
    z-index: 2;
}

.badge-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-2xl);
    color: var(--bg-primary);
    box-shadow: var(--shadow-golden);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-1);
}

.badge-title {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(195, 156, 91, 0.5);
}

.badge-subtitle {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-stats {
    display: flex;
    gap: var(--spacing-8);
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    padding: var(--spacing-4) var(--spacing-6);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(195, 156, 91, 0.3);
    backdrop-filter: blur(10px);
    transition: var(--transition-normal);
    min-width: 120px;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-golden);
}

.stat-number {
    display: block;
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(195, 156, 91, 0.4);
    margin-bottom: var(--spacing-1);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Background Elements */
.hero-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' opacity='.25' fill='%23ffffff'/%3E%3Cpath d='M0,0V15.81C13,36.92,27.64,56.86,47.69,72.05,99.41,111.27,165,111,224.58,91.58c31.15-10.15,60.09-26.07,89.67-39.8,40.92-19,84.73-46,130.83-49.67,36.26-2.85,70.9,9.42,98.6,31.56,31.77,25.39,62.32,62,103.63,73,40.44,10.79,81.35-6.69,119.13-24.28s75.16-39,116.92-43.05c59.73-5.85,113.28,22.88,168.9,38.84,30.2,8.66,59,6.17,87.09-7.5,22.43-10.89,48-26.93,60.65-49.24V0Z' opacity='.5' fill='%23ffffff'/%3E%3Cpath d='M0,0V5.63C149.93,59,314.09,71.32,475.83,42.57c43-7.64,84.23-20.12,127.61-26.46,59-8.63,112.48,12.24,165.56,35.4C827.93,77.22,886,95.24,951.2,90c86.53-7,172.46-45.71,248.8-84.81V0Z' fill='%23ffffff'/%3E%3C/svg%3E") repeat-x;
    opacity: 0.1;
}

.bg-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

/* Features Section */
.features {
    padding: var(--spacing-24) 0;
    background: 
        linear-gradient(135deg, rgba(17, 17, 17, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%),
        url('images/pexels-leeloothefirst-5602720_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(195, 156, 91, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(195, 156, 91, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-family: var(--font-display);
    text-align: center;
    font-size: var(--font-size-4xl);
    font-weight: 400;
    margin-bottom: var(--spacing-16);
    color: var(--text-primary);
    position: relative;
    z-index: 2;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
}

.feature-card {
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-golden);
    border-color: var(--border-golden);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-6);
    font-size: var(--font-size-2xl);
    color: var(--bg-primary);
    box-shadow: var(--shadow-golden);
    border: 2px solid var(--primary-light);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Drops Section */
.drops {
    padding: var(--spacing-24) 0;
    background: var(--bg-primary);
    position: relative;
}

.drops::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(195, 156, 91, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(195, 156, 91, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.drops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-8);
}

.drop-card {
    background: rgba(26, 26, 26, 0.9);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
    backdrop-filter: blur(10px);
}


.drop-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-golden);
    border-color: var(--border-golden);
}

.drop-card.featured {
    border: 2px solid var(--primary-color);
    position: relative;
}

.drop-card.featured::before {
    content: 'FEATURED';
    position: absolute;
    top: var(--spacing-4);
    right: var(--spacing-4);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--bg-primary);
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    z-index: 2;
    box-shadow: var(--shadow-golden);
}

.drop-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), 
                url('images/pexels-elisa-giaccaglia-704611068-18331781_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

.drop-badge {
    position: absolute;
    top: var(--spacing-4);
    left: var(--spacing-4);
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    color: var(--bg-primary);
    padding: var(--spacing-1) var(--spacing-3);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    box-shadow: var(--shadow-golden);
    backdrop-filter: blur(10px);
    z-index: 3;
}

.drop-badge.coming-soon {
    background: var(--text-light);
    color: var(--bg-primary);
}

.drop-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-normal);
    z-index: 2;
}

.drop-card:hover .drop-overlay {
    opacity: 1;
}

.drop-overlay i {
    font-size: var(--font-size-3xl);
    color: white;
}

.stars {
    display: flex;
    gap: var(--spacing-2);
    align-items: center;
    justify-content: center;
}

.stars i {
    font-size: var(--font-size-xl);
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(195, 156, 91, 0.8);
    animation: starGlow 2s ease-in-out infinite alternate;
}

.stars i:nth-child(1) { animation-delay: 0s; }
.stars i:nth-child(2) { animation-delay: 0.2s; }
.stars i:nth-child(3) { animation-delay: 0.4s; }
.stars i:nth-child(4) { animation-delay: 0.6s; }
.stars i:nth-child(5) { animation-delay: 0.8s; }

@keyframes starGlow {
    0% { 
        transform: scale(1);
        text-shadow: 0 0 10px rgba(195, 156, 91, 0.8);
    }
    100% { 
        transform: scale(1.1);
        text-shadow: 0 0 20px rgba(195, 156, 91, 1);
    }
}

.drop-content {
    padding: var(--spacing-6);
}

.drop-content h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-xl);
    font-weight: 400;
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.drop-description {
    color: var(--text-secondary);
    margin-bottom: var(--spacing-4);
    line-height: 1.6;
}

.drop-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-4);
}

.drop-quantity {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    font-weight: 500;
}

.drop-price {
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(195, 156, 91, 0.3);
}

.drop-timer {
    display: flex;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-6);
    justify-content: center;
    flex-wrap: wrap;
}

.timer-item {
    text-align: center;
    background: var(--bg-tertiary);
    padding: var(--spacing-3);
    border-radius: var(--radius-lg);
    min-width: 50px;
    border: 1px solid var(--border-golden);
    box-shadow: var(--shadow-golden);
    flex: 1;
    max-width: 80px;
}

.timer-number {
    display: block;
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--primary-color);
    text-shadow: 0 0 10px rgba(195, 156, 91, 0.5);
    line-height: 1;
}

.timer-label {
    font-size: var(--font-size-xs);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.drop-notify {
    width: 100%;
    justify-content: center;
}

/* About Section */
.about {
    padding: var(--spacing-24) 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(17, 17, 17, 0.9) 100%),
        url('images/pexels-leeloothefirst-5602720_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 40% 40%, rgba(195, 156, 91, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 60% 60%, rgba(195, 156, 91, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: var(--spacing-6);
}

.about-description {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-6);
    line-height: 1.7;
}

.about-stats {
    display: flex;
    gap: var(--spacing-8);
    margin-top: var(--spacing-8);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-1);
    text-shadow: 0 0 15px rgba(195, 156, 91, 0.4);
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-size: var(--font-size-6xl);
    box-shadow: var(--shadow-golden);
    border: 3px solid var(--primary-light);
}

.image-placeholder p {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-top: var(--spacing-4);
}

/* Contact Section */
.contact {
    padding: var(--spacing-24) 0;
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(17, 17, 17, 0.85) 100%),
        url('images/pexels-leeloothefirst-5602720_optimized.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(195, 156, 91, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(195, 156, 91, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-16);
    align-items: start;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: var(--font-size-2xl);
    font-weight: 400;
    margin-bottom: var(--spacing-4);
    color: var(--text-primary);
}

.contact-info p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-8);
    line-height: 1.6;
}

.contact-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-4);
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
}

.contact-feature i {
    color: var(--accent-color);
    font-size: var(--font-size-lg);
}

.contact-form {
    background: rgba(26, 26, 26, 0.9);
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-golden);
    border: 1px solid var(--border-golden);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--spacing-6);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--spacing-4);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-base);
    font-family: var(--font-family);
    transition: var(--transition-fast);
    background: rgba(17, 17, 17, 0.8);
    color: var(--text-primary);
    backdrop-filter: blur(5px);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(195, 156, 91, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-disclaimer {
    font-size: var(--font-size-sm);
    color: var(--text-light);
    text-align: center;
    margin-top: var(--spacing-4);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: var(--spacing-16) 0 var(--spacing-8);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-8);
    margin-bottom: var(--spacing-8);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-3);
    margin-bottom: var(--spacing-4);
}

.footer-logo-img {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: var(--transition-fast);
}

.footer-logo-img:hover {
    transform: scale(1.05);
    filter: brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(200deg);
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: var(--spacing-4);
    color: white;
}

.footer-logo h3 {
    font-family: var(--font-display);
    font-weight: 400;
    margin: 0;
}

.footer-section p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: var(--spacing-2);
}

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

.footer-section ul li {
    margin-bottom: var(--spacing-2);
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition-fast);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: var(--spacing-4);
    margin-top: var(--spacing-4);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-golden);
}

.footer-bottom {
    border-top: 1px solid var(--border-golden);
    padding-top: var(--spacing-8);
    text-align: center;
    color: #9ca3af;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: var(--bg-tertiary);
    margin: 5% auto;
    padding: var(--spacing-8);
    border-radius: var(--radius-xl);
    width: 90%;
    max-width: 600px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-golden);
    border: 1px solid var(--border-golden);
    color: var(--text-primary);
}

.close {
    position: absolute;
    right: var(--spacing-4);
    top: var(--spacing-4);
    font-size: var(--font-size-2xl);
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.close:hover {
    color: var(--text-primary);
}

.modal-content h2 {
    font-family: var(--font-display);
    font-size: var(--font-size-3xl);
    font-weight: 400;
    margin-bottom: var(--spacing-6);
    color: var(--text-primary);
    text-align: center;
}

.imprint-content h3 {
    margin-top: var(--spacing-6);
    margin-bottom: var(--spacing-3);
    color: var(--text-primary);
}

.imprint-content p {
    margin-bottom: var(--spacing-3);
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: var(--transition-normal);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-8) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-logo {
        gap: var(--spacing-2);
    }

    .logo-img {
        height: 35px;
    }

    .nav-logo h2 {
        font-size: var(--font-size-lg);
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-8);
    }

    .hero-title {
        font-size: var(--font-size-6xl);
        font-family: var(--font-display);
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        gap: var(--spacing-4);
    }

    .stat-item {
        min-width: 100px;
        padding: var(--spacing-3) var(--spacing-4);
    }
    
    .drop-timer {
        gap: var(--spacing-2);
    }
    
    .timer-item {
        min-width: 45px;
        max-width: 60px;
        padding: var(--spacing-2);
    }
    
    .timer-number {
        font-size: var(--font-size-md);
    }
    
    .timer-label {
        font-size: 10px;
    }

    .stat-number {
        font-size: var(--font-size-xl);
    }

    .premium-badge {
        padding: var(--spacing-6);
    }

    .badge-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-3);
    }

    .vintage-collection {
        max-width: 100%;
        height: 250px;
    }

    .collection-title {
        font-size: var(--font-size-xl);
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .drops-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-stats {
        justify-content: center;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .modal-content {
        margin: 10% auto;
        width: 95%;
        padding: var(--spacing-6);
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--spacing-3);
    }

    .hero-title {
        font-size: var(--font-size-3xl);
        font-family: var(--font-display);
    }

    .hero-subtitle {
        font-size: var(--font-size-lg);
    }

    .btn {
        padding: var(--spacing-3) var(--spacing-4);
        font-size: var(--font-size-sm);
    }

    .section-title {
        font-size: var(--font-size-3xl);
        font-family: var(--font-display);
    }

    .about-stats {
        flex-direction: column;
        gap: var(--spacing-4);
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-3);
    }

    .stat-item {
        min-width: auto;
        width: 100%;
        max-width: 200px;
    }

    /* Mobile background adjustments */
    .hero,
    .features,
    .about,
    .contact {
        background-attachment: scroll;
    }

    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.3);
        z-index: 1;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading states */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success states */
.success {
    color: var(--accent-color);
}

/* Error states */
.error {
    color: #ef4444;
    border-color: #ef4444;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-tertiary);
    border-top: 3px solid var(--primary-color);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-6);
    display: flex;
    align-items: center;
    gap: var(--spacing-6);
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 300px;
}

.cookie-text h4 {
    color: var(--primary-color);
    margin-bottom: var(--spacing-2);
    font-size: var(--font-size-lg);
}

.cookie-text p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: var(--spacing-3);
    flex-wrap: wrap;
}

.btn-sm {
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-sm);
}

.btn-link {
    background: none;
    border: none;
    color: var(--primary-color);
    text-decoration: underline;
    cursor: pointer;
    padding: var(--spacing-2) var(--spacing-4);
    font-size: var(--font-size-sm);
}

.btn-link:hover {
    color: var(--primary-light);
}

/* Mobile Cookie Banner */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: var(--spacing-4);
    }
    
    .cookie-buttons {
        justify-content: center;
        width: 100%;
    }
    
    .cookie-text {
        min-width: auto;
    }
}

/* Utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: var(--spacing-1); }
.mb-2 { margin-bottom: var(--spacing-2); }
.mb-3 { margin-bottom: var(--spacing-3); }
.mb-4 { margin-bottom: var(--spacing-4); }
.mb-6 { margin-bottom: var(--spacing-6); }
.mb-8 { margin-bottom: var(--spacing-8); }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: var(--spacing-1); }
.mt-2 { margin-top: var(--spacing-2); }
.mt-3 { margin-top: var(--spacing-3); }
.mt-4 { margin-top: var(--spacing-4); }
.mt-6 { margin-top: var(--spacing-6); }
.mt-8 { margin-top: var(--spacing-8); }
