/* =========================================
   02 Pastel Dream (Doğum Günü)
   ========================================= */

:root {
    --pastel-pink: #FFD1DC;
    --pastel-mint: #B2F0E6;
    --pastel-peach: #FFDAC1;
    --pastel-yellow: #FFFFD1;
    --text-color: #5D5D5D;
    --white: #FFFFFF;
    
    --font-main: 'Nunito', sans-serif;
}

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

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

/* Floating Elements (Balloons/Confetti abstraction) */
.floating-elements {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}
.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}
.c1 { width: 150px; height: 150px; background-color: var(--pastel-mint); top: 10%; left: 5%; animation: float 8s ease-in-out infinite alternate; }
.c2 { width: 100px; height: 100px; background-color: var(--pastel-peach); top: 40%; right: 10%; animation: float 6s ease-in-out infinite alternate-reverse; }
.c3 { width: 200px; height: 200px; background-color: var(--pastel-yellow); bottom: -50px; left: 20%; animation: float 10s ease-in-out infinite alternate; }
.c4 { width: 80px; height: 80px; background-color: var(--pastel-pink); top: 20%; right: 30%; animation: float 7s ease-in-out infinite alternate-reverse; }

@keyframes float {
    0% { transform: translateY(0) scale(1); }
    100% { transform: translateY(-50px) scale(1.05); }
}

.pastel-wrapper {
    position: relative;
    z-index: 1;
}

/* Hero Section */
.pastel-hero {
    position: relative;
    background-color: var(--pastel-pink);
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 50px;
}

.hero-card {
    background-color: var(--white);
    padding: 50px 40px;
    border-radius: 40px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
    z-index: 10;
    margin: 0 20px;
}

.eyebrow {
    font-size: 1rem;
    font-weight: 800;
    color: var(--pastel-mint);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.names {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--pastel-pink);
    line-height: 1.1;
    margin-bottom: 20px;
}

.tagline {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-color);
}

.curved-separator {
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    z-index: 5;
}

/* Details Section */
.pastel-details {
    padding: 80px 5%;
    background-color: var(--white);
}

.details-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    max-width: 900px;
    margin: 0 auto;
}

.detail-box {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.03);
    transition: transform 0.3s ease;
}
.detail-box:hover {
    transform: translateY(-5px);
}
.mint-box { background-color: var(--pastel-mint); }
.peach-box { background-color: var(--pastel-peach); }

.icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-color);
    margin: 0 auto 20px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.detail-box h3 {
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.highlight {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 10px;
    color: var(--white);
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}

.btn-pastel {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--text-color);
    text-decoration: none;
    font-weight: 800;
    border-radius: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.btn-pastel:hover {
    transform: scale(1.05);
}

/* RSVP Section */
.pastel-rsvp {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    background-color: var(--white);
}

.rsvp-card {
    background-color: var(--pastel-yellow);
    border-radius: 40px;
    padding: 50px 40px;
    text-align: center;
    width: 100%;
    max-width: 600px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.rsvp-card h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}
.rsvp-card p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.pastel-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pastel-form input,
.pastel-form select {
    padding: 15px;
    background-color: var(--white);
    border: 2px solid transparent;
    border-radius: 15px;
    color: var(--text-color);
    font-family: var(--font-main);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: border-color 0.3s ease;
}
.pastel-form input:focus,
.pastel-form select:focus {
    border-color: var(--pastel-mint);
}

.btn-pastel-solid {
    padding: 15px;
    background-color: var(--pastel-pink);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: var(--font-main);
    font-weight: 900;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
    text-shadow: 1px 1px 0 rgba(0,0,0,0.1);
}
.btn-pastel-solid:hover {
    background-color: #FFB6C1;
    transform: scale(1.02);
}

.form-message {
    margin-top: 15px;
    font-weight: 800;
    color: var(--pastel-pink);
}

.pastel-footer {
    text-align: center;
    padding: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #999;
    background-color: var(--white);
}
.pastel-footer a {
    color: var(--pastel-mint);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 2.5rem; }
    .hero-card { padding: 40px 20px; border-radius: 30px; }
}
