/* Root Variables - 60's Color Palette */
:root {
    --neon-pink: #ff1493;
    --neon-blue: #00d4ff;
    --neon-green: #39ff14;
    --chrome: linear-gradient(135deg, #e8e8e8 0%, #c0c0c0 25%, #f5f5f5 50%, #b8b8b8 75%, #e8e8e8 100%);
    --red-leather: #c41e3a;
    --cream: #fffdd0;
    --black: #1a1a1a;
    --white: #ffffff;
    --turquoise: #40e0d0;
}

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

body {
    font-family: 'Righteous', cursive;
    background: #1a1a1a;
    color: var(--cream);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Checkered Floor Background */
.checkered-floor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(45deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(-45deg, #2a2a2a 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, #2a2a2a 75%),
        linear-gradient(-45deg, transparent 75%, #2a2a2a 75%);
    background-size: 60px 60px;
    background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
    opacity: 0.3;
    z-index: -2;
}

/* Floating Bubbles */
.bubbles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), rgba(64, 224, 208, 0.1));
    border: 2px solid rgba(64, 224, 208, 0.3);
    animation: float 15s infinite ease-in-out;
}

.bubble:nth-child(1) {
    width: 80px;
    height: 80px;
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.bubble:nth-child(2) {
    width: 120px;
    height: 120px;
    right: 15%;
    top: 40%;
    animation-delay: 2s;
}

.bubble:nth-child(3) {
    width: 60px;
    height: 60px;
    left: 70%;
    top: 60%;
    animation-delay: 4s;
}

.bubble:nth-child(4) {
    width: 100px;
    height: 100px;
    left: 30%;
    bottom: 20%;
    animation-delay: 1s;
}

.bubble:nth-child(5) {
    width: 90px;
    height: 90px;
    right: 25%;
    bottom: 30%;
    animation-delay: 3s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(180deg);
    }
}

/* Circular Navigation */
.circular-nav {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1000;
}

.nav-circle {
    position: relative;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(196, 30, 58, 0.9), rgba(26, 26, 26, 0.9));
    border: 4px solid var(--neon-pink);
    box-shadow: 0 0 30px var(--neon-pink);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-nav 3s infinite;
}

@keyframes pulse-nav {
    0%, 100% {
        box-shadow: 0 0 30px var(--neon-pink);
    }
    50% {
        box-shadow: 0 0 50px var(--neon-pink), 0 0 70px var(--neon-pink);
    }
}

.nav-dot {
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--chrome);
    border: 3px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--black);
    font-size: 10px;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
}

.nav-dot:hover {
    transform: scale(1.2);
    box-shadow: 0 0 20px var(--neon-blue);
    background: var(--red-leather);
    color: var(--cream);
}

.nav-dot.active {
    background: var(--red-leather);
    color: var(--cream);
    box-shadow: 0 0 20px var(--neon-green);
}

.nav-dot:nth-child(1) { top: 0; left: 50%; transform: translateX(-50%); }
.nav-dot:nth-child(2) { top: 25%; right: 0; }
.nav-dot:nth-child(3) { top: 50%; left: 50%; transform: translate(-50%, -50%); }
.nav-dot:nth-child(4) { top: 25%; left: 0; }
.nav-dot:nth-child(5) { bottom: 0; left: 50%; transform: translateX(-50%); }

/* Main Content */
main {
    position: relative;
    z-index: 1;
}

.section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.8s, transform 0.8s;
}

.section.active {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Section */
#home {
    position: relative;
}

.neon-sign {
    text-align: center;
    margin-bottom: 50px;
}

.neon-text {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: var(--neon-pink);
    text-shadow:
        0 0 10px var(--neon-pink),
        0 0 20px var(--neon-pink),
        0 0 30px var(--neon-pink),
        0 0 40px #ff1493,
        0 0 70px #ff1493,
        0 0 80px #ff1493,
        0 0 100px #ff1493;
    animation: flicker 3s infinite;
    position: relative;
}

