/* ========== RESET & BASICS ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    background: url("/static/website/images/asphalt.png") no-repeat center center fixed;
    background-size: cover;
    background-color: #222;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    overflow-x: hidden;
}

.site-wrapper {
    position: relative;
    z-index: 2;
}

/* ========== NEON BACKGROUND GLOW ========== */
.background-glow {
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: none; /* remove glow */
    animation: none;
    z-index: 0;
    pointer-events: none;
}

@keyframes backgroundFade {
    0%, 100% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.1) rotate(5deg);
    }
}

/* ========== HEADER ========== */
.site-header {
    background-color: #111111;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 2px solid #444; /* steel edge */
}

.site-header h1 {
    font-family: 'Anton', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    font-size: 4rem;
    color: #a56e42; /* steel gray */
    text-shadow: none; /* removed glow */
}

.site-header p {
    color: #aaa;
    margin-top: 0.5rem;
    font-size: 1.2rem;
}

/* ========== SIDEBAR NAVIGATION ========== */
nav.sidebar {
    background-color: #0f0f0f;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #333;
    box-shadow: none; /* removed glow */
}

nav.sidebar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

nav.sidebar ul li a {
    text-decoration: none;
    color: #124750; /* faded denim blue */
    font-weight: bold;
    font-size: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    border: 1px solid transparent;
    transition: 0.3s ease;
}

nav.sidebar ul li a:hover {
    background-color: #124750;
    color: #1a1a1a;
    border-color: #124750;
    text-shadow: none; /* removed glow */
}

/* ========== MAIN ========== */
.site-main {
    padding: 2rem 1.5rem;
    max-width: 1000px;
    margin: auto;
    position: relative;
}

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #111, #1a1a1a); /* still works */
    padding: 3rem;
    border: 1px solid #333;
    border-radius: 10px;
    text-align: center;
    box-shadow: none; /* removed glow */
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    color: #124750; /* denim blue */
    margin-bottom: 1rem;
    text-shadow: none; /* removed glow */
}

.hero p {
    color: #c0c0c0;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    background-color: #d4af37; /* muted gold / whiskey label */
    color: #111;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: none; /* removed glow */
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #e3c75d;
    box-shadow: none;
}

.bar-photo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;
}

.bar-photo img {
    width: 320px; /* or whatever size looks best */
    max-width: 90%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #333;
    background-color: #111;
    padding: 8px;
}

/* ========== FOOTER ========== */
.site-footer {
    background-color: #111;
    text-align: center;
    padding: 1.5rem 1rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #999;
}

.footer-glow {
    color: #124750; /* match denim tone */
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: none; /* removed glow */
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
    nav.sidebar ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero h2 {
        font-size: 2rem;
    }

    .site-header h1 {
        font-size: 2.5rem;
    }
}

.event-card.special {
    border-left-color: #124750;
    box-shadow: none; /* removed glow */
}

.event-card.special h3 {
    color: #124750;
    text-shadow: none; /* removed glow */
}

/* EVENTS PAGE UPGRADE */

.events-section {
    background-color: rgba(0, 0, 0, 0.6); /* subtle overlay for readability */
    padding: 2rem;
    border-radius: 10px;
    max-width: 900px;
    margin: 2rem auto;
    border: 1px solid #333;
    backdrop-filter: blur(2px); /* optional, remove if you want zero blur */
}

.events-section h2 {
    font-size: 2rem;
    color: #ffd700; /* gold */
    text-align: center;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px #000; /* hard edge for contrast */
}

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

.event-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f); /* asphalt-leather look */
    border: 1px solid #555;
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: none; /* removed glow */
    transition: transform 0.3s ease;
    backdrop-filter: none; /* removed blur */
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 12px #333; /* mild lift */
}

.event-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #124750; /* denim blue */
    text-shadow: none;
}

.event-card h3 span {
    color: #d4af37; /* whiskey gold */
    font-weight: 400;
    margin-left: 0.3rem;
}

.event-card p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1rem;
    line-height: 1.4;
    color: #ddd;
}

