:root {
    --bg-color: #ffffff;
    --text-color: #0047AB;
    /* Cobalt Blue */
    --neon-blue: #0047AB;
    --neon-red: #ff003c;
    --neon-green: #2ecc71;
    --neon-yellow: #f1c40f;
    --accent-color: var(--neon-blue);
    --font-heading: 'Sedgwick Ave Display', 'Rock Salt', cursive;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: black;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out, visibility 1s;
}

.loading-screen video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.skip-btn {
    position: absolute;
    bottom: 40px;
    right: 40px;
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    cursor: pointer;
    border: 2px solid white;
    padding: 10px 20px;
    background: rgba(0, 0, 0, 0.5);
    z-index: 10000;
    transition: 0.3s;
}

.skip-btn:hover {
    background: var(--neon-red);
    border-color: var(--neon-red);
    transform: scale(1.1);
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Smoke Overlay Animation */
.smoke-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
    z-index: 100;
    animation: smoke-drift 20s infinite linear;
}

@keyframes smoke-drift {
    0% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(5%, 5%) scale(1.1);
    }

    100% {
        transform: translate(0, 0) scale(1);
    }
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    /* Allow clicks to pass through giant header area */
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    /* Align links to top of logo */
    padding-top: 10px;
}

.logo {
    position: relative;
    z-index: 2000;
    pointer-events: none;
    /* Let clicks pass through empty space around logo */
}

.logo-img {
    height: 650px;
    filter: drop-shadow(0 0 40px var(--neon-blue));
    transition: 0.3s;
    margin-top: -180px;
    /* Pull the logo up significantly to align with buttons */
    pointer-events: auto;
}

.logo-img:hover {
    transform: scale(1.1);
}

@keyframes flicker {

    0%,
    18%,
    22%,
    25%,
    53%,
    57%,
    100% {
        text-shadow: 0 0 10px var(--neon-blue), 0 0 20px var(--neon-blue);
    }

    20%,
    24%,
    55% {
        text-shadow: none;
    }
}

.nav-links {
    display: flex;
    align-items: center;
    margin-top: 0;
    /* Remove manual offset */
    pointer-events: auto;
    /* Re-enable for the navigation area */
}

.nav-links a {
    color: var(--text-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--neon-red);
    text-shadow: 0 0 5px var(--neon-red);
}

.nav-btn-join {
    background: var(--neon-red);
    color: white !important;
    padding: 10px 25px;
    border-radius: 50px;
    margin-left: 1.5rem;
    box-shadow: 0 4px 15px rgba(255, 0, 60, 0.2);
}

.nav-btn-join:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 0, 60, 0.4);
    text-shadow: none !important;
}

.delivery-nav-link {
    color: var(--neon-blue) !important;
    position: relative;
    overflow: hidden;
}

.delivery-nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--neon-blue);
    box-shadow: 0 0 10px var(--neon-blue);
    animation: neon-pulse 2s infinite;
}

@keyframes neon-pulse {
    0% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--neon-blue);
    }

    50% {
        opacity: 1;
        box-shadow: 0 0 15px var(--neon-blue);
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 5px var(--neon-blue);
    }
}

.admin-link {
    color: #999;
    text-decoration: none;
    font-size: 0.8rem;
    transition: 0.3s;
}

.admin-link:hover {
    color: var(--neon-red);
}

#user-display a {
    background: var(--neon-blue);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    text-decoration: none;
}

/* Mobile Sidebar & Toggle Styles */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 2001;
    margin-left: 1.5rem;
    pointer-events: auto;
    /* Re-enable for the toggle button */
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--text-color);
    box-shadow: 0 0 5px var(--neon-blue);
}

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 350px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 3000;
    transition: 0.5s ease-in-out;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    border-left: 5px solid var(--neon-red);
    backdrop-filter: blur(10px);
    pointer-events: auto;
    /* Essential to enable clicking the 'X' and links */
}

