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

body {
    font-family: 'Open Sans', sans-serif;
    background-color: #0a0a0a;
    color: #f5f5f5;
    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: radial-gradient(circle at center, rgba(255, 0, 153, 0.1), transparent 70%),
                radial-gradient(circle at 20% 20%, rgba(0, 255, 255, 0.08), transparent 60%),
                radial-gradient(circle at 80% 80%, rgba(255, 255, 0, 0.05), transparent 60%);
    animation: backgroundFade 15s ease-in-out infinite;
    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: #111;
    padding: 2rem 1rem;
    text-align: center;
    border-bottom: 2px solid #ff00aa;
}

.site-header h1 {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: #ff00cc;
  animation: pulse 3s ease-in-out infinite;
}

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

/* ========== SIDEBAR NAVIGATION ========== */
nav.sidebar {
    background-color: #000;
    text-align: center;
    padding: 1rem 0;
    border-bottom: 1px solid #222;
    box-shadow: 0 2px 8px rgba(255, 0, 204, 0.1);
}

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: #00ffe0;
    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: #00ffe0;
    color: #000;
    border-color: #00ffe0;
    text-shadow: 0 0 10px #00ffe0;
}

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

/* ========== HERO SECTION ========== */
.hero {
    background: linear-gradient(135deg, #111, #1a1a1a);
    padding: 3rem;
    border: 1px solid #222;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 15px rgba(255, 0, 153, 0.3);
    margin-bottom: 2rem;
}

.hero h2 {
    font-size: 2.5rem;
    color: #00ffe0;
    margin-bottom: 1rem;
    text-shadow: 0 0 10px #00ffe0;
}

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

.bar-hours {
    font-size: 1rem;
    color: #ccc;
    display: block;
    margin-top: 0.5rem;
}

.cta-button {
    display: inline-block;
    background-color: #ffcc00;
    color: #111;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 0 10px #ffcc00;
    transition: 0.3s ease;
}

.cta-button:hover {
    background-color: #ffdd33;
    box-shadow: 0 0 20px #ffcc00;
}

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

.footer-glow {
    color: #ff00cc;
    margin-top: 0.5rem;
    font-weight: bold;
    font-size: 1rem;
    text-shadow: 0 0 10px #ff00cc;
}

/* ========== 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: #ff00cc;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.2);
}

.event-card.special h3 {
    color: #ff00cc;
    text-shadow: 0 0 5px #ff00cc;
}

.event-card.special img {
  width: 100%;
  height: auto;
  max-width: 100vw;
  max-height: 60vh;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

/* EVENTS PAGE UPGRADE */

.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, rgba(36, 0, 51, 0.9), rgba(15, 0, 25, 0.9));
    border: 1px solid rgba(255, 0, 255, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 0 12px rgba(255, 0, 255, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6), 0 0 40px rgba(0, 255, 255, 0.2);
}

.event-card h3 {
    font-family: 'Anton', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ff00cc;
    text-shadow: 0 0 1px #ff00cc, 0 0 2px #ff00cc;
}

.event-card h3 span {
    color: #00f0ff;
    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, rgba(20,0,40,0.9), rgba(60,0,60,0.95));
    border-color: #ff00cc;
    box-shadow: 0 0 18px #ff00cc;
}

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

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

.everyday-block h3 {
    color: #00f0ff;
    text-shadow: 0 0 5px #00f0ff;
    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: #ff00cc;
    margin-right: 0.5rem;
    font-size: 1.2rem;
}

.gallery-page {
    text-align: center;
    padding: 2rem;
}

.gallery-page h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #ff4081;
    text-shadow: 0 0 5px #ff4081aa;
}

.gallery-subtext {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
    font-style: italic;
}

.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 10px #00000055;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* ========== CONTACT PAGE ========== */
.contact-page {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.contact-page h2 {
    font-family: 'Anton', sans-serif;
    font-size: 2.5rem;
    color: #ff00cc;
    text-shadow: 0 0 5px #ff00cc;
    margin-bottom: 1.5rem;
}

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

.contact-details div h3 {
    color: #00ffe0;
    margin-bottom: 0.5rem;
}

.contact-details div p {
    color: #ccc;
    font-size: 1.1rem;
}

.map-card {
    background-color: #111;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

.map-card h3 {
    color: #ffcc00;
    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: #00ffe0;
    text-decoration: underline;
}

.event-form {
    background-color: #1a1a1a;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(255, 0, 153, 0.2);
    margin-bottom: 2rem;
    text-align: left;
}

.event-form h3 {
    color: #ff00cc;
    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 #333;
    border-radius: 5px;
    background-color: #0d0d0d;
    color: #fff;
}

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

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

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

.thanks-section {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(to bottom right, #1a1a1a, #0d0d0d);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.3);
}

.thanks-section h2 {
    font-family: 'Anton', sans-serif;
    font-size: 3rem;
    color: #00ffcc;
    margin-bottom: 1rem;
}

.thanks-section p {
    font-size: 1.2rem;
    color: #ccc;
    margin-bottom: 2rem;
}

.thanks-section .cta-button {
    background-color: #ff00cc;
    color: black;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 0 15px rgba(255, 0, 204, 0.5);
    transition: transform 0.2s ease;
}

.thanks-section .cta-button:hover {
    transform: scale(1.05);
}


.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: #1e1e2f;
    color: #f0f0f0;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    border: 1px solid #444;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

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

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

.featured-drink {
    background: linear-gradient(145deg, #2c2c2c, #1a1a1a);
    padding: 2rem;
    margin: 3rem auto;
    border-radius: 20px;
    box-shadow: 0 0 20px rgba(255, 204, 0, 0.1), 0 0 5px rgba(255, 204, 0, 0.05);
    max-width: 700px;
    color: #f8f8f8;
    text-align: center;
    border: 1px solid rgba(255, 204, 0, 0.2);
}

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

.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 20px rgba(0, 0, 0, 0.6);
    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: #ffffff;
    text-shadow: 0 1px 3px #000;
}

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

.promo-price {
    margin-top: 0.75rem;
    font-weight: bold;
    font-size: 1.2rem;
    color: #ffcc00;
    text-shadow: 0 1px 3px #000;
}

.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;
}

.bar-photo {
  width: 100%;
  padding: 1rem;
  box-sizing: border-box;
}

.bar-photo .contentwrapper {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.bar-photo img.bar-image {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100vw;
  max-height: 60vh; /* 👈 keeps image height manageable on mobile */
  object-fit: cover;
  border-radius: 10px;
}

@media screen and (max-width: 600px) {
  .bar-photo img.bar-image {
    max-width: 100%;
    padding: 0;
    border-radius: 0;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.85;
  }
}

