/* Basic Reset & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif; /* Default sans-serif font */
    line-height: 1.7;
    color: #e0e0e0; /* Light grey text for dark backgrounds */
    background-color: #1a1a1a; /* Very dark grey, near black */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
}

h1, h2, h3, .logo {
    font-family: 'Lobster', cursive; /* Stylized font for "Aardvark" */
    color: #D7242A; /* Primary Red */
    margin-bottom: 15px;
}

h2 { /* Section headings */
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 40px;
    color: #fff; /* White for section titles on dark bg */
}
h2.light-text { color: #444; } /* For sections with light background */


h3 {
    font-size: 1.8rem;
    color: #D7242A;
}

p {
    margin-bottom: 15px;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #c7c7c7; /* Lighter grey for paragraph text */
}

a {
    text-decoration: none;
    color: #D7242A; /* Red for links */
    transition: color 0.3s ease;
}
a:hover {
    color: #ff555c; /* Lighter red on hover */
}

/* Header */
header {
    background-color: rgba(20, 20, 20, 0.85); /* Semi-transparent dark */
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    position: sticky;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(5px); /* Frosted glass effect */
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2.2rem; /* Larger for brand name */
    font-weight: normal; /* Lobster is already bold */
    margin-bottom: 0; /* Override default h1 margin */
}

.logo img {
    max-height: 100px; /* Adjust as needed */
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #f0f0f0; /* White nav links */
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

nav ul li a:hover,
nav ul li a.cta-nav:hover {
    color: #D7242A; /* Red on hover */
}

nav ul li a.cta-nav {
    background-color: #D7242A;
    color: #fff;
    padding: 10px 18px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}
nav ul li a.cta-nav:hover {
    background-color: #fff;
    color: #D7242A;
}


/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    text-align: left;
    background: #121212 url('./Images/subtle-star-background.png') repeat; /* Optional subtle star pattern */
    /* Or a dark gradient: background: linear-gradient(to bottom, #1a1a1a, #0a0a0a); */
    position: relative; /* For potential pseudo-elements or animations */
}
.hero-content-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex-basis: 55%;
}

.hero h1 {
    font-size: 4.5rem; /* Large "Aardvark" */
    margin-bottom: 5px;
    line-height: 1.1;
}
.hero h2 { /* "An Adventure in Every Sip" */
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 400;
    color: #e0e0e0; /* White or light grey */
    margin-bottom: 25px;
    text-align: left;
}

.hero .subtitle {
    font-size: 1.1rem;
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
    color: #b0b0b0; /* Slightly darker grey for subtitle */
    margin-bottom: 35px;
    max-width: 500px;
}

.hero-image-container {
    flex-basis: 40%;
    text-align: center; /* Center the image if it's smaller than container */
}
.bottle-image {
    max-width: 100%;
    max-height: 70vh;
    height: auto;
    filter: drop-shadow(0 10px 25px rgba(0,0,0,0.4)); /* Nice shadow for the bottle */
    animation: floatBottle 6s ease-in-out infinite;
}

@keyframes floatBottle {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}


.cta-button {
    display: inline-block;
    background-color: #D7242A; /* Red CTA */
    color: #ffffff;
    padding: 15px 35px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px; /* Pill shape */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(215, 36, 42, 0.3);
}

.cta-button:hover {
    background-color: #B21E22; /* Darker red */
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(215, 36, 42, 0.5);
}

/* Common Section Styling */
.about-section, .gin-section, .cocktails-section, .cta-final-section {
    padding: 80px 0;
}

