/* ===================================
   JIMBO'S BURGER BAR - RETRO NEON STYLES
   =================================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --neon-pink: #f871ba;
    --neon-pink-light: #fba7c8;
    --neon-pink-glow: rgba(216, 53, 117, 0.8);
    --title-glow: #D83575;
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --medium-gray: #2a2a2a;
    --light-gray: #cccccc;
    --white: #ffffff;
    --accent-chrome: #E5E5E5;
    
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Rubik', sans-serif;
    
    --filter-invert: brightness(0) invert(1);
    --filter-invert-glow: brightness(0) invert(1) drop-shadow(0 0 10px var(--neon-pink));
}

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

html {
    scroll-behavior: smooth;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    letter-spacing: 2px;
    font-weight: 400;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Neon Text Effect */
.neon-text {
    color: var(--neon-pink);
    text-shadow: 
        0 0 5px var(--title-glow),
        0 0 10px var(--title-glow),
        0 0 20px var(--title-glow),
        0 0 40px var(--title-glow);
}

@keyframes flicker {
    0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
        text-shadow: 
            0 0 5px var(--neon-pink-glow),
            0 0 10px var(--neon-pink-glow),
            0 0 20px var(--neon-pink-glow),
            0 0 40px var(--neon-pink),
            0 0 80px var(--neon-pink);
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

/* Neon Box Effect - No Glow */
.neon-box {
    border: 2px solid var(--neon-pink);
    background: rgba(255, 20, 147, 0.05);
    transition: all 0.3s ease;
}

.location-info.neon-box,
.cta-box.neon-box {
    transition: none;
}

.location-info.neon-box:hover,
.cta-box.neon-box:hover {
    transform: none;
}

.neon-box:hover {
    transform: translateY(-5px);
}

.feature.neon-box:hover {
    transform: none;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: url('images/heromain.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: var(--black);
    margin-top: 0;
    padding: 8rem 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10;
    margin-bottom: 2rem;
}

.hero-logo-container::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--neon-pink-glow) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(20px);
    opacity: 0.8;
    animation: logo-glow-glitch 3s infinite;
    z-index: -1;
}

.hero-logo-img {
    height: 250px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--title-glow)) drop-shadow(0 0 20px var(--title-glow));
    transition: all 0.3s ease;
    animation: logo-img-glitch 4s infinite;
}

@keyframes logo-img-glitch {
    0%, 100% {
        filter: drop-shadow(0 0 10px var(--title-glow)) drop-shadow(0 0 20px var(--title-glow));
    }
    2% {
        filter: drop-shadow(0 0 20px var(--title-glow)) drop-shadow(0 0 30px var(--title-glow));
    }
    4% {
        filter: drop-shadow(0 0 5px var(--title-glow));
    }
    6% {
        filter: drop-shadow(0 0 10px var(--title-glow)) drop-shadow(0 0 20px var(--title-glow));
    }
    50% {
        filter: drop-shadow(0 0 15px var(--title-glow)) drop-shadow(0 0 25px var(--title-glow));
    }
    52% {
        filter: drop-shadow(0 0 5px var(--title-glow));
    }
    54% {
        filter: drop-shadow(0 0 10px var(--title-glow)) drop-shadow(0 0 20px var(--title-glow));
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 20, 147, 0.03) 2px,
            rgba(255, 20, 147, 0.03) 4px
        );
    pointer-events: none;
    z-index: 2;
}

.hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(216, 53, 117, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(216, 53, 117, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-content .cta-button {
    margin-top: 1rem;
}

.hero-content .cta-button:hover {
    transform: scale(1.05);
}

.hero-tagline {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    letter-spacing: 3px;
    color: var(--white);
    font-weight: 900;
    font-style: normal;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    text-align: center;
    z-index: 10;
    margin-bottom: 2rem;
    font-family: var(--font-body);
    position: relative;
}
}

.hero-badges {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.badge {
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.badge-icon {
    font-size: 2rem;
}

.badge-text {
    font-family: var(--font-heading);
    font-size: 1rem;
    line-height: 1.2;
    letter-spacing: 1px;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: url('images/squiggle.png') center center no-repeat;
    background-size: contain;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 2px;
    border: none;
    transition: transform 0.3s ease;
    text-transform: uppercase;
    font-family: var(--font-heading);
    position: relative;
}

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

/* Section Styles */
section {
    padding: 6rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 2rem;
    letter-spacing: 6px;
    padding: 1rem 0;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 3rem;
}

/* About Section */
.about {
    background: var(--dark-gray);
}

.about .container {
    text-align: center;
}

.about-burger-img {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem auto;
    display: block;
    filter: brightness(0) invert(1);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.about-text {
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text .lead {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--neon-pink-light);
}

.about-text p {
    margin-bottom: 1rem;
}

.highlight {
    color: var(--neon-pink-light);
    font-weight: 500;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

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

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-icon img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--neon-pink-light);
}

.feature p {
    color: var(--light-gray);
}

/* Menu Section */
.menu {
    background-color: #fba7c8;
    position: relative;
    padding: 4rem 0;
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #f471aa;
    background-image: 
        linear-gradient(45deg, #fba7c8 25%, transparent 25%),
        linear-gradient(-45deg, #fba7c8 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #fba7c8 75%),
        linear-gradient(-45deg, transparent 75%, #fba7c8 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    z-index: 0;
}

.menu .container {
    position: relative;
    z-index: 1;
}

.menu .section-title {
    color: #f471aa;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 
                 0 0 20px rgba(0, 0, 0, 0.3);
    animation: none;
    margin-top: 0;
    padding-top: 0;
}

.menu-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
    margin-top: 0;
    padding: 2rem;
    background-color: var(--black);
    border: none;
}

.menu-grid.neon-box {
    border: none;
    box-shadow: none;
}

.menu-grid.neon-box:hover {
    transform: none;
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 2px solid var(--white);
    margin-bottom: 0.5rem;
}

.menu-header-prices {
    font-size: 0.9rem;
    color: var(--white);
    font-style: italic;
    text-transform: lowercase;
}

.menu-item {
    padding: 1.5rem;
    background: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-note {
    text-align: center;
    border-bottom: none !important;
    padding: 1rem 1.5rem;
}

.menu-note p {
    font-size: 1rem;
    color: var(--white);
    font-weight: 700;
    letter-spacing: 1px;
}

.veg-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    margin-right: 8px;
}

.menu-section-item {
    border-bottom: none !important;
    text-align: left;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.menu-item-name {
    font-size: 1.8rem;
    color: var(--white);
    letter-spacing: 3px;
}

.menu-item-price {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 700;
    white-space: nowrap;
}

.menu-item-badge {
    padding: 0.3rem 0.8rem;
    background: var(--neon-pink);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
}

.menu-item-badge.hot {
    background: #ff4500;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.menu-item-desc {
    color: var(--white);
    font-size: 1rem;
    line-height: 1.6;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-extras {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.menu-section {
    text-align: center;
}

.menu-section-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    letter-spacing: 4px;
    color: var(--white);
}

.menu-list {
    list-style: none;
    font-size: 1rem;
    text-align: left;
}

.menu-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.menu-list li:last-child {
    border-bottom: none;
}

.cult-fav {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: var(--neon-pink);
    color: var(--black);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 3px;
    margin-left: 0.5rem;
}

/* Location Section */
.location {
    background: var(--dark-gray);
}

.location-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.location-info {
    padding: 2rem;
}

.location-icon {
    width: 30px;
    height: 30px;
    vertical-align: middle;
    margin-right: 10px;
    filter: brightness(0) invert(1);
}

.location-info h3 {
    font-size: 1.5rem;
    color: var(--neon-pink-light);
    margin: 1.5rem 0 0.5rem 0;
    letter-spacing: 2px;
}

.location-info h3:first-child {
    margin-top: 0;
}

.location-info p {
    color: var(--light-gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.social-link {
    color: var(--neon-pink);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: var(--neon-pink-light);
}

.cta-box {
    padding: 3rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
}

.cta-box h3 {
    font-size: 2rem;
    letter-spacing: 3px;
    line-height: 1.3;
}

.cta-box p {
    font-size: 1.2rem;
    color: var(--light-gray);
}

/* Gallery Section */
.gallery {
    background: var(--black);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 2px solid var(--neon-pink);
}

.gallery-item:hover {
    transform: scale(1.05);
}

.gallery-item:hover .gallery-img {
    transform: none;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-caption {
    color: var(--neon-pink-light);
    font-family: var(--font-heading);
    font-size: 1.3rem;
    letter-spacing: 2px;
    margin: 0;
}

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

.gallery-cta p {
    font-size: 1.2rem;
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: var(--black);
    padding: 2rem 0;
    text-align: center;
}

.footer-award-img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* Image Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.95);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    object-fit: contain;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: translateY(-50%) scale(0.8);
    }
    to {
        transform: translateY(-50%) scale(1);
    }
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: var(--neon-pink);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
}

.modal-close:hover,
.modal-close:focus {
    color: var(--neon-pink-light);
}

.modal-caption {
    text-align: center;
    color: var(--white);
    padding: 20px;
    font-size: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 2px;
    position: fixed;
    bottom: 20px;
    left: 0;
    right: 0;
}

.footer-text {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    letter-spacing: 4px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--light-gray);
    font-style: italic;
    margin-bottom: 1rem;
}

.footer-copyright {
    font-size: 0.9rem;
    color: var(--light-gray);
}

.websiteworks-link {
    color: var(--neon-pink);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.websiteworks-link:hover {
    color: var(--neon-pink-light);
}

/* Glitch Effect */
.glitch {
    position: relative;
}

.glitch::before,
.glitch::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch::before {
    color: var(--neon-pink-light);
    z-index: -1;
}

.glitch::after {
    color: rgba(255, 255, 255, 0.1);
    z-index: -2;
}

@keyframes glitch-1 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(-2px, 2px);
    }
    40% {
        transform: translate(-2px, -2px);
    }
    60% {
        transform: translate(2px, 2px);
    }
    80% {
        transform: translate(2px, -2px);
    }
}

@keyframes glitch-2 {
    0%, 100% {
        transform: translate(0);
    }
    20% {
        transform: translate(2px, -2px);
    }
    40% {
        transform: translate(2px, 2px);
    }
    60% {
        transform: translate(-2px, -2px);
    }
    80% {
        transform: translate(-2px, 2px);
    }
}

/* Responsive Design */

/* Large Desktop (1200px+) */
@media (min-width: 1200px) {
    .hero-logo-img {
        height: 300px;
    }
}

/* Medium Desktop / Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) {
    .hero-logo-img {
        height: 250px;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {
    .hero {
        background-position: center;
        padding: 6rem 20px;
    }
    
    .hero-logo-img {
        height: 220px;
    }
    
    .hero-tagline {
        font-size: 1.5rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile / Small Tablet (max-width: 768px) */
@media (max-width: 768px) {
    .hero {
        background-position: center;
        background-size: cover;
        padding: 5rem 20px;
    }
    
    .hero-logo-img {
        height: 180px;
    }
    
    .hero-tagline {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }

    section {
        padding: 4rem 0;
    }

    .menu-grid {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-icon img {
        width: 130px;
        height: 130px;
    }
    
    .section-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }

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

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .hero {
        background-position: center center;
        background-size: cover;
        padding: 4rem 15px;
    }
    
    .hero-logo-img {
        height: 150px;
    }
    
    .hero-tagline {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .hero-content .cta-button {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    
    .menu-grid {
        padding: 0.75rem;
    }
    
    .menu-item {
        padding: 1rem;
    }
    
    .menu-item-name {
        font-size: 1.2rem;
    }
    
    .menu-item-price {
        font-size: 0.9rem;
    }
    
    .menu-item-desc {
        font-size: 0.85rem;
    }
    
    .feature {
        padding: 1.5rem;
    }
    
    .feature-icon img {
        width: 120px;
        height: 120px;
    }
    
    .section-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .nav,
    .cta-button,
    .hero-badges {
        display: none;
    }

    body {
        background: white;
        color: black;
    }

    .neon-text {
        color: black;
        text-shadow: none;
    }
}
