/* Leon's Frozen Custard - Neon Retro Styling */

:root {
    --hot-pink: #FF1493;
    --neon-pink: #FF69B4;
    --teal: #00CED1;
    --dark-teal: #008B8B;
    --electric-blue: #00FFFF;
    --neon-yellow: #FFFF00;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --light-bg: #1a1a1a;
    --white: #ffffff;
    --cream: #FFF8DC;
    --checkered: repeating-linear-gradient(45deg, #000 0, #000 10px, #fff 10px, #fff 20px);
}

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

body {
    font-family: 'Rubik', sans-serif;
    background-color: var(--dark-bg);
    color: var(--white);
    overflow-x: hidden;
}

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

/* Navigation */
.main-nav {
    background: linear-gradient(180deg, rgba(0,0,0,0.95) 0%, rgba(0,0,0,0.85) 100%);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 3px solid var(--hot-pink);
    box-shadow: 0 0 20px rgba(255,20,147,0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.logo img {
    height: 80px;
    filter: drop-shadow(0 0 10px rgba(0,206,209,0.8));
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 20px rgba(255,20,147,0.9));
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    border-radius: 5px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--hot-pink);
    border-color: var(--teal);
    text-shadow: 0 0 10px rgba(255,20,147,0.8);
    box-shadow: 0 0 15px rgba(0,206,209,0.6);
}

.nav-links a.cta-link {
    background: linear-gradient(135deg, var(--hot-pink), var(--teal));
    color: var(--white);
    font-weight: bold;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0%, 100% { box-shadow: 0 0 10px rgba(255,20,147,0.8); }
    50% { box-shadow: 0 0 25px rgba(0,206,209,1); }
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background: var(--hot-pink);
    border-radius: 2px;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 2rem;
    overflow: hidden;
    background: radial-gradient(ellipse at top, rgba(255,20,147,0.1), transparent),
                radial-gradient(ellipse at bottom, rgba(0,206,209,0.1), transparent),
                var(--darker-bg);
}

.neon-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(0deg, rgba(255,20,147,0.03) 0px, transparent 2px, transparent 4px, rgba(0,206,209,0.03) 4px, transparent 6px),
        repeating-linear-gradient(90deg, rgba(0,206,209,0.03) 0px, transparent 2px, transparent 4px, rgba(255,20,147,0.03) 4px, transparent 6px);
    pointer-events: none;
    animation: scan 8s linear infinite;
}

@keyframes scan {
    0% { transform: translateY(0); }
    100% { transform: translateY(50px); }
}

.hero-content {
    flex: 1;
    z-index: 2;
    max-width: 600px;
}

.neon-text {
    font-family: 'Righteous', cursive;
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--white);
    text-shadow: 
        0 0 10px var(--hot-pink),
        0 0 20px var(--hot-pink),
        0 0 30px var(--teal),
        0 0 40px var(--teal),
        0 0 70px var(--hot-pink);
    animation: flicker 3s infinite alternate;
    margin-bottom: 1rem;
    line-height: 1.1;
}

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

.hero-subtitle {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--teal);
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-shadow: 0 0 10px rgba(0,206,209,0.8);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--hot-pink), var(--neon-pink));
    color: var(--white);
    box-shadow: 0 0 20px rgba(255,20,147,0.6);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(255,20,147,1);
}

.btn-secondary {
    background: linear-gradient(135deg, var(--teal), var(--dark-teal));
    color: var(--white);
    box-shadow: 0 0 20px rgba(0,206,209,0.6);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0,206,209,1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--hot-pink);
    color: var(--hot-pink);
}

.btn-outline:hover {
    background: var(--hot-pink);
    color: var(--white);
    box-shadow: 0 0 20px rgba(255,20,147,0.8);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    border: 4px solid var(--teal);
}

.neon-glow {
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255,20,147,0.6),
                    0 0 40px rgba(0,206,209,0.4);
    }
    50% {
        box-shadow: 0 0 40px rgba(255,20,147,0.8),
                    0 0 60px rgba(0,206,209,0.6);
    }
}

/* Featured Section */
.featured {
    padding: 6rem 0;
    background: var(--dark-bg);
    position: relative;
}

.featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--hot-pink), var(--teal), var(--hot-pink));
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, var(--hot-pink), var(--teal), var(--hot-pink));
    border-radius: 15px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 40px rgba(255,20,147,0.4);
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(0,206,209,0.8));
}

.feature-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--hot-pink);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.feature-card p {
    color: var(--cream);
    line-height: 1.6;
}

/* Annalise Section */
.annalise-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255,20,147,0.05), rgba(0,206,209,0.05));
}

.annalise-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.annalise-image img {
    width: 100%;
    border-radius: 20px;
}

