/* ============================
   LOCCO BAR â€” Landing Page CSS
   v2
   ============================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Dancing+Script:wght@700&display=swap');

/* --- Reset & Base --- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --pink:    #ff0099;
    --cyan:    #00c8ff;
    --dark:    #0a0a0f;
    --dark2:   #10101a;
    --dark3:   #1a1a2e;
    --white:   #ffffff;
    --gray:    #aaaaaa;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--dark);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    overflow-x: hidden;
}

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark2); }
::-webkit-scrollbar-thumb { background: var(--pink); border-radius: 3px; }

/* ============================
   NAVIGATION
   ============================ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 3rem;
    background: rgba(10, 10, 15, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 0, 153, 0.2);
    transition: background 0.3s;
}

.nav-logo img {
    height: 48px;
    filter: drop-shadow(0 0 8px var(--cyan));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: color 0.2s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--pink);
    box-shadow: 0 0 8px var(--pink);
    transition: width 0.3s;
}

.nav-links a:hover { color: var(--pink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    background: linear-gradient(135deg, var(--pink), #ff6ec7);
    color: var(--white) !important;
    padding: 0.5rem 1.4rem;
    border-radius: 50px;
    box-shadow: 0 0 16px rgba(255, 0, 153, 0.5);
    transition: box-shadow 0.3s, transform 0.2s !important;
}

.nav-cta:hover {
    box-shadow: 0 0 28px rgba(255, 0, 153, 0.9) !important;
    transform: translateY(-1px);
    color: var(--white) !important;
}

.nav-cta::after { display: none !important; }

/* ============================
   HERO
   ============================ */
#hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 6rem 2rem 4rem;
    background: radial-gradient(ellipse 80% 60% at 50% 40%, rgba(0, 200, 255, 0.08) 0%, transparent 70%),
                radial-gradient(ellipse 60% 50% at 60% 60%, rgba(255, 0, 153, 0.1) 0%, transparent 70%),
                var(--dark);
}

/* Animated grid */
#hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 200, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 200, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridMove 20s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {
    0%   { transform: translateY(0); }
    100% { transform: translateY(60px); }
}

.hero-logo {
    width: min(460px, 80vw);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.5))
            drop-shadow(0 0 60px rgba(255, 0, 153, 0.3));
    animation: logoPulse 4s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { filter: drop-shadow(0 0 30px rgba(0, 200, 255, 0.5)) drop-shadow(0 0 60px rgba(255, 0, 153, 0.3)); }
    50%       { filter: drop-shadow(0 0 50px rgba(0, 200, 255, 0.8)) drop-shadow(0 0 90px rgba(255, 0, 153, 0.5)); }
}

.hero-tagline {
    font-size: clamp(0.85rem, 2vw, 1rem);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 0.6rem;
}

.hero-headline {
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--cyan), var(--white) 50%, var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    color: var(--gray);
    max-width: 520px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn-primary {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    border: none;
    background: linear-gradient(135deg, var(--pink), #c800ff);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255, 0, 153, 0.5);
    transition: box-shadow 0.3s, transform 0.2s;
}

.btn-primary:hover {
    box-shadow: 0 0 40px rgba(255, 0, 153, 0.9);
    transform: translateY(-2px);
}

.btn-outline {
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    background: transparent;
    color: var(--cyan);
    border: 2px solid var(--cyan);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.3);
    transition: box-shadow 0.3s, background 0.3s, color 0.3s, transform 0.2s;
}

.btn-outline:hover {
    background: var(--cyan);
    color: var(--dark);
    box-shadow: 0 0 30px rgba(0, 200, 255, 0.7);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    opacity: 0.5;
    animation: bounce 2s ease-in-out infinite;
}

