:root {
    --primary-bg: #fdfbf7;
    --text-dark: #1f2937;
    --text-light: #4b5563;
    
    /* Confetti Colors */
    --color-pink: #ec4899;
    --color-blue: #38bdf8;
    --color-purple: #a78bfa;
    --color-yellow: #fde047;
    --color-green: #86efac;

    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(253, 251, 247, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo img {
    height: 70px;
    width: 70px;
    object-fit: contain;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-dark);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    font-weight: 600;
}

.nav-links a:not(.btn-primary) {
    position: relative;
    transition: var(--transition);
}

.nav-links a:not(.btn-primary):hover {
    color: var(--color-pink);
}

.btn-primary {
    background: linear-gradient(45deg, var(--color-pink), var(--color-purple));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    border: none;
    box-shadow: 0 4px 15px rgba(236, 72, 153, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(236, 72, 153, 0.4);
    color: white;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    padding-top: 80px;
    position: relative;
}

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

.pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(236, 72, 153, 0.1);
    color: var(--color-pink);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.highlight {
    background: linear-gradient(45deg, var(--color-pink), var(--color-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 500px;
    height: 500px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    overflow: hidden;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@keyframes morph {
    0% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

/* Sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 5%;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.container.reverse {
    flex-direction: row-reverse;
}

.text-center {
    flex-direction: column;
    text-align: center;
}

.about {
    background: linear-gradient(to bottom, white, rgba(253, 224, 71, 0.05));
    text-align: center;
    padding: 6rem 5%;
}

.about-text {
    max-width: 800px;
    margin: 0 auto;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.about p {
    font-size: 1.25rem;
    color: var(--text-light);
}

.category {
    font-weight: 600;
    color: var(--color-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    display: block;
    margin-bottom: 1rem;
}

.party .category {
    color: var(--color-purple);
}

.content {
    flex: 1;
}

.content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.content p {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.baking {
    background: linear-gradient(to right, rgba(236, 72, 153, 0.03), rgba(253, 251, 247, 1));
}

.party {
    background: linear-gradient(to left, rgba(56, 189, 248, 0.03), rgba(253, 251, 247, 1));
}

.features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.125rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eee;
}

.icon.pink { background: rgba(236, 72, 153, 0.1); }
.icon.blue { background: rgba(56, 189, 248, 0.1); }
.icon.purple { background: rgba(167, 139, 250, 0.1); }
.icon.yellow { background: rgba(253, 224, 71, 0.2); }
.icon.green { background: rgba(134, 239, 172, 0.2); }

.image-grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: center;
}

.grid-img {
    width: 100%;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.grid-img:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 50px rgba(0,0,0,0.15);
}

.tall {
    height: 400px;
}

.wide {
    height: 300px;
    margin-top: 4rem;
}

/* Visit Section */
.visit {
    background: white;
}

.visit h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.visit p {
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 2rem;
    width: 100%;
    flex-wrap: wrap;
}

.info-card {
    background: var(--primary-bg);
    padding: 2rem;
    border-radius: 20px;
    min-width: 250px;
    flex: 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.info-card p {
    margin-bottom: 0;
    font-size: 1rem;
}

/* Footer */
footer {
    text-align: center;
    padding: 2rem;
    background: var(--text-dark);
    color: white;
}

/* Confetti Container */
#confetti-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 50;
    overflow: hidden;
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    animation: fall linear infinite;
}

@keyframes fall {
    0% { transform: translateY(-10vh) rotate(0deg); opacity: 1; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0.2; }
}

.brands {
    margin-top: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.brands p {
    margin-bottom: 0;
    font-size: 1rem;
    color: var(--text-dark);
}

.edible-prints {
    background: linear-gradient(to right, rgba(167, 139, 250, 0.05), rgba(253, 251, 247, 1));
}

.single-image {
    display: flex;
    justify-content: center;
}

.single-image .grid-img {
    height: 500px;
    width: auto;
    max-width: 100%;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.social-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    background: white;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    color: var(--color-pink);
}

/* Responsive */
@media (max-width: 900px) {
    .container {
        flex-direction: column !important;
        text-align: center;
        gap: 2rem;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 120px;
    }
    
    .hero-content {
        margin-bottom: 3rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .image-wrapper {
        width: 100%;
        max-width: 400px;
        height: 400px;
    }
    
    .features li {
        justify-content: center;
    }
    
    .nav-links {
        display: none;
    }
}