/* Special highlight */
.event-card.special {
    background: linear-gradient(135deg, #151515, #2a2a2a);
    border-color: #124750;
    box-shadow: none;
}

.event-card.special p {
    color: #e0e0e0; /* light gray for readability */
}

.event-card.special p a {
    color: #d4af37;
    font-weight: bold;
    text-decoration: underline;
}

.event-list li {
    color: #e0e0e0; /* light gray for better contrast */
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.event-list li strong {
    color: #f0f0f0;
}

.event-list li img.event-thumb {
    margin-top: 0.5rem;
    border-radius: 8px;
}


/* Everyday availability styling */
.everyday-block {
    margin-top: 3rem;
    padding: 2rem;
    border-top: 2px solid #555;
    font-family: 'Open Sans', sans-serif;
}

.everyday-block h3 {
    color: #124750;
    text-shadow: none;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.everyday-block ul {
    list-style: none;
    padding-left: 0;
}

.everyday-block li {
    margin-bottom: 0.75rem;
    color: #ccc;
    font-size: 1rem;
}

.everyday-block li::before {
    color: #d4af37;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

/* ========== GALLERY ========== */
.gallery-page {
    background-color: rgba(20, 20, 20, 0.85);  /* warm black overlay */
    padding: 2rem;
    border-radius: 8px;
    max-width: 1000px;
    margin: 2rem auto;
    border: 1px solid #2c2c2c;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.gallery-page h2 {
    font-size: 2rem;
    color: #e0d6c3;  /* soft warm parchment */
    text-align: center;
    text-shadow: 1px 1px 2px #000;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
}

.gallery-subtext {
    text-align: center;
    color: #aaa;
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px #000;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    padding: 0 1rem;
}

.gallery-grid img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 0 6px #000;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 10px #222;
}

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
    background-color: rgba(20, 20, 20, 0.9); /* dark background w/ slight opacity */
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.contact-page h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #e0d6c3;  /* parchment/tan – soft but warm */
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 2px #000;
}

.contact-details {
    display: flex;
    justify-content: space-around;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.contact-details div h3 {
    color: #d4af37; /* whiskey gold */
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px #000;
}

.contact-details div p {
    color: #d2d2d2;
    font-size: 1.05rem;
    line-height: 1.4;
    text-shadow: 1px 1px 1px #000;
}

.map-card {
    background-color: #111;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 0 6px #222;
}

.map-card h3 {
    color: #124750;
    margin-bottom: 1rem;
}

.map-card iframe {
    width: 100%;
    height: 300px;
    border: none;
    border-radius: 6px;
}

.map-link {
    display: inline-block;
    margin-top: 0.5rem;
    color: #d4af37;
    text-decoration: underline;
}

.event-form {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: none;
    margin-bottom: 2rem;
    text-align: left;
}

.event-form h3 {
    color: #124750;
    margin-bottom: 0.5rem;
}

.event-form p {
    color: #ccc;
    margin-bottom: 1rem;
}

.event-form input,
.event-form textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #444;
    border-radius: 5px;
    background-color: #0d0d0d;
    color: #fff;
}

.event-form input::placeholder,
.event-form textarea::placeholder {
    color: #777;
}

.event-form button {
    background-color: #d4af37;
    color: #111;
    font-weight: bold;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    box-shadow: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.event-form button:hover {
    background-color: #c89f2f;
}

.thanks-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #1b1b1b, #121212); /* flatter matte look */
    border-radius: 10px;
    border: 1px solid #2a2a2a;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}

.thanks-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #e0d6c3; /* warm parchment tan */
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px #000;
}

.thanks-section p {
    font-size: 1.2rem;
    color: #d2d2d2;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 1px #000;
}

.thanks-section .cta-button {
    background-color: #d4af37; /* whiskey gold */
    color: #111;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.thanks-section .cta-button:hover {
    transform: scale(1.05);
    background-color: #c09e32; /* darker whiskey */
}

.admin-dashboard,
.featured-drink,
.upload-section {
    background-color: rgba(20, 20, 20, 0.85); /* semi-transparent asphalt */
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2e2e2e;
    backdrop-filter: blur(2px);
}

.admin-link {
    text-align: center;
    margin-top: 20px;
    font-size: 0.85rem;
    opacity: 0.5;
}

.admin-link a {
    color: #888;
    text-decoration: none;
}

.admin-link a:hover {
    opacity: 0.8;
    color: #fff;
}

.admin-dashboard {
    text-align: center;
    margin: 2rem auto;
    max-width: 800px;
}

.admin-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

@media (min-width: 700px) {
    .admin-cards {
        grid-template-columns: 1fr 1fr;
    }
}

.admin-card {
    background-color: rgba(32, 32, 32, 0.9); /* subtle transparency */
    border: 1px solid #3a3a3a;
    color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #444;
    transition: transform 0.2s ease;
}

.admin-card:hover {
    transform: scale(1.02);
    box-shadow: 0 0 6px #333;
}

.admin-card h3 {
    margin-bottom: 0.5rem;
}

.drink-text strong {
    color: #d4af37;
    font-weight: bold;
}

.featured-drink {
    background: linear-gradient(145deg, #2a2a2a, #1a1a1a);
    padding: 2rem;
    margin: 3rem auto;
    border-radius: 20px;
    box-shadow: none;
    max-width: 700px;
    color: #f8f8f8;
    text-align: center;
    border: 1px solid #444;
}

.featured-drink h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #d4af37;
    letter-spacing: 1px;
    text-shadow: none;
}

.drink-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.drink-card img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.drink-card img:hover {
    transform: scale(1.02);
}

.drink-info {
    padding: 0 1rem;
}

.drink-info h4 {
    font-size: 1.5rem;
    margin: 0.2rem 0;
    color: #f5f5f5;
    text-shadow: none;
}

.drink-info p {
    margin: 0.5rem 0;
    font-size: 1rem;
    line-height: 1.4;
    color: #ccc;
}

.promo-price {
    margin-top: 0.75rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #d4af37;
    text-shadow: none;
}

.upload-section {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.upload-section h4 {
    margin-bottom: 0.5rem;
}

.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
}

.gallery-admin-grid li {
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
}

.gallery-admin-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
}

.login-container {
    background-color: rgba(20, 20, 20, 0.85);  /* dark semi-transparent */
    padding: 2.5rem;
    max-width: 500px;
    margin: 4rem auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    border: 1px solid #2e2e2e;
    backdrop-filter: blur(2px);
    color: #f0f0f0;
    text-align: center;
}

.login-container h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2rem;
    color: #d4af37; /* whiskey gold */
    margin-bottom: 1.5rem;
}

