/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: white;
    padding: 40px 0;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.logo img {
    max-width: 150px;
    height: auto;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.subtitle {
    color: #7f8c8d;
    font-size: 1.2em;
}

/* Intro Section */
.intro {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

/* Brewery Grid */
.brewery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 60px;
}

.brewery-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border-left: 4px solid #3498db;
}

.brewery-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.brewery-card h2 {
    margin-bottom: 12px;
    font-size: 1.4em;
}

.brewery-card h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.brewery-card h2 a:hover {
    color: #3498db;
}

.city {
    color: #7f8c8d;
    font-size: 0.95em;
    margin-bottom: 8px;
}

.type {
    color: #95a5a6;
    font-size: 0.85em;
    text-transform: capitalize;
    margin-bottom: 12px;
}

.external {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-size: 0.9em;
    margin-top: 10px;
}

.external:hover {
    color: #2980b9;
}

/* Brewery Detail Page */
.brewery-header {
    background: white;
    padding: 20px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin-bottom: 30px;
}

.brewery-header .container {
    max-width: 800px;
}

.back-link {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: #2980b9;
}

.brewery-detail {
    background: white;
    padding: 40px;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.brewery-detail h1 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.brewery-type {
    color: #7f8c8d;
    font-size: 1.1em;
    text-transform: capitalize;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #ecf0f1;
}

.brewery-detail section {
    margin: 30px 0;
}

.brewery-detail h2 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #34495e;
}

address {
    font-style: normal;
    line-height: 1.8;
    color: #555;
}

.phone, .website {
    margin-top: 15px;
}

.phone a, .website a {
    color: #3498db;
    text-decoration: none;
}

.phone a:hover, .website a:hover {
    text-decoration: underline;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background: #3498db;
    color: white !important;
    text-decoration: none;
    border-radius: 5px;
    transition: background 0.3s ease;
    font-weight: 500;
}

.btn:hover {
    background: #2980b9;
}

.btn-secondary {
    background: #3498db;
}

.btn-secondary:hover {
    background: #7f8c8d;
}

/* Footer */
footer {
    background: #2c3e50;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 60px;
}

footer p {
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .brewery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .brewery-detail {
        padding: 25px;
    }
    
    .brewery-detail h1 {
        font-size: 1.8em;
    }
}
/* Navigation */
.main-nav {
    margin-bottom: 30px;
    text-align: center;
}

.main-nav a {
    display: inline-block;
    margin: 0 15px;
    padding: 8px 16px;
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.active {
    color: #3498db;
}

/* Content Pages (About & Contact) */
.content-page {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto 40px;
}

.content-page section {
    margin-bottom: 40px;
}

.content-page h2 {
    font-size: 1.8em;
    margin-bottom: 15px;
    color: #2c3e50;
}

.content-page h3 {
    font-size: 1.3em;
    margin-bottom: 10px;
    color: #34495e;
}

.content-page p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-page ul {
    margin-left: 30px;
    margin-bottom: 15px;
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

/* Features Grid */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 25px;
}

.feature {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.feature h3 {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.feature p {
    font-size: 0.95em;
    color: #555;
    margin: 0;
}

/* CTA Section */
.cta-section {
    text-align: center;
    padding: 30px;
    background: #ecf0f1;
    border-radius: 8px;
}

.cta-section h2 {
    margin-bottom: 20px;
}

/* Contact Page */
.contact-intro {
    text-align: center;
    font-size: 1.2em;
    color: #555;
    margin-bottom: 40px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

/* Contact Form */
.contact-form {
    max-width: 600px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

/* Contact Info Sidebar */
.contact-info section {
    margin-bottom: 30px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 1.3em;
    margin-bottom: 15px;
}

.contact-links {
    list-style: none;
    margin-left: 0;
}

.contact-links li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.contact-links a {
    color: #3498db;
    text-decoration: none;
}

.contact-links a:hover {
    text-decoration: underline;
}

/* Footer Navigation */
.footer-nav {
    margin-bottom: 15px;
}

.footer-nav a {
    color: #1255e5;
    text-decoration: none;
    margin: 0 15px;
    font-size: 0.9em;
}

.footer-nav a:hover {
    color: white;
}

/* Responsive Design for Contact Page */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .content-page {
        padding: 25px;
    }
    
    .features {
        grid-template-columns: 1fr;
    }
    
    .main-nav a {
        display: block;
        margin: 10px 0;
    }
}
/* Promo Banner */
.promo-banner {
    background: #f39c12;
    color: white;
    text-align: center;
    padding: 10px 20px;
    font-weight: 500;
    font-size: 0.95em;
}

/* Blog Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.blog-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.blog-card h2 {
    font-size: 1.4em;
    margin-bottom: 10px;
}

.blog-card h2 a {
    color: #2c3e50;
    text-decoration: none;
}

.blog-card h2 a:hover {
    color: #3498db;
}

.blog-meta {
    color: #7f8c8d;
    font-size: 0.9em;
    margin-bottom: 12px;
}

.blog-card p {
    margin-bottom: 15px;
    color: #555;
}

.read-more {
    color: #3498db;
    text-decoration: none;
    font-weight: 500;
}

.read-more:hover {
    text-decoration: underline;
}

/* Neighborhoods Grid */
.neighborhoods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.neighborhood-card {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.neighborhood-card:hover {
    transform: translateY(-5px);
}

.neighborhood-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
}

.neighborhood-card h3 {
    font-size: 1.2em;
    margin-bottom: 8px;
}

.neighborhood-card ul {
    list-style: none;
    margin: 15px 0 0 0;
    padding: 0;
}

.neighborhood-card li {
    margin-bottom: 10px;
    padding-left: 0;
}

.neighborhood-card li a {
    color: #3498db;
    text-decoration: none;
}

.neighborhood-card li a:hover {
    text-decoration: underline;
}

.breadcrumb {
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #3498db;
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .blog-grid,
    .neighborhoods-grid {
        grid-template-columns: 1fr;
    }
}