@keyframes flicker {
    0%, 18%, 22%, 25%, 53%, 57%, 100% {
        text-shadow:
            0 0 10px var(--neon-pink),
            0 0 20px var(--neon-pink),
            0 0 30px var(--neon-pink),
            0 0 40px #ff1493,
            0 0 70px #ff1493,
            0 0 80px #ff1493,
            0 0 100px #ff1493;
    }
    20%, 24%, 55% {
        text-shadow: none;
    }
}

.tagline {
    font-family: 'Satisfy', cursive;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--turquoise);
    text-shadow: 0 0 10px var(--turquoise);
}

.chrome-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--chrome);
    border: 10px solid var(--red-leather);
    box-shadow:
        inset 0 0 50px rgba(255, 255, 255, 0.5),
        0 0 30px rgba(196, 30, 58, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.record {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a1a 30%, #2a2a2a 50%, #1a1a1a 100%);
    border: 5px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.record.spinning {
    animation: spin 4s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.record-label {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--red-leather);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    color: var(--cream);
}

.record-label p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.record-label .small {
    font-size: 0.7rem;
}

.arrow-down {
    position: absolute;
    bottom: 30px;
    font-size: 3rem;
    color: var(--neon-green);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-20px);
    }
    60% {
        transform: translateY(-10px);
    }
}

/* About Section */
.content-wrapper {
    max-width: 1200px;
    width: 100%;
}

.oval-container {
    border-radius: 50%;
    padding: 60px 40px;
    background: radial-gradient(ellipse at center, rgba(64, 224, 208, 0.2), rgba(26, 26, 26, 0.8));
    border: 5px solid var(--turquoise);
    box-shadow: 0 0 40px rgba(64, 224, 208, 0.6);
}

.big-oval {
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    aspect-ratio: 1.5 / 1;
}

.retro-header {
    font-family: 'Pacifico', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    text-align: center;
    margin-bottom: 40px;
    color: var(--cream);
    text-shadow: 3px 3px 0 var(--red-leather);
}

.neon-pink {
    color: var(--neon-pink);
    text-shadow: 0 0 20px var(--neon-pink), 0 0 30px var(--neon-pink);
}

.neon-blue {
    color: var(--neon-blue);
    text-shadow: 0 0 20px var(--neon-blue), 0 0 30px var(--neon-blue);
}

.neon-green {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green), 0 0 30px var(--neon-green);
}

.about-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-bubble {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: var(--chrome);
    border: 5px solid var(--red-leather);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    color: var(--black);
    transition: all 0.3s;
}

.feature-bubble:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px var(--neon-pink);
}

.bubble-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.feature-bubble h3 {
    font-size: 1rem;
    margin-bottom: 5px;
}

.feature-bubble p {
    font-size: 0.8rem;
}

/* Menu Section */
.menu-plates {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
}

.plate-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.menu-plate {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #ffffff, #e8e8e8);
    border: 8px solid var(--red-leather);
    box-shadow:
        inset 0 -10px 20px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    position: relative;
}

.menu-plate:hover {
    transform: scale(1.1) rotate(0deg) !important;
    box-shadow:
        inset 0 -10px 20px rgba(0, 0, 0, 0.2),
        0 10px 30px rgba(0, 0, 0, 0.5),
        0 0 40px var(--neon-blue);
}

.rotate-left {
    transform: rotate(-5deg);
}

.rotate-right {
    transform: rotate(5deg);
}

.plate-content {
    text-align: center;
    color: var(--black);
    padding: 20px;
}

.plate-content h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--red-leather);
}

.plate-content p {
    font-size: 0.85rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.price {
    display: block;
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--neon-pink);
    text-shadow: 0 0 5px var(--neon-pink);
}

/* Jukebox Section */
.jukebox-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.jukebox {
    width: 400px;
    border-radius: 50px;
    overflow: hidden;
}

