/* Variables */
:root {
    --white: #FFFFFF;
    --black: #000000;
    --gold: #D4AF37;
    --red: #DC143C;
    --gray: #F5F5F5;
    --dark-gray: #333333;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--black);
    background: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 28px;
    font-weight: 300;
    text-decoration: none;
    color: var(--black);
    letter-spacing: 3px;
    transition: color 0.3s;
}

.logo a:hover {
    color: var(--gold);
}

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

nav a {
    text-decoration: none;
    color: var(--black);
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    transition: all 0.3s;
    position: relative;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.3s;
}

nav a:hover::after {
    width: 100%;
}

.language-switcher select {
    background: transparent;
    border: 1px solid var(--black);
    padding: 5px 10px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.language-switcher select:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Hero */
.hero {
    margin-top: 80px;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: url('/images/home/_MG_3235.jpg') center/cover;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.8);
}

.hero-content {
    position: relative;
    z-index: 1;
}

h1 {
    font-size: 72px;
    font-weight: 300;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.hero-quote {
    font-size: 20px;
    font-style: italic;
    color: var(--gold);
}

/* Works Grid */
.works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 60px 0;
}

.work-card {
    cursor: pointer;
    transition: transform 0.3s;
}

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

.work-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.work-card h3 {
    margin-top: 15px;
    font-weight: 400;
}

/* Series Description */
.series-description {
    font-size: 20px;
    margin-bottom: 40px;
    color: #666;
}

/* Price */
.price {
    color: var(--gold);
    font-weight: 500;
    margin-top: 10px;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 20px;
}

.footer-col p, .footer-col a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 16px;
    line-height: 1.8;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    border-color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .works-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    h1 {
        font-size: 48px;
    }
}