/* style.css - Inspired by a more classic/sophisticated bar aesthetic */

/* --- Root Variables (Optional, but good for consistency) --- */
:root {
    --primary-bg: #1a1a1a; /* Very dark grey / soft black */
    --secondary-bg: #2a2a2a; /* Slightly lighter dark grey for cards/sections */
    --text-color: #e0e0e0;  /* Light grey for readability on dark backgrounds */
    --accent-gold: #c8a464; /* A muted, classic gold */
    --accent-gold-darker: #b08f51;
    --border-color: #444;
    --heading-font: 'Georgia', 'Times New Roman', Times, serif; /* Classic serif for headings */
    --body-font: 'Helvetica Neue', Helvetica, Arial, sans-serif; /* Clean sans-serif for body */
}

body {
    font-family: var(--body-font);
    background-color: var(--primary-bg);
    color: var(--text-color);
    line-height: 1.7;
    margin: 0;
    padding: 0;
}

/* --- Navigation Bar --- */
.navbar {
    background-color: rgba(15, 15, 15, 0.85); /* Slightly transparent very dark */
    backdrop-filter: blur(5px); /* Frosted glass effect for modern browsers */
    border-bottom: 1px solid var(--border-color);
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.navbar-brand img {
    max-height: 40px; /* Slightly reduced for better mobile fit */
    margin-right: 10px;
    filter: drop-shadow(0 0 5px rgba(200, 164, 100, 0.3)); /* Subtle glow for logo */
    vertical-align: middle;
}

.navbar-brand {
    font-family: var(--heading-font);
    font-size: 1.25rem;
    color: #fff !important;
    font-weight: bold;
    display: flex;
    align-items: center;
    flex-shrink: 1;
    min-width: 0;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
}

.navbar-brand:hover {
    color: var(--accent-gold) !important;
}

.nav-link {
    color: #ccc !important;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    color: var(--accent-gold) !important;
}

.navbar-toggler {
    border-color: var(--border-color);
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(200, 164, 100, 0.7)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}


/* --- Main Header / Hero --- */
header.page-header-main {
    background: var(--secondary-bg) url('your-subtle-background-texture.png') repeat; /* Optional: subtle texture */
    /* Or a dark, moody image: */
    /* background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('your-bar-interior-photo.jpg') no-repeat center center; */
    /* background-size: cover; */
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('photos/inside.jpg') no-repeat center center;
    background-size: cover;
    color: white;
    padding: 60px 20px;
    text-align: center;
    margin-bottom: 0; /* Remove bottom margin if using full-width sections */
    border-bottom: 3px solid var(--accent-gold);
}

.main-header-logo {
    max-width: 130px;
    margin-bottom: 20px;
    border-radius: 50%; /* If logo is suitable for circular, otherwise remove/adjust */
    border: 3px solid var(--accent-gold);
    box-shadow: 0 0 15px rgba(200, 164, 100, 0.5);
}

header.page-header-main h1 {
    font-family: var(--heading-font);
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
    margin-bottom: 0.5rem;
}

header.page-header-main .lead {
    font-size: 1.25rem;
    color: #ddd; /* Lighter than main text */
    margin-bottom: 0;
}

/* --- Sections --- */
.section {
    padding: 60px 0; /* More vertical spacing */
    /* background-color: var(--secondary-bg); */ /* Uncomment if you want alternating section backgrounds */
    /* border-bottom: 1px solid var(--border-color); */ /* Subtle separator */
}
/* .section:nth-child(odd) {
    background-color: var(--primary-bg);
} */


.section h2 {
    font-family: var(--heading-font);
    text-align: center;
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 2.5rem;
    color: var(--accent-gold);
    position: relative;
    padding-bottom: 15px;
}
/* Underline effect for headings */
.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    opacity: 0.7;
    margin: 15px auto 0;
}
.section p, .section li {
    color: #bbb; /* Slightly lighter text for paragraphs within sections */
    font-size: 1.05rem;
}


