@import url('https://fonts.googleapis.com/css2?family=Bubblegum+Sans&family=Inter:wght@400;700&display=swap');

:root {
    --candy-bg: #FFF8DC;
    --pink-card: #F7C8F6;
    /* Light Pink */
    --hot-pink: #FF69B4;
    --orange-accent: #FFB347;
    --price-orange: #FF8C00;
    --neon-border: #FF1493;
    --white-text: #FFFFFF;
    --black-outline: #000000;

    --font-heading: 'Bubblegum Sans', cursive;
    --font-body: 'Inter', sans-serif;

    --transition-speed: 0.3s;
}

[data-theme="dark"] {
    --candy-bg: #2a1a0f;
    --pink-card: #4a2c3a;
    --black-outline: #FF69B4;
    --text-color: #f0f0f0;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--candy-bg);
    color: #333;
    transition: background-color 0.3s, color 0.3s;
    overflow-x: hidden;
}

[data-theme="dark"] body {
    color: #f0f0f0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Typography */
h1,
h2,
h3,
h4,
.logo,
.nav-links a {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

/* Sections */
.section {
    padding: 6rem 0 4rem;
    /* Top padding to prevent clipping with fixed nav or previous elements */
}

.section-title {
    font-size: 3rem;
    text-align: center;
    color: var(--hot-pink);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
    animation: bounceTitle 2s infinite ease-in-out;
}

@keyframes bounceTitle {

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

    50% {
        transform: translateY(-10px);
    }
}

/* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: rgba(247, 200, 246, 0.9);
    height: 80px;
    display: flex;
    align-items: center;
    z-index: 1000;
    border-bottom: 4px dashed var(--neon-border);
    backdrop-filter: blur(5px);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 2rem;
    color: var(--hot-pink);
    text-shadow: 2px 2px 0px white, 4px 4px 0px var(--price-orange);
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    font-size: 1.2rem;
    color: var(--neon-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: var(--hot-pink);
    color: white;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

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

.menu-toggle span {
    width: 30px;
    height: 4px;
    background: var(--hot-pink);
    border-radius: 5px;
}

/* Hero */
.hero-section {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(135deg, var(--pink-card), var(--candy-bg));
}

.hero-title {
    font-size: clamp(4rem, 15vw, 8rem);
    color: var(--hot-pink);
    text-shadow: 3px 3px 0 white, 6px 6px 0 var(--price-orange);
    margin-bottom: 1rem;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(0.95);
    }
}

.hero-logo-img {
    max-width: 300px;
    width: 80%;
    height: auto;
    margin-bottom: 2rem;
    animation: float 3s ease-in-out infinite;
}

.btn {
    padding: 1rem 3rem;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-size: 1.5rem;
    border-radius: 50px;
    background: var(--orange-accent);
    color: white;
    border: 3px solid var(--white-text);
    box-shadow: 0 6px 0 var(--price-orange);
    cursor: pointer;
    transition: all 0.2s;
    display: inline-block;
}

.btn:hover {
    transform: translateY(2px) rotate(-2deg);
    box-shadow: 0 3px 0 var(--price-orange);
    background: var(--price-orange);
}

.btn:active {
    transform: translateY(6px);
    box-shadow: none;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 4px dashed var(--neon-border);
    background: white;
    padding: 5px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 12px 24px rgba(255, 20, 147, 0.3);
    z-index: 10;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

/* Pricesheet */
.prices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.price-card {
    background: var(--pink-card);
    border: 4px dashed var(--neon-border);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 8px 8px 0px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.price-card:hover {
    transform: translateY(-5px) rotate(1deg);
    box-shadow: 12px 12px 0px rgba(0, 0, 0, 0.15);
    background: #fce1fb;
}

.price-icon {
    font-size: 3rem;
    color: var(--hot-pink);
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

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

    50% {
        transform: translateY(-10px);
    }
}

.price-header {
    background: var(--white-text);
    color: var(--neon-border);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 4px 0 rgba(0, 0, 0, 0.1);
}

.price-title {
    font-size: 2rem;
    color: var(--price-orange);
    text-shadow: 1px 1px 0 white;
}

.price-amount {
    background: var(--price-orange);
    color: white;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50%;
    display: inline-block;
    margin: 1rem 0;
    transform: rotate(-5deg);
    box-shadow: 0 4px 0 #cc7000;
}

.price-desc {
    font-family: var(--font-body);
    opacity: 0.8;
}

/* Socials */
.socials-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.social-link {
    font-size: 3rem;
    color: var(--orange-accent);
    background: white;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 3px dashed var(--hot-pink);
    transition: 0.3s;
    box-shadow: 0 6px 0 rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: scale(1.1) rotate(15deg);
    color: var(--hot-pink);
    border-color: var(--orange-accent);
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    border: 10px solid var(--pink-card);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(255, 105, 180, 0.4);
}

.lightbox-close {
    position: absolute;
    color: var(--hot-pink);
    font-size: 4rem;
    top: 30px;
    right: 40px;
    cursor: pointer;
    line-height: 1;
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: var(--pink-card);
        padding: 2rem;
        border-bottom: 4px dashed var(--neon-border);
        transform: translateY(-150%);
        transition: 0.3s ease-out;
    }

    .nav-links.active {
        transform: translateY(0);
    }

    .nav-links a {
        width: 100%;
        text-align: center;
    }
}

/* Particles */
.confetti {
    position: fixed;
    width: 10px;
    height: 10px;
    background-color: var(--hot-pink);
    top: -10px;
    z-index: 9999;
    pointer-events: none;
    border-radius: 3px;
    animation: fall linear forwards;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(720deg);
    }
}