/* ========== 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;
    text-shadow: 0 0 10px #ff00cc, 0 0 20px #ff00cc;
}

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

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

/* 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;
}

/* ========== Staff Form Enhancements ========== */

.form-container {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(255, 0, 204, 0.15);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #fff;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border: 1px solid #555;
    border-radius: 6px;
    background-color: #111;
    color: #fff;
}

.form-group input[type="file"] {
    padding: 0.5rem 0;
    background-color: transparent;
    border: none;
    color: #fff;
}

.cta-button {
    width: 100%;
    padding: 0.9rem;
    font-size: 1.1rem;
    background-color: gold;
    color: black;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    box-shadow: 0 0 12px gold;
    cursor: pointer;
    transition: background 0.2s, box-shadow 0.2s;
}

.cta-button:hover {
    background-color: #ffd700;
    box-shadow: 0 0 16px gold;
}

@media (max-width: 768px) {
    .form-container {
        margin: 1rem;
        padding: 1rem;
    }

    .cta-button {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }
}

/* ======== Admin Form Layout: Events Page Enhancements ======== */

.event-update-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

.nightly-specials-form,
.add-special-event-form,
.special-events {
    margin-top: 2rem;
}

.event-card {
    background-color: #111;
    border-left: 4px solid #666;
    padding: 1rem;
    margin-bottom: 1.25rem;
    border-radius: 8px;
}

.event-card.special {
    border-left-color: #ff00cc;
    box-shadow: 0 0 20px rgba(255, 0, 204, 0.2);
}

.event-thumb {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin: 0.5rem 0;
}

.event-list {
    list-style: none;
    padding-left: 0;
}

.event-list li {
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .event-update-container {
        margin: 1rem;
        padding: 1rem;
    }

    .event-card {
        padding: 0.75rem;
    }

    .event-list li {
        font-size: 0.95rem;
    }
}
/* ======== Gallery Admin Styling ======== */

.gallery-update-container {
    max-width: 700px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(255, 255, 255, 0.05);
}

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

.gallery-card {
    background-color: #111;
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #333;
    text-align: center;
}

.gallery-card img {
    max-width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 0.75rem;
}

.gallery-card .form-group {
    margin: 0.5rem 0;
}

.gallery-card .form-group.checkbox {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 768px) {
    .gallery-update-container {
        margin: 1rem;
        padding: 1rem;
    }

    .gallery-admin-grid {
        grid-template-columns: 1fr;
    }
}

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

.admin-nav-link {
    display: inline-block;
    background-color: #222;
    color: #fff;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 0 10px rgba(255, 0, 204, 0.2);
    transition: background-color 0.2s ease;
}

.admin-nav-link:hover {
    background-color: #333;
}

.carousel {
    position: relative;
}

.carousel-control-prev,
.carousel-control-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    border: 2px solid #ff00cc;
    box-shadow: 0 0 12px #ff00cc;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: #ff00cc;
    box-shadow: 0 0 20px #ff00cc, 0 0 30px #ff00cc;
}

.carousel-control-prev {
    left: 0;
    margin-left: 2rem; /* Adjust inward from left edge */
}

.carousel-control-next {
    right: 0;
    margin-right: 2rem; /* Adjust inward from right edge */
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(1) drop-shadow(0 0 5px #ff00cc);
    width: 24px;
    height: 24px;
}

.carousel-text {
    display: block;
    margin-top: 4px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: bold;
    color: gold;
    text-shadow: 0 0 5px #ffcc00;
}

@media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
        width: 48px;
        height: 48px;
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.delete-button {
    display: inline-block;
    margin-top: 1rem;
    background-color: #330000;
    color: #ff4d4d;
    font-weight: bold;
    border: 2px solid #ff4d4d;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

.delete-button:hover {
    background-color: #ff4d4d;
    color: #000;
    box-shadow: 0 0 20px #ff4d4d;
    border-color: #ff4d4d;
}
.drink-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 3rem; /* ← Add this line to create breathing room */
}