.hero-scroll span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero-scroll svg { width: 20px; height: 20px; fill: none; stroke: var(--white); stroke-width: 2; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   SECTIONS SHARED
   ============================ */
section {
    padding: 6rem 2rem;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--pink);
    margin-bottom: 0.8rem;
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.section-title span {
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-text {
    color: var(--gray);
    line-height: 1.8;
    max-width: 560px;
    font-size: 1rem;
}

/* ============================
   ABOUT
   ============================ */
#about {
    background: var(--dark2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    max-width: 1100px;
    width: 100%;
    align-items: center;
}

.about-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: 20px;
    background: linear-gradient(135deg, var(--cyan), var(--pink)) border-box;
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}

.about-visual-inner {
    text-align: center;
    opacity: 0.35;
}

.about-visual-inner svg {
    width: 80px;
    height: 80px;
    fill: var(--pink);
    margin-bottom: 1rem;
}

.about-visual-inner p {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gray);
}

.features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--dark3);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    border: 1px solid rgba(255, 0, 153, 0.15);
    transition: border-color 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    border-color: var(--pink);
    box-shadow: 0 0 16px rgba(255, 0, 153, 0.2);
}

.feature-icon {
    font-size: 1.6rem;
    margin-bottom: 0.4rem;
}

.feature-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    margin-bottom: 0.2rem;
    color: var(--white);
}

.feature-item p {
    font-size: 0.78rem;
    color: var(--gray);
}

/* ============================
   EVENTS
   ============================ */
#events {
    background: var(--dark);
    text-align: center;
}

.events-header {
    margin-bottom: 3.5rem;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.event-card {
    background: var(--dark3);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(0, 200, 255, 0.1);
    transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
    text-align: left;
}

.event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(255, 0, 153, 0.2);
    border-color: var(--pink);
}

.event-banner {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}

