/* Black & White Gothic Theme */
@import url('https://fonts.googleapis.com/css2?family=UnifrakturCook:wght@700&family=Roboto:wght@400;700&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    background: #fff;
    color: #111;
}

h1, h2, h3, .logo-text {
    font-family: 'UnifrakturCook', cursive;
    letter-spacing: 2px;
    color: #111;
    text-shadow: none;
}

/* Navigation */
header {
    background: #fff;
    box-shadow: 0 2px 8px #0002;
    border-bottom: 2px solid #111;
    padding: 0.75rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-image {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    margin-right: 1rem;
    filter: grayscale(1) contrast(1.2);
}

.logo-text {
    color: #111;
    font-family: 'UnifrakturCook', cursive;
    font-size: 2rem;
    letter-spacing: 2px;
    text-shadow: none;
    display: none;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    color: #111;
    text-decoration: none;
    font-family: 'UnifrakturCook', cursive;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border-radius: 3px;
    transition: background 0.3s, color 0.3s, box-shadow 0.3s;
}

.nav-links a:hover {
    background: #111;
    color: #fff;
    box-shadow: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #111;
    box-shadow: 0 8px 32px #0002;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px #0002;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #111;
    text-shadow: none;
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #111;
    text-shadow: none;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #111;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-family: 'UnifrakturCook', cursive;
    font-size: 1.2rem;
    letter-spacing: 1px;
    box-shadow: none;
    transition: background 0.3s, color 0.3s;
}

.cta-button:hover {
    background: #fff;
    color: #111;
    border: 1px solid #111;
}

/* Beers Section */
.beers {
    padding: 5rem 2rem;
    background: #fff;
    box-shadow: 0 0 32px #0002 inset;
}

.beers h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111;
    text-shadow: none;
}

.beer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.beer-card {
    background: #fff;
    border: 1px solid #111;
    border-radius: 10px;
    box-shadow: 0 0 16px #0002;
    padding: 1.5rem;
    color: #111;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}
.beer-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 0 32px #0004, 0 0 16px #0002;
    border-color: #111;
}
.beer-image {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 0 12px #0002;
    filter: grayscale(1) contrast(1.2);
}
.beer-info h3 {
    font-family: 'UnifrakturCook', cursive;
    color: #111;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    text-shadow: none;
}
.beer-style, .beer-abv {
    color: #111;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}
.beer-description {
    color: #111;
    font-size: 1.1rem;
    margin-top: 0.5rem;
}

/* About Section */
.about {
    padding: 5rem 2rem;
    background: #fff;
    box-shadow: 0 0 32px #0002 inset;
}

.about h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111;
    text-shadow: none;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    color: #111;
    text-shadow: none;
}

/* Contact Section */
.contact {
    padding: 5rem 2rem;
    background: #fff;
    box-shadow: 0 0 32px #0002 inset;
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #111;
    text-shadow: none;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #111;
    font-family: 'UnifrakturCook', cursive;
    text-shadow: none;
}

.contact-info p {
    margin-bottom: 1.5rem;
    color: #111;
    text-shadow: none;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-icon {
    color: #111;
    font-size: 1.5rem;
    transition: color 0.3s, text-shadow 0.3s;
    text-shadow: none;
}

.social-icon:hover {
    color: #fff;
    background: #111;
    border-radius: 50%;
}

/* Footer */
footer {
    background: #fff;
    color: #111;
    text-align: center;
    padding: 2rem;
    border-top: 2px solid #111;
    font-family: 'UnifrakturCook', cursive;
    letter-spacing: 1px;
    text-shadow: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
} 