:root {
    --primary: #2c3e50;
    --accent: #8b4513;
    --accent-light: #d4a574;
    --gradient: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    --gradient-hero: linear-gradient(135deg, #1a252f 0%, #2c3e50 50%, #8b4513 100%);
    --white: #ffffff;
    --light: #f8f9fa;
    --text: #333333;
    --text-light: #666666;
    --shadow: 0 10px 40px rgba(0,0,0,0.1);
    --shadow-hover: 0 20px 60px rgba(0,0,0,0.15);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Playfair Display', 'Georgia', serif;
    line-height: 1.8;
    color: var(--text);
    background: var(--light);
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
    transition: var(--transition);
}

header.scrolled {
    padding: 0.75rem 4rem;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    position: relative;
}

.logo::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
}

.logo:hover::after {
    width: 100%;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 3rem;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

nav a {
    color: var(--primary);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    position: relative;
    padding: 0.5rem 0;
}

nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

nav a:hover::before,
nav a.active::before {
    width: 100%;
}

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

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 0.5rem;
    background: var(--light);
    padding: 0.25rem;
    border-radius: 30px;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    transition: var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
    background: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(139, 69, 19, 0.3);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 8rem 2rem 4rem;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    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='%23ffffff' fill-opacity='0.03'%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.5;
}

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

.hero h1 {
    font-size: 5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease-out;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: var(--accent-light);
    font-style: italic;
}

.hero p {
    font-size: 1.4rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 2.5rem;
    max-width: 600px;
    animation: fadeInUp 1s ease-out 0.2s backwards;
}

.btn {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: var(--accent);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.4s backwards;
    position: relative;
    overflow: hidden;
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 69, 19, 0.4);
    background: #a0522d;
}

.hero-images {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.hero-images img {
    max-width: 280px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    transition: var(--transition);
    transform: rotate(-2deg);
}

.hero-images img:last-child {
    transform: rotate(2deg);
}

.hero-images img:hover {
    transform: rotate(0deg) scale(1.05);
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

/* Sections */
section {
    padding: 6rem 4rem;
}

section h2 {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent);
}

section > p {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

/* About Section */
.about {
    background: var(--white);
    text-align: center;
}

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

.about h2 {
    display: block;
    text-align: center;
}

.about h2::after {
    left: 50%;
}

/* Exclusivity Section */
.exclusivity {
    background: linear-gradient(180deg, var(--light) 0%, var(--white) 100%);
}

.exclusivity h3 {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 3rem;
    font-style: italic;
}

.exclusivity > p {
    font-size: 1.15rem;
    line-height: 2;
}

/* Wine Cards */
.wines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.wine-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.wine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.wine-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.wine-card:hover::before {
    transform: scaleX(1);
}

.wine-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: var(--transition);
}

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

.wine-card-info {
    padding: 2rem;
    text-align: center;
}

.wine-card h4 {
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.wine-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Content Pages */
.content {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 4rem;
}

.content h1 {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
    position: relative;
}

.content h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--accent);
}

.content h2 {
    font-size: 2rem;
    color: var(--accent);
    margin: 3rem 0 1.5rem;
    display: block;
    text-align: left;
}

.content h2::after {
    display: none;
}

.content h3 {
    font-size: 1.4rem;
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.content p {
    font-size: 1.1rem;
    line-height: 2;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.grape-img {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: var(--shadow);
    margin: 2rem 0;
    transition: var(--transition);
}

.grape-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-hover);
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent);
}

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

.feature h3 {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 1rem;
    margin-top: 0;
}

/* Route List */
.route-list {
    list-style: none;
    margin: 2rem 0;
}

.route-list li {
    background: var(--white);
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    border-left: 5px solid var(--accent);
    transition: var(--transition);
}

.route-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.route-list h3 {
    color: var(--primary);
    margin-bottom: 0.5rem;
    margin-top: 0;
}

.route-list p {
    margin-bottom: 0;
}

/* News */
.news-item {
    background: var(--white);
    padding: 2.5rem;
    margin-bottom: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.news-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    border-radius: 20px 20px 0 0;
}

.news-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.news-item h2 {
    font-size: 1.6rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
    margin-top: 0;
    display: block;
}

.news-item .date {
    color: var(--accent);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.news-item p {
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--primary);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent));
}

footer h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

footer h2::after {
    background: var(--accent-light);
}

footer p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 30px;
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* Language Select Page */
.lang-select {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.lang-select::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite;
}

.lang-select::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    animation: pulse 4s ease-in-out infinite 1s;
}

.lang-select > * {
    position: relative;
    z-index: 1;
}

.lang-select h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 3rem;
    animation: fadeInUp 1s ease-out;
}

.lang-options {
    display: flex;
    gap: 1.5rem;
    animation: fadeInUp 1s ease-out 0.3s backwards;
}

.lang-options a {
    padding: 1.5rem 3rem;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: var(--white);
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.2);
    transition: var(--transition);
}

.lang-options a:hover {
    background: var(--accent);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.2;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    header {
        padding: 1rem 2rem;
    }
    
    .hero h1 {
        font-size: 3.5rem;
    }
    
    section {
        padding: 4rem 2rem;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .header-right {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-images img {
        max-width: 100%;
    }
    
    section h2 {
        font-size: 2rem;
    }
    
    .content h1 {
        font-size: 2.5rem;
    }
    
    .lang-options {
        flex-direction: column;
    }
}