.jukebox-top {
    background: linear-gradient(180deg, #ff1493 0%, #c41e3a 100%);
    padding: 20px;
    border-radius: 50px 50px 0 0;
    display: flex;
    justify-content: center;
}

.jukebox-dome {
    width: 150px;
    height: 75px;
    background: radial-gradient(ellipse at center top, rgba(255, 255, 255, 0.8), rgba(255, 20, 147, 0.6));
    border-radius: 50% 50% 0 0;
    border: 3px solid var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.jukebox-light {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--neon-green);
    box-shadow: 0 0 20px var(--neon-green), 0 0 40px var(--neon-green);
    animation: glow 2s infinite;
}

@keyframes glow {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.jukebox-body {
    background: var(--chrome);
    border: 5px solid var(--cream);
    padding: 30px;
    border-radius: 0 0 50px 50px;
}

.jukebox-display {
    background: var(--black);
    border-radius: 20px;
    padding: 15px;
    margin-bottom: 20px;
    border: 3px solid var(--red-leather);
}

.song-title {
    color: var(--neon-green);
    text-align: center;
    font-size: 1.2rem;
    text-shadow: 0 0 10px var(--neon-green);
    animation: scroll-text 3s linear infinite;
}

.jukebox-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 20px;
}

.juke-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--red-leather);
    border: 3px solid var(--cream);
    color: var(--cream);
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: 'Righteous', cursive;
}

.juke-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px var(--neon-pink);
    background: var(--neon-pink);
}

.juke-btn:active {
    transform: scale(0.95);
}

.vinyl-animation {
    display: flex;
    justify-content: center;
}

.vinyl-record {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a1a1a 30%, #2a2a2a 50%, #1a1a1a 100%);
    border: 3px solid #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.vinyl-record.playing {
    animation: spin 2s linear infinite;
}

.vinyl-center {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--red-leather);
    border: 2px solid var(--cream);
}

/* Visit Section */
.visit-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.info-oval {
    width: 280px;
    padding: 30px 40px;
    border-radius: 50%;
    background: var(--chrome);
    border: 5px solid var(--turquoise);
    box-shadow: 0 0 30px rgba(64, 224, 208, 0.5);
    text-align: center;
    color: var(--black);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: all 0.3s;
}

.info-oval:hover {
    transform: scale(1.05);
    box-shadow: 0 0 50px var(--turquoise);
}

.info-oval h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--red-leather);
}

.info-oval p {
    font-size: 0.95rem;
    margin: 5px 0;
}

.cta-oval {
    max-width: 600px;
    padding: 40px 60px;
    border-radius: 100px;
    background: radial-gradient(ellipse, var(--red-leather), rgba(196, 30, 58, 0.8));
    border: 5px solid var(--cream);
    box-shadow: 0 0 40px var(--neon-pink);
    text-align: center;
}

.sign-off {
    font-family: 'Pacifico', cursive;
    font-size: 1.8rem;
    color: var(--cream);
}

/* Footer */
.footer-oval {
    background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.9), rgba(26, 26, 26, 0.9));
    border-radius: 100px 100px 0 0;
    padding: 30px;
    text-align: center;
    margin-top: 60px;
    border-top: 5px solid var(--neon-pink);
}

.footer-oval p {
    margin: 5px 0;
    font-size: 0.9rem;
}

.portfolio-link a {
    color: var(--neon-blue);
    text-decoration: none;
    text-shadow: 0 0 10px var(--neon-blue);
    transition: all 0.3s;
}

.portfolio-link a:hover {
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-green);
}

/* Responsive Design */
@media (max-width: 768px) {
    .circular-nav {
        top: 10px;
        right: 10px;
    }

    .nav-circle {
        width: 150px;
        height: 150px;
    }

    .nav-dot {
        width: 50px;
        height: 50px;
        font-size: 8px;
    }

    .chrome-circle {
        width: 200px;
        height: 200px;
    }

    .record {
        width: 170px;
        height: 170px;
    }

    .record-label {
        width: 90px;
        height: 90px;
    }

    .menu-plate {
        width: 180px;
        height: 180px;
    }

    .jukebox {
        width: 320px;
    }

    .info-oval {
        width: 240px;
    }

    .feature-bubble {
        width: 150px;
        height: 150px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 40px 15px;
    }

    .oval-container {
        padding: 40px 20px;
    }

    .cta-oval {
        padding: 30px 40px;
    }

    .sign-off {
        font-size: 1.3rem;
    }
}