.mobile-sidebar.active {
    right: 0;
}

.close-btn {
    align-self: flex-end;
    font-size: 3rem;
    cursor: pointer;
    color: var(--neon-red);
}

.sidebar-links {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-link {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 2.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: 0.3s;
}

.sidebar-link:hover {
    color: var(--neon-blue);
    text-shadow: 0 0 10px var(--neon-blue);
}

@media (max-width: 900px) {
    header {
        position: absolute;
    }

    .nav-links {
        display: none;
    }

    .menu-toggle {
        display: flex;
        position: fixed;
        top: 25px;
        right: 25px;
        z-index: 5000;
        pointer-events: auto;
    }

    nav {
        justify-content: flex-end;
        position: relative;
    }

    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-55%);
        /* Nudged left from -50% for visual balance */
        top: 0;
        width: 100%;
        display: flex;
        justify-content: center;
        z-index: 2000;
        pointer-events: none;
    }

    .logo-img {
        height: min(500px, 80vw);
        width: auto;
        max-width: 95vw;
        margin-top: -80px;
        filter: drop-shadow(0 0 30px var(--neon-blue));
        object-fit: contain;
    }

    header {
        padding: 0.5rem 5%;
    }
}

/* Hero Section */
.hero {
    height: calc(100vh - 4rem);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6) contrast(1.1);
}

.hero-content {
    position: relative;
    z-index: 2500;
    /* Ensure it's above the main logo overlap */
    text-align: center;
}

.hero-logo {
    width: 100%;
    max-width: 900px;
    height: auto;
    max-height: 50vh;
    object-fit: contain;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 40px rgba(0, 242, 255, 0.6)) contrast(1.1) brightness(1.1);
    -webkit-filter: drop-shadow(0 0 40px rgba(0, 242, 255, 0.6)) contrast(1.1) brightness(1.1);
    animation: floating 3s ease-in-out infinite;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: perspective(1000px) translateZ(0);
}

@keyframes floating {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-20px) rotate(1deg);
    }
}

.hero-content h1 {
    display: none;
}

@keyframes glow-red-blue {
    from {
        text-shadow: 2px 2px 5px var(--neon-red), -2px -2px 5px var(--neon-blue);
    }

    to {
        text-shadow: 5px 5px 20px var(--neon-red), -5px -5px 20px var(--neon-blue);
    }
}

.presented-by {
    font-size: 1.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 3rem;
    opacity: 0.9;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: var(--text-color);
    background: rgba(255, 255, 255, 0.8);
    display: inline-block;
    padding: 10px 20px;
    border-radius: 5px;
}

.highlight {
    color: var(--neon-yellow);
    font-weight: bold;
    text-shadow: 0 0 10px var(--neon-yellow);
}

.hero-btns {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.btn-subtext {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.8), 2px 2px 5px var(--neon-red);
    letter-spacing: 1px;
}

.btn {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: var(--neon-red);
    color: white;
    box-shadow: 0 5px 15px rgba(255, 0, 60, 0.3);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 30px var(--neon-red);
}

.btn-secondary {
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--text-color);
    color: white;
    transform: translateY(-5px);
}

/* Section Common */
section {
    padding: 120px 0;
    margin: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    width: 100%;
}

.section-title {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 4rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--text-color);
}

/* About Section */
.about-section {
    background-color: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 1.4;
    color: var(--text-color);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    position: relative;
    cursor: crosshair;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
    filter: grayscale(0.5);
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.gallery-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0 solid var(--neon-green);
    transition: 0.3s;
}

.gallery-item:hover::after {
    border: 5px solid var(--neon-green);
    box-shadow: inset 0 0 20px var(--neon-green);
}

/* Products Section */
.product-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.product-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    border: 3px solid var(--neon-red);
    transition: 0.3s;
    color: var(--text-color);
}

