:root {
    /* Brand Identity Colors based on old site */
    --clr-brand-pink: #FF66B2;
    --clr-brand-blue: #00BFFF;
    --clr-brand-dark: #1E293B;
    --clr-brand-light: #F8FAFC;
    --clr-text: #334155;

    /* Gradients for modern feel */
    --grad-primary: linear-gradient(135deg, var(--clr-brand-blue), #0099CC);
    --grad-sweet: linear-gradient(135deg, var(--clr-brand-pink), #FF3385);

    /* Fonts */
    --font-heading: 'Chewy', cursive;
    /* Original Identity Font */
    --font-alt-heading: 'Schoolbell', cursive;
    /* Original Identity Font */
    --font-body: 'Outfit', sans-serif;
    /* Clean, modern readable body font */

    /* Spacing & Layout */
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --border-rad: 12px;
    --border-rad-lg: 24px;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    font-weight: normal;
}

.brand-heading {
    font-size: 4rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-size: 3rem;
    color: var(--clr-brand-pink);
    margin-bottom: var(--space-md);
}

.text-white {
    color: white !important;
}

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

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

.section {
    padding: var(--space-xl) 0;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--grad-sweet);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 102, 178, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 102, 178, 0.6);
}

.btn-secondary {
    background: white;
    color: var(--clr-brand-pink);
    box-shadow: var(--shadow);
}

.btn-secondary:hover {
    transform: translateY(-3px);
    color: var(--clr-brand-blue);
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem var(--space-md);
}

.logo img {
    height: 70px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--clr-brand-dark);
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--clr-brand-blue);
}

.penguin-link {
    background: var(--clr-brand-pink);
    color: white !important;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
}

.penguin-link:hover {
    background: #ff4d94;
    transform: scale(1.05);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: var(--clr-brand-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-color: var(--clr-brand-blue);
    background-image: url('../assets/hero_bg.jpg');
    background-size: cover;
    background-position: center;
    margin-top: 80px;
    /* Offset for navbar */
    overflow: hidden;
}

#hero-bg-dynamic {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 191, 255, 0.7), rgba(30, 41, 59, 0.5));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: var(--space-md);
}

.hero-address {
    font-size: 1.5rem;
    color: white;
    font-family: var(--font-alt-heading);
    margin-bottom: var(--space-md);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.image-placeholder {
    width: 100%;
    border-radius: var(--border-rad-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.image-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.gradient-bg {
    background: var(--grad-primary);
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Menu Section */
.menu {
    background: var(--grad-primary);
    position: relative;
}

/* Wavy top border effect */
.menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 40px;
    background: var(--clr-brand-light);
    border-radius: 0 0 50% 50% / 0 0 100% 100%;
}

.menu-intro {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.menu-desc {
    max-width: 800px;
    margin: 0 auto var(--space-xl);
    font-size: 1.1rem;
    opacity: 0.9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.feature-card {
    background: white;
    padding: var(--space-lg) var(--space-md);
    border-radius: var(--border-rad-lg);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card h3 {
    color: var(--clr-brand-pink);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--clr-text);
}

/* Party Section */
.party {
    background-color: var(--clr-brand-light);
}

.party-content {
    background: white;
    padding: var(--space-xl);
    border-radius: var(--border-rad-lg);
    box-shadow: var(--shadow);
    border: 4px dashed var(--clr-brand-blue);
}

.lead {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--space-md);
    color: var(--clr-brand-dark);
}

.party-list {
    list-style: none;
    font-size: 1.2rem;
}

.party-list li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.party-list li::before {
    content: '🎉';
    position: absolute;
    left: 0;
}

/* CTA Section */
.cta {
    background: var(--grad-sweet);
    color: white;
}

.cta-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--space-lg);
    align-items: center;
}

.cta .section-title {
    color: white;
}

.cta-desc {
    font-size: 1.2rem;
    margin-bottom: var(--space-md);
}

.offer-box {
    background: rgba(255, 255, 255, 0.2);
    padding: var(--space-md);
    border-radius: var(--border-rad);
    margin-bottom: var(--space-md);
    font-size: 1.2rem;
    border: 2px solid white;
}

.cta-mascot img {
    width: 100%;
    max-width: 300px;
    height: auto;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

/* Footer */
.footer {
    background-color: var(--clr-brand-dark);
    color: white;
    padding: var(--space-xl) 0 var(--space-sm);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-lg);
}

.footer-logo {
    height: 80px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.footer h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--clr-brand-blue);
    margin-bottom: 1rem;
}

.footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--clr-brand-pink);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--space-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {

    .about-grid,
    .cta-container {
        grid-template-columns: 1fr;
    }

    .cta-mascot {
        text-align: center;
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
        padding: var(--space-md) 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-item {
        margin: 1.5rem 0;
    }

    .penguin-link {
        display: inline-block;
        margin-top: 1rem;
    }

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

    .brand-heading {
        font-size: 3rem;
    }
}