.glow-border {
    border: 4px solid var(--hot-pink);
    box-shadow: 0 0 30px rgba(255,20,147,0.6),
                inset 0 0 20px rgba(0,206,209,0.3);
}

.annalise-text h2 {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    color: var(--teal);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px rgba(0,206,209,0.8);
}

.accent-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--hot-pink);
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
}

.annalise-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--cream);
    margin-bottom: 2rem;
}

/* Quick Links */
.quick-links {
    padding: 6rem 0;
    background: var(--darker-bg);
}

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

.link-card {
    background: var(--light-bg);
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.link-card.pink-glow {
    border-color: var(--hot-pink);
}

.link-card.teal-glow {
    border-color: var(--teal);
}

.link-card:hover {
    transform: translateY(-10px) scale(1.02);
}

.link-card.pink-glow:hover {
    box-shadow: 0 10px 50px rgba(255,20,147,0.6);
    border-color: var(--hot-pink);
}

.link-card.teal-glow:hover {
    box-shadow: 0 10px 50px rgba(0,206,209,0.6);
    border-color: var(--teal);
}

.link-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.link-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.link-card p {
    color: var(--cream);
}

/* Location Section */
.location {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.location-info h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: var(--hot-pink);
    margin-bottom: 2rem;
    text-shadow: 0 0 20px rgba(255,20,147,0.8);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--light-bg);
    border-radius: 10px;
    border-left: 4px solid var(--teal);
}

.info-item .icon {
    font-size: 2rem;
}

.info-item a {
    color: var(--teal);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: var(--hot-pink);
    text-shadow: 0 0 10px rgba(255,20,147,0.6);
}

.followers {
    color: var(--hot-pink);
    font-weight: bold;
}

.location-image img {
    width: 100%;
    border-radius: 20px;
}

/* Footer */
.main-footer {
    background: var(--darker-bg);
    padding: 4rem 0 2rem;
    border-top: 3px solid var(--hot-pink);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 120px;
    filter: drop-shadow(0 0 15px rgba(0,206,209,0.8));
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--teal);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.footer-col ul {
    list-style: none;
}

.footer-col a {
    color: var(--cream);
    text-decoration: none;
    display: block;
    padding: 0.5rem 0;
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--hot-pink);
    padding-left: 10px;
    text-shadow: 0 0 10px rgba(255,20,147,0.6);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--light-bg);
    color: var(--cream);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(0,0,0,0.98);
        flex-direction: column;
        padding: 2rem;
        border-top: 2px solid var(--hot-pink);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
    }
    
    .annalise-content,
    .location-content {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .neon-text {
        font-size: 3rem;
    }
    
    .links-grid {
        grid-template-columns: 1fr;
    }
}

/* Additional Page Styles */
.page-hero {
    padding: 6rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(0,206,209,0.1));
}

.story-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-text h2 {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    color: var(--teal);
    margin-bottom: 1.5rem;
}

.story-text p {
    color: var(--cream);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.annalise-feature {
    padding: 6rem 0;
    background: var(--darker-bg);
}

.section-title {
    font-family: 'Righteous', cursive;
    font-size: 3rem;
    text-align: center;
    color: var(--hot-pink);
    text-shadow: 0 0 20px rgba(255,20,147,0.8);
    margin-bottom: 3rem;
}

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

.annalise-card {
    background: var(--light-bg);
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid var(--teal);
    transition: all 0.3s ease;
}

.annalise-card:hover {
    transform: translateY(-10px);
    border-color: var(--hot-pink);
    box-shadow: 0 10px 40px rgba(255,20,147,0.6);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.annalise-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--teal);
    font-size: 1.8rem;
    padding: 1.5rem 1.5rem 0.5rem;
}

.annalise-card p {
    color: var(--cream);
    padding: 0 1.5rem 1.5rem;
    line-height: 1.6;
}

.special-section {
    padding: 6rem 0;
    background: var(--dark-bg);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.special-item {
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 15px;
    border: 2px solid var(--teal);
    text-align: center;
    transition: all 0.3s ease;
}

.special-item:hover {
    transform: translateY(-10px);
    border-color: var(--hot-pink);
    box-shadow: 0 10px 40px rgba(255,20,147,0.6);
}

.special-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.special-item h3 {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--teal);
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.special-item p {
    color: var(--cream);
    line-height: 1.6;
}

.cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(255,20,147,0.1), rgba(0,206,209,0.1));
    text-align: center;
}

.cta-section h2 {
    font-family: 'Righteous', cursive;
    font-size: 3.5rem;
    color: var(--hot-pink);
    text-shadow: 0 0 20px rgba(255,20,147,0.8);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.3rem;
    color: var(--cream);
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .story-content {
        grid-template-columns: 1fr;
    }
    
    .neon-text {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}
