/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 4rem;
}

.hero-section * {
    color: #FFFFFF !important;
}

.hero-background {
    position: relative;
    height: 80vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(28, 49, 68, 0.7), rgba(28, 49, 68, 0.85));
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.hero-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #FFFFFF !important;
}

.hero-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--color-copper);
    color: var(--color-light-text);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-button:hover {
    background-color: var(--color-amber);
    transform: translateY(-2px);
    color: var(--color-light-text);
    text-decoration: none;
}

/* Featured Section */
.featured-section {
    padding: 5rem 0;
    background-color: white;
}

.featured-whiskies {
    margin-top: 3rem;
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .hero-background {
        height: 70vh;
        min-height: 500px;
    }

    .hero-title {
        font-size: 2.5rem;
        padding: 0 1rem;
    }

    .hero-text {
        font-size: 1.1rem;
        padding: 0 1.5rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

@media only screen and (max-width: 576px) {
    .hero-background {
        height: 60vh;
        min-height: 400px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-text {
        font-size: 1rem;
    }

    .hero-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}