.login-container form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.login-container input[type="text"],
.login-container input[type="password"] {
    padding: 0.75rem;
    background-color: #1a1a1a;
    border: 1px solid #444;
    border-radius: 6px;
    color: #eee;
    font-size: 1rem;
}

.login-container input::placeholder {
    color: #777;
}

.login-container button.cta-button {
    background-color: #d4af37;
    color: black;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.login-container button.cta-button:hover {
    transform: scale(1.05);
}

.form-container.drink-special-container {
    max-width: 700px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: rgba(32, 32, 32, 0.8); /* semi-transparent overlay */
    border-radius: 12px;
    border: 1px solid #444;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
    color: #f0f0f0;
    text-align: center;
}

.form-container h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.2rem;
    color: #d4af37; /* whiskey gold */
    margin-bottom: 1rem;
}

.form-container p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.styled-form .form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.styled-form label {
    display: block;
    margin-bottom: 0.3rem;
    color: #f0f0f0;
    font-weight: 500;
}

.styled-form input,
.styled-form textarea,
.styled-form select {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid #666;
    border-radius: 6px;
    background-color: #1a1a1a;
    color: #f8f8f8;
    font-size: 1rem;
}

.styled-form textarea {
    resize: vertical;
}

.styled-form input[type="file"] {
    padding: 0.4rem;
    background-color: transparent;
}

.styled-form .cta-button {
    margin-top: 1rem;
    background-color: #d4af37;
    color: #000;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.styled-form .cta-button:hover {
    transform: scale(1.05);
}

.form-container.events-admin-panel {
    max-width: 850px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: rgba(32, 32, 32, 0.85); /* leather-dark container */
    border-radius: 12px;
    border: 1px solid #444;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
    text-align: center;
}

.form-container.events-admin-panel h2,
.form-container.events-admin-panel h3,
.form-container.events-admin-panel h4 {
    font-family: 'Anton', sans-serif;
    color: #d4af37;
    margin-bottom: 1rem;
}

.event-description {
    color: #ddd;
    font-size: 1.05rem;
}

.event-list li {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    color: #f0f0f0;
}

.event-thumb {
    width: 100%;
    max-width: 300px;
    margin-top: 0.5rem;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.6);
}

.form-container.gallery-admin-panel {
    max-width: 850px;
    margin: 3rem auto;
    padding: 2.5rem;
    background-color: rgba(32, 32, 32, 0.88); /* dark panel */
    border-radius: 12px;
    border: 1px solid #444;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    color: #f0f0f0;
    text-align: center;
}

.gallery-admin-panel h2,
.gallery-admin-panel h4 {
    font-family: 'Anton', sans-serif;
    color: #d4af37;
    margin-bottom: 1rem;
}

.gallery-admin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.gallery-admin-grid li {
    background: #222;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    color: #eee;
    box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.gallery-admin-grid img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    margin-bottom: 0.5rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.gallery-admin-grid input[type="number"] {
    width: 60px;
    padding: 0.3rem;
    border-radius: 4px;
    border: 1px solid #666;
    background-color: #111;
    color: #fff;
}

.gallery-admin-grid .form-group.checkbox {
    margin-top: 0.5rem;
}

.form-control {
    width: 100%;
    max-width: 500px;
    padding: 0.75rem 1rem;
    border: 1px solid #666;
    border-radius: 8px;
    font-size: 1rem;
    background-color: #111;
    color: #f0f0f0;
    margin-top: 0.25rem;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
    resize: vertical;
}

textarea.form-control {
    min-height: 120px;
    line-height: 1.5;
}

.admin-nav-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.admin-nav-link {
    background-color: #222;
    color: #f0f0f0;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    border: 1px solid #444;
    transition: background-color 0.2s ease, transform 0.2s ease;
    font-weight: bold;
    font-size: 1rem;
}

.admin-nav-link:hover {
    background-color: #444;
    transform: scale(1.03);
    color: #d4af37;
}

.admin-dashboard h2,
.admin-dashboard p {
    color: #d4af37;
}