/* About Section */
.about-section {
    background-color: #222; /* Slightly lighter dark for contrast */
}
.about-section h2 { color: #fff; }
.about-content {
    display: flex;
    align-items: center;
    gap: 40px;
}
.about-text { flex: 2; }
.about-image-placeholder {
    flex: 1;
    text-align: center;
    /* background-color: #333;
    height: 250px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #888; */
}
.about-image-placeholder img {
    max-width: 100%;
    opacity: 0.8;
}


/* Gin Section */
.gin-section {
    background-color: #1a1a1a; /* Back to main dark */
}
.gin-details {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 30px;
}
.gin-image {
    flex: 1;
    text-align: center;
}
.bottle-detail-image {
    max-width: 70%;
    max-height: 500px;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}
.gin-text {
    flex: 1.5;
}
.gin-text ul {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
    margin-bottom: 30px;
}
.gin-text ul li {
    font-family: 'Roboto', sans-serif;
    margin-bottom: 8px;
    color: #c7c7c7;
}
.gin-text ul li strong {
    color: #e0e0e0;
    min-width: 80px;
    display: inline-block;
}
.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #D7242A;
    border: 2px solid #D7242A;
    padding: 12px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-transform: uppercase;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.cta-button-secondary:hover {
    background-color: #D7242A;
    color: #fff;
}

/* Cocktails Section */
.cocktails-section {
    background-color: #222; /* Alternate dark shade */
}
.cocktails-section h2 { color: #fff; }
.cocktails-section > .container > p { /* Intro paragraph */
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
    font-size: 1.1rem;
}
.cocktails-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.cocktail-item {
    background: #2a2a2a; /* Darker card */
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.cocktail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}
.cocktail-image-placeholder {
    height: 180px;
    background-color: #3f3f3f;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-style: italic;
    color: #888;
    margin-bottom: 20px;
}
.cocktail-item img { /* If using actual images */
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}
.cocktail-item h3 {
    font-size: 1.5rem; /* Lobster font for cocktail names */
    margin-bottom: 10px;
}

/* Call to Action Section (Final) */
.cta-final-section {
    background-color: #D7242A; /* Solid Red background */
    color: #fff;
    text-align: center;
    padding: 70px 0;
}
.cta-final-section h2 {
    color: #fff; /* White heading on red background */
    font-size: 2.5rem;
}
.cta-final-section p {
    color: #f0f0f0; /* Lighter text on red */
    font-size: 1.2rem;
    margin-bottom: 30px;
}
.cta-final-section .cta-button {
    background-color: #fff;
    color: #D7242A; /* Red text on white button */
    box-shadow: 0 4px 15px rgba(0,0,0, 0.2);
}
.cta-final-section .cta-button:hover {
    background-color: #f0f0f0; /* Slightly off-white hover */
    color: #B21E22;
    box-shadow: 0 6px 20px rgba(0,0,0, 0.3);
}
.age-gate-reminder {
    font-size: 0.9rem !important;
    margin-top: 20px !important;
    color: rgba(255,255,255,0.7) !important;
}


/* Footer */
footer {
    background-color: #0a0a0a; /* Darkest background for footer */
    color: #888;
    text-align: center;
    padding: 30px 0;
    font-family: 'Roboto', sans-serif;
    font-size: 0.9rem;
}
footer .container { padding: 0 20px; } /* Reduce padding for footer container */
footer p {
    margin-bottom: 10px;
    color: #777;
}
.social-links a {
    color: #aaa;
    margin: 0 10px;
    font-weight: bold;
}
.social-links a:hover {
    color: #D7242A;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero h1 { font-size: 3.5rem; }
    .hero h2 { font-size: 1.5rem; }
    .hero .subtitle { font-size: 1rem; }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 10px;
    }
    nav ul {
        justify-content: center;
        flex-wrap: wrap; /* Allow nav items to wrap */
        padding-top: 10px;
    }
    nav ul li { margin: 5px 10px; }


    .hero-content-area {
        flex-direction: column;
        text-align: center;
    }
    .hero-text {
        order: 2; /* Text below image on mobile */
        margin-top: 30px;
    }
    .hero-image-container {
        order: 1; /* Image above text on mobile */
    }
    .hero h1 { font-size: 3rem; text-align: center;}
    .hero h2 { text-align: center; }
    .hero .subtitle { max-width: 100%; margin-left: auto; margin-right: auto; }
    .bottle-image { max-height: 50vh; }


    .about-content, .gin-details {
        flex-direction: column;
        text-align: center;
    }
    .about-image-placeholder, .gin-image {
        margin-bottom: 30px;
    }
    .bottle-detail-image { max-width: 50%; }

    h2 { font-size: 2.2rem; }
}

@media (max-width: 480px) {
    .logo { font-size: 1.8rem; }
    nav ul li a { font-size: 0.8rem; }
    nav ul li a.cta-nav { padding: 4px 12px; }

    .hero h1 { font-size: 2.5rem; }
    .hero h2 { font-size: 1.3rem; }
    .cta-button { padding: 12px 25px; font-size: 1rem; }

    .cocktails-grid {
        grid-template-columns: 1fr; /* Stack cocktails on very small screens */
    }
}