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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f8f8;
}

header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    color: #d4af37;
    padding: 2rem 0;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    border-bottom: 3px solid #d4af37;
}

header h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

header p {
    color: #e8e8e8;
    font-style: italic;
}

nav {
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

nav a:hover {
    color: #d4af37;
}

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

section {
    margin: 3rem 0;
}

section h2 {
    color: #2c2c2c;
    font-size: 2rem;
    margin-bottom: 1rem;
    border-bottom: 3px solid #d4af37;
    padding-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

section h3 {
    color: #2c2c2c;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
}

section ul {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

section ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

section ul li:before {
    content: "—";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: bold;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border-top: 3px solid #d4af37;
}

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

.card h3 {
    color: #2c2c2c;
    margin-bottom: 1rem;
}

footer {
    background: #2c2c2c;
    color: #e8e8e8;
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
    border-top: 3px solid #d4af37;
}

.btn {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: #1a1a1a;
    padding: 0.8rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.hero-image {
    width: 100%;
    max-width: 1200px;
    margin: 2rem auto;
    overflow: hidden;
    background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
    padding: 3rem 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.hero-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.wine-description {
    background: white;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 1rem auto 2rem;
}

.wine-description h3 {
    color: #2c2c2c;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wine-description p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    text-align: justify;
}

.wine-description p strong {
    color: #2c2c2c;
}

.wine-glass-animation {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.with-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.with-button:before {
    top: 0.5rem;
}

.online-shop {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.btn-inline {
    margin-top: 0;
    display: inline-block;
}

.pro-info {
    margin-top: 2rem;
    font-style: italic;
    color: #d4af37;
    font-weight: 600;
    font-size: 1.1rem;
}

.bottle-image {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto 3rem;
    text-align: center;
    padding: 0 2rem 2rem;
}

.bottle-image img {
    max-width: 350px;
    height: auto;
    display: inline-block;
    transform: rotate(30deg);
}

/* Responsive */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    header h1 {
        font-size: 2rem;
    }
    
    section h2 {
        font-size: 1.5rem;
    }
    
    .wine-description {
        padding: 1.5rem;
    }
    
    .hero-image {
        padding: 2rem 1rem;
    }
}