/* Custom Variables */
:root {
    --hightower-green: #1a8a44; 
    --bg-black: #0a0a0a;      
    --card-grey: #161616;     
    --text-white: #ffffff;
    --text-dim: #999999;
}
/* Hyperlink Underscore Remove */
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Reset and Base Styles */
html, body, div, span, h1, h2, h3, h4, p, a, img, footer, nav, section {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
}

* { 
    box-sizing: border-box; 
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #0a0a0a; /* Fallback for variable */
    background-color: var(--bg-black);
    color: #ffffff; /* Fallback */
    color: var(--text-white);
    line-height: 1.6;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 8%;
    background-color: #000000;
    background-color: rgba(0, 0, 0, 0.95);
    position: fixed; /* Changed from sticky for better legacy support */
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #1a1a1a;
}

.nav-logo {
    height: 55px; 
    width: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    margin-left: 25px;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero {
    text-align: center;
    padding: 150px 20px 120px 20px; /* Top padding increased due to fixed nav */
    background: #111111;
    background: radial-gradient(circle at center, #111111 0%, #0a0a0a 100%);
    border-bottom: 1px solid var(--hightower-green);
}

.hero-logo {
    max-width: 320px;
    width: 90%;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
}

.hero p {
    font-size: 16px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--hightower-green);
    font-weight: 700;
}

/* Content Sections */
section { 
    padding: 100px 10%; 
    max-width: 1200px; 
    margin: 0 auto; 
}

h2 { 
    font-family: 'Playfair Display', serif; 
    font-size: 40px; 
    margin-bottom: 50px; 
    text-align: center;
}

/* Tap List Grid */
.tap-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.beer-item {
    background-color: var(--card-grey);
    padding: 35px;
    border-radius: 4px;
    flex: 1 1 300px;
    max-width: 380px;
    border-left: 3px solid transparent;
    transition: all 0.3s ease;
}

.beer-item:hover {
    border-left-color: var(--hightower-green);
    background-color: #1d1d1d;
}

.beer-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
}

.abv { 
    color: var(--hightower-green);
    font-size: 14px;
    font-weight: bold;
}

/* Info Section */
.visit-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid #1a1a1a;
    padding-top: 80px;
}

.info-group {
    flex: 1 1 250px;
}

.info-group h4 {
    color: var(--hightower-green);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}

.btn {
    display: inline-block;
    border: 2px solid var(--hightower-green);
    color: var(--hightower-green);
    padding: 12px 28px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn:hover { 
    background-color: var(--hightower-green);
    color: #ffffff;
}

/* Footer */
footer { 
    text-align: center; 
    padding: 80px 20px; 
    font-size: 11px; 
    color: #444444;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links { display: none; } 
    section { padding: 60px 5%; }
    .hero-logo { max-width: 240px; }
}

/* Untappd */

.btn-untappd {
    display: inline-block;
    border: 2px solid var(--hightower-green);
    color: var(--hightower-green);
    padding: 12px 28px;
    text-decoration: none; /* No underline */
    font-weight: bold;
    margin-top: 25px;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-untappd:hover {
    background-color: #ffc000; /* Untappd Yellow */
    border-color: #ffc000;
    color: #000000; /* Dark text for contrast */
}