/* --- Cards (for hours, contact, testimonials) --- */
.card {
    margin-bottom: 30px;
    background-color: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: 4px; /* Sharper corners than before, more classic */
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: var(--text-color);
}

.card-header {
    background-color: rgba(10,10,10,0.5); /* Darker, slightly transparent */
    color: var(--accent-gold);
    font-family: var(--heading-font);
    font-weight: 600;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--border-color);
    border-top-left-radius: 3px; /* Match card radius */
    border-top-right-radius: 3px;
}
.card-body .card-title {
    font-family: var(--heading-font);
    color: var(--accent-gold);
    font-size: 1.5rem;
}
.card-text {
    color: #ccc;
}
.card a {
    color: var(--accent-gold);
    text-decoration: none;
}
.card a:hover {
    color: var(--accent-gold-darker);
    text-decoration: underline;
}

.hours-list li.list-group-item {
    padding: 10px 15px;
    border-bottom: 1px solid var(--border-color);
    color: #ccc;
    background-color: var(--secondary-bg);
}
.hours-list li strong {
    color: #e0e0e0; /* Slightly brighter for the day */
}
.hours-list li.list-group-item:last-child {
    border-bottom: none;
}
.card-footer {
    background-color: rgba(10,10,10,0.3);
    border-top: 1px solid var(--border-color);
    color: #aaa;
    font-size: 0.9em;
}


/* --- Photo Gallery --- */
#photos {
    background-color: var(--primary-bg); /* Ensure it matches body if sections alternate */
}
.gallery-img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 4px;
    border: 3px solid var(--border-color); /* Frame for images */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    filter: saturate(0.8) brightness(0.9); /* Slightly desaturated and darker for mood */
}

.gallery-img:hover {
    transform: scale(1.03);
    border-color: var(--accent-gold);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
    filter: saturate(1) brightness(1); /* Full color on hover */
}

/* --- Testimonials --- */
.blockquote {
    border-left: 3px solid var(--accent-gold);
    padding-left: 15px;
    font-style: italic;
    color: #ccc;
}
.blockquote-footer {
    color: #aaa;
    font-style: normal;
}
.blockquote-footer::before {
    content: "— ";
}

/* --- Buttons --- */
.btn-primary {
    background-color: var(--accent-gold);
    border-color: var(--accent-gold);
    color: var(--primary-bg); /* Dark text on gold button */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 25px;
    border-radius: 2px; /* Sharp corners */
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}
.btn-primary:hover, .btn-primary:focus {
    background-color: var(--accent-gold-darker);
    border-color: var(--accent-gold-darker);
    color: #000; /* Black text on hover for strong contrast */
    box-shadow: 0 2px 8px rgba(200, 164, 100, 0.3);
}
.btn-primary .icon { /* Make sure icons in buttons adapt color */
    color: var(--primary-bg);
}
.btn-primary:hover .icon {
    color: #000;
}


/* --- Footer --- */
footer {
    background-color: #0a0a0a; /* Even darker for footer */
    color: #888; /* Grey for footer text */
    padding: 40px 0;
    text-align: center;
    margin-top: 0; /* Remove top margin if sections are full width */
    border-top: 3px solid var(--accent-gold);
    font-size: 0.9rem;
}
footer p {
    margin-bottom: 0.5rem;
    color: #888;
}
footer a {
    color: var(--accent-gold);
    text-decoration: none;
}
footer a:hover {
    color: var(--accent-gold-darker);
    text-decoration: underline;
}

/* --- General Utilities --- */
.icon {
    margin-right: 10px;
    color: var(--accent-gold); /* Icons should use accent color */
}

hr { /* Style horizontal rules if you use them between sections */
    border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(200, 164, 100, 0), rgba(200, 164, 100, 0.75), rgba(200, 164, 100, 0));
    margin: 60px 0;
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
    header.page-header-main h1 {
        font-size: 2.2rem;
    }
    .section h2 {
        font-size: 1.8rem;
    }
    .gallery-img {
        height: 200px; /* Adjust gallery image height for smaller screens */
    }
}