/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f5f5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #2c2c2c;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.logo {
    max-width: 300px;
    height: auto;
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s;
    font-size: 16px;
}

nav a:hover {
    background-color: #555;
}

/* Main Content */
main {
    padding: 40px 0;
    min-height: calc(100vh - 200px);
}

h1 {
    font-size: 2.5em;
    color: #8B4513;
    margin-bottom: 30px;
    text-align: center;
}

h2 {
    font-size: 1.8em;
    color: #8B4513;
    margin: 40px 0 20px 0;
    padding-bottom: 10px;
    border-bottom: 2px solid #8B4513;
}

/* Announcement Section */
.announcement {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.announcement h1 {
    color: #8B4513;
    font-size: 2.5em;
    margin-bottom: 20px;
}

.announcement .lead {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #333;
}

.announcement p {
    margin: 10px 0;
    font-size: 1.1em;
}

/* Hours Section */
.hours {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.hours h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 20px;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    text-align: center;
}

.hours-grid div {
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
}

.hours-grid strong {
    display: block;
    font-size: 1.1em;
    color: #8B4513;
    margin-bottom: 10px;
}

/* Menu Links */
.menu-links {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.menu-links h2 {
    text-align: center;
    border-bottom: none;
    margin-bottom: 20px;
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.menu-link {
    display: block;
    padding: 20px;
    background-color: #8B4513;
    color: #fff;
    text-decoration: none;
    text-align: center;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1.1em;
    font-weight: bold;
}

.menu-link:hover {
    background-color: #A0522D;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.contact h2 {
    border-bottom: none;
    margin-bottom: 20px;
}

.phone {
    font-size: 1.3em;
    margin: 15px 0;
}

.phone a {
    color: #8B4513;
    text-decoration: none;
}

.phone a:hover {
    text-decoration: underline;
}

.address {
    font-size: 1.1em;
    color: #666;
    margin-top: 15px;
}

/* Thanks Section */
.thanks {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    font-size: 1.2em;
}

.signature {
    font-style: italic;
    color: #8B4513;
    margin-top: 10px;
}

/* Menu Page Styles */
.menu-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.section-note {
    font-style: italic;
    color: #666;
    margin-bottom: 20px;
    padding: 10px;
    background-color: #f9f9f9;
    border-left: 3px solid #8B4513;
}

.menu-item {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e0e0e0;
}

.menu-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.item-name {
    font-weight: bold;
    font-size: 1.2em;
    color: #333;
}

.item-price {
    font-weight: bold;
    color: #8B4513;
    font-size: 1.1em;
}

.item-description {
    color: #666;
    line-height: 1.6;
}

/* Kids Menu Styles */
.sides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.sides-grid div {
    padding: 15px;
    background-color: #f9f9f9;
    border-radius: 5px;
    text-align: center;
}

/* Beer List Styles */
.beer-section {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.beer-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e0e0e0;
}

.beer-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.beer-item.special {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border: 2px dashed #8B4513;
}

.beer-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 8px;
    flex-wrap: wrap;
    gap: 10px;
}

.beer-name {
    font-weight: bold;
    font-size: 1.1em;
    color: #333;
}

.beer-price {
    font-weight: bold;
    color: #8B4513;
}

.beer-info {
    color: #666;
    font-size: 0.95em;
    line-height: 1.5;
}

.beer-footer {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Menu Footer */
.menu-footer {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    margin-top: 30px;
}

.menu-footer p {
    margin: 10px 0;
}

.disclaimer {
    font-size: 0.9em;
    color: #999;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #2c2c2c;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav a {
        display: block;
        width: 100%;
        text-align: center;
    }

    .menu-header,
    .beer-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .sides-grid {
        grid-template-columns: 1fr;
    }

    .logo {
        max-width: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    main {
        padding: 20px 0;
    }

    .announcement,
    .hours,
    .menu-links,
    .contact,
    .thanks,
    .menu-section,
    .beer-section {
        padding: 20px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.3em;
    }
}

