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

:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --steel: #4a4a4a;
    --amber: #c17f2a;
    --gold: #d4a84b;
    --cream: #f5f0e5;
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--black);
    color: var(--cream);
    line-height: 1.7;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
    background: linear-gradient(to bottom, var(--black), transparent);
}

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    color: var(--cream);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--amber);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    background: linear-gradient(135deg, var(--black), var(--charcoal));
}

.hero-overlay {
    position: absolute;
    inset: 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='%23c17f2a' fill-opacity='0.02'%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");
}

.hero-content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.tagline {
    font-family: 'Anton', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 3px;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Anton', sans-serif;
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    color: rgba(245, 240, 229, 0.7);
    margin-bottom: 2rem;
    font-weight: 300;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--amber);
    color: var(--black);
    text-decoration: none;
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--gold);
}

.hero-bottle {
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.bottle {
    width: 100px;
}

.bottle-neck {
    width: 30px;
    height: 40px;
    background: linear-gradient(135deg, #333, #1a1a1a);
    margin: 0 auto;
    border-radius: 5px 5px 0 0;
}

.bottle-body {
    width: 100px;
    height: 250px;
    background: linear-gradient(135deg, rgba(193, 127, 42, 0.3), rgba(193, 127, 42, 0.1));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.label {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 3px;
    color: var(--amber);
}

/* Spirits Section */
.spirits-section {
    padding: 6rem 5%;
    background-color: var(--charcoal);
}

.spirits-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 4rem;
    letter-spacing: 3px;
}

.spirits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.spirit-card {
    background-color: var(--black);
    overflow: hidden;
    transition: transform 0.3s;
}

.spirit-card:hover {
    transform: translateY(-8px);
}

.spirit-image {
    height: 250px;
}

.bourbon { background: linear-gradient(145deg, var(--amber), #a06a1e); }
.rye { background: linear-gradient(145deg, #8b5a1e, #6b4a0e); }
.single { background: linear-gradient(145deg, var(--gold), var(--amber)); }

.spirit-info {
    padding: 2rem;
}

.type {
    font-family: 'Anton', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--amber);
}

.spirit-info h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.3rem;
    margin: 0.5rem 0;
}

.spirit-info p {
    font-size: 0.9rem;
    color: rgba(245, 240, 229, 0.6);
    margin-bottom: 1rem;
    font-weight: 300;
}

.spirit-details {
    display: flex;
    justify-content: space-between;
    font-family: 'Anton', sans-serif;
    color: var(--amber);
}

/* Distillery Section */
.distillery-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.distillery-content {
    padding: 4rem;
    background-color: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.distillery-content h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    letter-spacing: 2px;
}

.distillery-content p {
    color: rgba(245, 240, 229, 0.7);
    margin-bottom: 1rem;
    font-weight: 300;
}

.distillery-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: var(--amber);
}

.stat-label {
    font-size: 0.85rem;
    color: rgba(245, 240, 229, 0.6);
}

.distillery-image .image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--steel), var(--charcoal));
}

/* Visit Section */
.visit-section {
    padding: 5rem;
    text-align: center;
    background-color: var(--amber);
    color: var(--black);
}

.visit-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.visit-section p {
    margin-bottom: 2rem;
}

.visit-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hours {
    display: flex;
    gap: 2rem;
    font-size: 0.9rem;
}

.visit-section .cta-button {
    background-color: var(--black);
    color: var(--cream);
}

.visit-section .cta-button:hover {
    background-color: var(--charcoal);
}

/* Footer */
footer {
    padding: 3rem 5%;
    text-align: center;
    background-color: var(--black);
}

.footer-logo {
    font-family: 'Anton', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

footer p {
    font-size: 0.8rem;
    color: rgba(245, 240, 229, 0.5);
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 968px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

    .distillery-section {
        grid-template-columns: 1fr;
    }

    .distillery-image {
        height: 300px;
    }

    .hours {
        flex-direction: column;
        gap: 0.5rem;
    }
}
