body {
    text-align: center;
    background-color: #000;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

.wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    max-width: 90vw;
    padding-top: 10px;
}

.logo-container img {
    max-width: 100%;
    max-height: 60vh;
    object-fit: contain;
}

.bar-info h2,
.bar-info h3,
.bar-info p {
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    color: #fff;
    margin: 10px 0;
}

.bar-info h3 {
    margin-top: 30px;
    margin-bottom: 10px;
}

.bar-info a {
    color: #4285F4;
    text-decoration: none;
    font-weight: bold;
}

.bar-info a:hover {
    text-decoration: underline;
}

.hours {
    margin-bottom: 20px;
}

.hours p {
    text-align: center;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 5px;
}

.hours p .time {
    white-space: nowrap;
    display: inline-block;
    margin-left: 5px;
}

.get-directions {
    padding: 12px 24px;
    background-color: #4285F4;
    color: #fff !important;
    font-size: 1.2rem;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none !important;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.2s ease-in-out;
}

.get-directions:hover {
    background-color: #357ae8;
}

.follow-us {
    text-align: center;
    margin-top: 15px;
}

.follow-us h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 8px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.social-links a {
    font-size: 2.2rem;
    display: flex;
    align-items: center;
}

.social-links a[aria-label="Facebook"] {
    color: #1877F2;
}

.social-links a[aria-label="Instagram"] {
    background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.social-links a:hover {
    transform: scale(1.15);
}

/* MENU STYLING */
.menu {
    text-align: center;
    margin: 40px 0;
    padding: 20px;
    color: #fff;
}

.menu h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.menu-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.menu-column {
    flex: 1;
    max-width: 400px;
    text-align: left;
}

.menu-column h3 {
    font-size: 1.8rem;
    border-bottom: 2px solid #fff;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

.menu-column ul {
    list-style: none;
    padding: 0;
}

.menu-column ul li {
    font-size: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
    padding: 5px 0;
    border-bottom: 1px dashed #666;
}

.menu-column ul li strong {
    font-weight: bold;
}

.menu-column ul li span {
    font-size: 1.4rem;
    color: #ffd700;
}

@media (max-width: 768px) {
    .menu-container {
        flex-direction: column;
        align-items: center;
    }

    .menu-column {
        max-width: 90%;
        text-align: center;
    }

    .menu-column ul li {
        flex-direction: column;
        text-align: center;
    }
}