.product-card:hover {
    border-color: var(--neon-blue);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 71, 171, 0.1);
}

.card-img {
    width: 100%;
    height: 250px;
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--neon-blue);
}

/* Location Section */
.location-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: center;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid var(--neon-red);
}

.info-content .section-title {
    text-align: left;
    font-size: 3.5rem;
    margin-bottom: 2rem;
}

.address,
.hours {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.instagram-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--neon-red);
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 2rem;
}

/* Footer */
footer {
    padding: 80px 0;
    background-color: white;
    text-align: center;
    border: none;
    margin: 0;
    border-radius: 0;
}

.footer-tagline {
    font-family: 'Sedgwick Ave Display', cursive;
    font-size: 2.5rem;
    color: var(--neon-red);
    margin-bottom: 2rem;
}

.social-icons {
    margin-bottom: 2rem;
}

.social-icons img {
    filter: invert(18%) sepia(95%) saturate(3015%) hue-rotate(205deg) brightness(91%) contrast(101%);
    /* Blue filter */
}

.copyright {
    color: var(--text-color);
    font-size: 0.9rem;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .section-title {
        font-size: 3rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-cards {
        grid-template-columns: 1fr;
    }

    .location-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h1 {
        font-size: 20vw;
    }

    .about-content p {
        font-size: 1.2rem;
        /* Reduced from 1.8rem */
        line-height: 1.6;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .nav-links {
        display: none;
    }

    .hero-btns {
        flex-direction: column;
    }

    .hero-content h1 {
        font-size: 25vw;
    }

    .loading-screen video {
        object-fit: contain;
        background-color: black;
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    font-weight: bold;
    font-size: 0.8rem;
    opacity: 0.7;
}

.arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin-top: 10px;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) rotate(45deg);
    }

    40% {
        transform: translateY(-10px) rotate(45deg);
    }

    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Delivery Promo Section */
.delivery-promo {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    border: none !important;
    border-top: 10px solid var(--neon-blue) !important;
    border-bottom: 10px solid var(--neon-blue) !important;
    position: relative;
    overflow: hidden;
    color: white !important;
    margin-top: 0;
}

.delivery-promo .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.delivery-text h2 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--neon-red);
    margin-bottom: 1.5rem;
    line-height: 1;
}

.delivery-text p {
    font-size: 1.4rem;
    color: #fff;
    margin-bottom: 2rem;
}

.delivery-features {
    list-style: none;
    margin-bottom: 2.5rem;
    padding: 0;
}

.delivery-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: #ccc;
    font-weight: 700;
}

.delivery-features li span.icon {
    background: var(--neon-blue);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    box-shadow: 0 0 15px var(--neon-blue);
}

.delivery-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.phone-mockup {
    width: 280px;
    height: 560px;
    background: #000;
    border: 10px solid #222;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 50px rgba(0, 71, 171, 0.4);
    animation: float-phone 4s ease-in-out infinite;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: url('assets/gallery1.jpg') center/cover;
    filter: brightness(0.6);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.phone-ui-overlay {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    border: 1px solid var(--neon-blue);
    transform: translateY(10px);
}

.ui-title {
    font-family: var(--font-heading);
    color: var(--neon-red);
    margin: 0 0 10px 0;
}

.ui-bar {
    background: #333;
    height: 8px;
    width: 100%;
    margin-bottom: 8px;
    border-radius: 4px;
}

.ui-btn-mini {
    background: var(--neon-blue);
    height: 35px;
    width: 100%;
    margin-top: 15px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 0.8rem;
}

@keyframes float-phone {

    0%,
    100% {
        transform: translateY(0) rotate(1deg);
    }

    50% {
        transform: translateY(-20px) rotate(-1deg);
    }
}

@media (max-width: 900px) {
    .delivery-promo .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .delivery-features li {
        justify-content: center;
    }

    .delivery-text h2 {
        font-size: 3.5rem;
    }
}