.event-banner-friday  { background: linear-gradient(135deg, #1a0033, #3d0066); }
.event-banner-saturday{ background: linear-gradient(135deg, #001a33, #003366); }
.event-banner-special { background: linear-gradient(135deg, #330010, #660033); }

.event-tag {
    position: absolute;
    top: 0.8rem;
    right: 0.8rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    background: var(--pink);
    color: var(--white);
}

.event-body {
    padding: 1.4rem;
}

.event-day {
    font-size: 0.7rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.4rem;
}

.event-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.event-body p {
    font-size: 0.82rem;
    color: var(--gray);
    line-height: 1.6;
}

/* ============================
   DRINKS / SPECIALS
   ============================ */
#drinks {
    background: var(--dark2);
    text-align: center;
}

.drinks-header { margin-bottom: 3rem; }

.drinks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    max-width: 1100px;
    margin: 0 auto 2.5rem;
}

.drink-card {
    background: var(--dark3);
    border-radius: 14px;
    padding: 1.8rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.drink-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 200, 255, 0.15);
}

.drink-emoji { font-size: 2.5rem; margin-bottom: 0.8rem; }
.drink-name  { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.3rem; }
.drink-desc  { font-size: 0.78rem; color: var(--gray); margin-bottom: 0.8rem; line-height: 1.5; }

.drink-price {
    font-size: 1.1rem;
    font-weight: 900;
    background: linear-gradient(90deg, var(--cyan), var(--pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================
   LOCATION / CONTACT
   ============================ */
#contact {
    background: var(--dark);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1100px;
    width: 100%;
    align-items: start;
    margin-top: 3rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-row {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(255, 0, 153, 0.12);
    border: 1px solid rgba(255, 0, 153, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 0.78rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.3rem;
}

.info-content p, .info-content a {
    font-size: 0.92rem;
    color: var(--gray);
    line-height: 1.6;
    text-decoration: none;
}

.info-content a:hover { color: var(--pink); }

.map-placeholder {
    aspect-ratio: 4/3;
    background: var(--dark3);
    border-radius: 16px;
    border: 1px solid rgba(0, 200, 255, 0.15);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    transition: border-color 0.3s;
}

.map-placeholder:hover { border-color: var(--cyan); }
.map-placeholder span { font-size: 2.5rem; }

/* ============================
   SOCIAL STRIP
   ============================ */
.social-strip {
    background: linear-gradient(90deg, rgba(255,0,153,0.12), rgba(0,200,255,0.12));
    border-top: 1px solid rgba(255,0,153,0.2);
    border-bottom: 1px solid rgba(0,200,255,0.2);
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.social-strip p {
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray);
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: transform 0.2s, box-shadow 0.3s;
}

.social-btn:hover { transform: translateY(-2px); }

.social-btn.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    color: var(--white);
    box-shadow: 0 0 15px rgba(253, 29, 29, 0.3);
}

.social-btn.instagram:hover { box-shadow: 0 0 30px rgba(253, 29, 29, 0.6); }

.social-btn.tiktok {
    background: #010101;
    color: var(--white);
    border: 1px solid rgba(255,255,255,0.15);
    box-shadow: 0 0 15px rgba(0,200,255,0.2);
}

.social-btn.tiktok:hover { box-shadow: 0 0 30px rgba(0,200,255,0.5); }

/* ============================
   FOOTER
   ============================ */
footer {
    background: var(--dark2);
    padding: 2.5rem;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

footer img { height: 36px; opacity: 0.6; margin-bottom: 1rem; }

footer p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.08em;
}

footer a {
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

footer a:hover { color: var(--pink); }

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 900px) {
    nav { padding: 1rem 1.5rem; }
    .nav-links { gap: 1.2rem; }

    .about-inner,
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .events-grid { grid-template-columns: 1fr; }
    .drinks-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================
   HAMBURGER
   ============================ */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    cursor: pointer;
    padding: 8px 10px;
    transition: border-color .2s, box-shadow .2s;
}
.hamburger:hover { border-color: #ff0099; box-shadow: 0 0 10px rgba(255,0,153,.3); }
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
    transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================
   SIDEBAR
   ============================ */
#sidebar {
    display: none;
    position: fixed;
    inset: 0;
    background: #0d0d18;
    z-index: 9999;
    flex-direction: column;
}
#sidebar.open { display: flex; }
body.menu-open > nav { opacity: 0; pointer-events: none; }

#sb-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    background: #12121e;
    border-bottom: 2px solid #ff0099;
    box-shadow: 0 2px 20px rgba(255,0,153,.25);
    position: relative;
    z-index: 1;
}
#sb-head img {
    height: 44px;
    filter: drop-shadow(0 0 10px rgba(0,200,255,.6));
}
#sidebarClose {
    width: 44px;
    height: 44px;
    background: #ff0099;
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 1.6rem;
    font-weight: 900;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, box-shadow .2s;
}
#sidebarClose:hover { background: #cc007a; box-shadow: 0 0 16px rgba(255,0,153,.6); }

#sb-nav { position: static; padding: 0.5rem 0; flex: 1; overflow-y: auto; }
#sb-nav ul { list-style: none; margin: 0; padding: 0; }
#sb-nav li { border-bottom: 1px solid rgba(255,255,255,.08); }
#sb-nav li a {
    display: block;
    padding: 1.1rem 1.5rem;
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color .2s, padding-left .2s, background .2s;
}
#sb-nav li a:hover { color: #ff0099; padding-left: 2.2rem; background: rgba(255,0,153,.06); }

#sb-footer {
    padding: 1rem 1.5rem 1.2rem;
    background: #12121e;
    border-top: 2px solid rgba(0,200,255,.3);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.sb-social {
    display: flex;
    gap: 0.5rem;
}
.sb-social a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.6rem 0.3rem;
    color: #fff;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0,200,255,.4);
    border-radius: 8px;
    background: rgba(0,200,255,.07);
    transition: color .2s, border-color .2s, background .2s, box-shadow .2s;
}
.sb-social a i { font-size: 1.1rem; }
.sb-social a:hover { color: #00c8ff; border-color: #00c8ff; background: rgba(0,200,255,.15); box-shadow: 0 0 10px rgba(0,200,255,.2); }
.sb-copy {
    margin: 0;
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255,255,255,.3);
    letter-spacing: 0.05em;
}

/* ============================
   MOBILE
   ============================ */
@media (max-width: 600px) {
    nav { padding: 0.8rem 1rem; }
    .nav-links { display: none; }
    .hamburger { display: flex; }
    .drinks-grid { grid-template-columns: 1fr 1fr; }
    section { padding: 4rem 1.2rem; }
}

