:root {
    --navy: #003366;
    --blue: #0071bc;
    --gold: #ffcc00;
    --white: #ffffff;
    --gray: #f4f4f4;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body { font-family: 'Open Sans', sans-serif; color: #333; line-height: 1.6; }

/* Navbar */
.navbar {
    display: flex; 
    justify-content: space-between; 
    align-items: center;
    padding: 20px 5%;
    background: var(--white);
    position: sticky; top: 0; z-index: 100;
    border-bottom: 4px solid var(--navy);
}

.logo { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; color: var(--navy); font-weight: 800; }
.logo span { color: var(--gold); }

.nav-links a { text-decoration: none; color: var(--navy); margin-left: 25px; font-weight: 600; }

.btn-nav { background: var(--gold); padding: 8px 20px; border-radius: 4px; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.7)), url('distillery-bg.jpg') center/cover;
    display: flex; align-items: center; justify-content: center; text-align: center; color: white;
}

.hero h1 { font-family: 'Montserrat', sans-serif; font-size: 4rem; margin-bottom: 10px; }
.hero h1 span { color: var(--gold); }
.hero p { max-width: 700px; margin: 20px auto; font-size: 1.2rem; }

/* Buttons */
.btn-gold { background: var(--gold); color: var(--navy); padding: 15px 30px; text-decoration: none; font-weight: 800; border-radius: 4px; display: inline-block; margin-right: 10px; }
.btn-outline { border: 2px solid white; color: white; padding: 13px 30px; text-decoration: none; border-radius: 4px; display: inline-block; }

/* Stats Bar */
.stats-bar {
    background: var(--navy);
    color: var(--gold);
    display: flex; justify-content: space-around;
    padding: 40px 10%;
    text-align: center;
}
.sponsor-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px; /* Space between logos */
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-item img {
    max-width: 180px; /* Limits the width so they don't get too big */
    height: auto;
    filter: grayscale(100%); /* Makes them all uniform gray */
    opacity: 0.7;
    transition: all 0.3s ease;
}

.sponsor-item img:hover {
    filter: grayscale(0%); /* Pops to color on hover */
    opacity: 1;
    transform: scale(1.05); /* Slight grow effect */
}

/* On mobile, make them a bit smaller */
@media (max-width: 600px) {
    .sponsor-item img {
        max-width: 120px;
    }
	.hero {
        height: auto;
        padding: 60px 20px; /* Gives content room to breathe */
    }

    .hero h1 {
        font-size: 2.5rem; /* Shrinks massive text to fit screen width */
    }

    .hero h2 {
        font-size: 1.2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column; /* Stacks buttons so they don't squash */
        gap: 15px;
    }

    .btn-gold, .btn-outline {
        margin-right: 0; /* Removes the side margin from desktop */
        width: 100%;    /* Makes buttons full-width for easier tapping */
    }
	.stats-bar {
        flex-direction: column; /* Stacks the 3 stats vertically */
        gap: 30px;
        padding: 40px 5%;
    }

    .stat h3 {
        font-size: 2rem;
    }
	.hero-logo {
    max-width: 150px; /* Limits size on all screens */
    height: auto;
    margin-bottom: 20px;
	}
	.navbar {
        flex-direction: column; /* Stacks logo and links */
        gap: 15px;
        padding: 15px;
        text-align: center;
    }

    .nav-links {
        display: flex;
        flex-wrap: wrap; /* Allows links to wrap to a second line if needed */
        justify-content: center;
        gap: 10px;
    }

    .nav-links a {
        margin-left: 0; /* Removes the 25px desktop margin */
        font-size: 0.9rem;
    }
}
.stat h3 { font-size: 2.5rem; font-family: 'Montserrat'; }

/* Writers Grid */
.section-padding { padding: 80px 10%; }
.section-title { text-align: center; color: var(--navy); margin-bottom: 50px; font-size: 2.5rem; }

.writer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
.writer-card { background: var(--white); text-align: center; padding-bottom: 15px; border-bottom: 3px solid var(--gold); }
.writer-img { 
    height: auto; /* Let the image dictate the height */
    min-height: 400px; 
    background-size: contain; /* Shows the FULL image */
    background-repeat: no-repeat;
    background-position: center; 
	}