* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B2635;
    --secondary-color: #C4A962;
    --dark-bg: #3d1f2f;
    --light-bg: #f8f5f0;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --accent: #d4af37;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(45, 21, 32, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--text-light);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><path d="M50 10 L50 90 M10 50 L90 50" stroke="rgba(196,169,98,0.1)" stroke-width="1"/></svg>');
    opacity: 0.3;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.4) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--text-light);
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: 8px;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    letter-spacing: 3px;
    opacity: 0.9;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196,169,98,0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 2px;
    height: 40px;
    background: var(--secondary-color);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0%, 100% { opacity: 0; transform: translateY(0); }
    50% { opacity: 1; transform: translateY(10px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 8rem 0;
    background: var(--light-bg);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--secondary-color);
}

.about-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 300px;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.image-placeholder svg {
    width: 100%;
    height: auto;
}

/* Video Showcase Section */
.video-showcase {
    padding: 8rem 0;
    background: linear-gradient(135deg, #2d1520 0%, #3d1f2f 100%);
    color: var(--text-light);
}

.video-showcase .section-title {
    color: var(--secondary-color);
    text-align: center;
}

.video-showcase .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.video-showcase .section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.9;
}

.video-container {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    border: 3px solid rgba(196, 169, 98, 0.4);
    transition: all 0.3s ease;
    background: #000;
}

.video-container:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 35px 90px rgba(196, 169, 98, 0.4);
    border-color: var(--secondary-color);
}

.showcase-video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
    border-radius: 18px;
}

@media (max-width: 768px) {
    .video-container {
        max-width: 90%;
        margin: 0 auto;
    }
}

/* Wine Collection */
.wines {
    padding: 8rem 0;
    background: #1a1a1a;
    color: var(--text-light);
}

.wines .section-title {
    color: var(--secondary-color);
    text-align: center;
}

.wines .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    opacity: 0.8;
}

.wine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.wine-card {
    background: rgba(255,255,255,0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(196,169,98,0.2);
}

.wine-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(196,169,98,0.2);
    border-color: var(--secondary-color);
}

.wine-image {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.wine-bottle {
    width: 60px;
    height: 180px;
    border-radius: 5px 5px 10px 10px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.wine-bottle::before {
    content: '';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: inherit;
    border-radius: 3px 3px 0 0;
}

.wine-bottle.red {
    background: linear-gradient(180deg, #8B2635 0%, #5a1623 100%);
}

.wine-bottle.white {
    background: linear-gradient(180deg, #f4e4c1 0%, #d4c5a0 100%);
}

.wine-bottle.rose {
    background: linear-gradient(180deg, #ffc0cb 0%, #ff8fa3 100%);
}

.wine-bottle.sparkling {
    background: linear-gradient(180deg, #f0e68c 0%, #daa520 100%);
}

.wine-bottle.beer {
    background: linear-gradient(180deg, #f5deb3 0%, #d2691e 100%);
}

.wine-bottle.whiskey {
    background: linear-gradient(180deg, #cd853f 0%, #8b4513 100%);
}

.wine-bottle.vodka {
    background: linear-gradient(180deg, #e8e8e8 0%, #b0b0b0 100%);
}

.wine-info h3 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.wine-info p {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.wine-type {
    display: block;
    font-size: 0.9rem;
    color: var(--accent);
    font-style: italic;
}

/* Experience Section */
.experience {
    padding: 8rem 0;
    background: var(--light-bg);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.experience-item {
    text-align: center;
    padding: 2rem;
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.experience-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.experience-item p {
    color: #666;
    line-height: 1.8;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: #1a1a1a;
    color: var(--text-light);
}

.contact .section-title {
    color: var(--secondary-color);
    text-align: center;
}

.contact .section-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--secondary-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(196,169,98,0.3);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    background: rgba(255,255,255,0.08);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.5);
}

.contact-form button {
    cursor: pointer;
    border: none;
    font-family: 'Montserrat', sans-serif;
}

/* Footer */
.footer {
    background: #2d1520;
    padding: 3rem 0;
    text-align: center;
    color: rgba(255,255,255,0.7);
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.footer-logo img {
    height: 100px;
    width: auto;
    opacity: 0.9;
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(45, 21, 32, 0.98);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .wine-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
        letter-spacing: 4px;
    }

    .logo {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }
}
