/* =========================================
   01 It's A Boy (Baby Shower)
   ========================================= */

:root {
    --boy-blue: #89CFF0;
    --boy-dark-blue: #4A90E2;
    --boy-light: #E6F7FF;
    --text-grey: #555555;
    --white: #FFFFFF;
    
    --font-heading: 'Fredoka', sans-serif;
    --font-body: 'Quicksand', sans-serif;
}

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

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

.boy-wrapper {
    position: relative;
    width: 100%;
}

/* Clouds Background */
.clouds-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    pointer-events: none;
    background: linear-gradient(180deg, var(--boy-blue) 0%, var(--boy-light) 100%);
}

.cloud {
    position: absolute;
    color: rgba(255, 255, 255, 0.4);
    animation: drift linear infinite;
}
.c1 { font-size: 8rem; top: 10%; left: -10%; animation-duration: 35s; }
.c2 { font-size: 12rem; top: 30%; left: -20%; animation-duration: 45s; animation-delay: -10s; }
.c3 { font-size: 6rem; top: 50%; left: -5%; animation-duration: 25s; animation-delay: -5s; }
.c4 { font-size: 10rem; top: 70%; left: -15%; animation-duration: 40s; animation-delay: -20s; }

@keyframes drift {
    0% { transform: translateX(0); }
    100% { transform: translateX(120vw); }
}

/* Hero Section */
.boy-hero {
    position: relative;
    z-index: 2;
    min-height: 85vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px 150px;
}

.hero-content {
    background: rgba(255, 255, 255, 0.85);
    padding: 50px 40px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.2);
    backdrop-filter: blur(10px);
    max-width: 600px;
    border: 4px solid var(--white);
}

.icon-wrapper {
    width: 100px;
    height: 100px;
    background-color: var(--boy-blue);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -100px auto 20px;
    border: 6px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.boy-icon {
    font-size: 4rem;
    color: var(--white);
}

.boy-eyebrow {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 3px;
    color: var(--boy-dark-blue);
    margin-bottom: 10px;
}

.names {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--boy-dark-blue);
    line-height: 1.2;
    margin-bottom: 15px;
}

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

/* Bottom Wave */
.wave-bottom {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    z-index: 3;
}

/* Details Section */
.boy-details {
    position: relative;
    z-index: 5;
    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;
}

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

.card-icon-bg {
    width: 80px; height: 80px;
    background-color: var(--white);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--boy-dark-blue);
    font-size: 3rem;
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.1);
    transform: rotate(10deg);
}
.boy-card:hover .card-icon-bg {
    transform: rotate(0deg);
    transition: transform 0.3s ease;
}

.boy-card h2 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-grey);
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.highlight {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--boy-dark-blue);
    margin-bottom: 5px;
}

.btn-boy {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--white);
    color: var(--boy-dark-blue);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    border-radius: 15px;
    margin-top: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}
.btn-boy:hover {
    background-color: var(--boy-dark-blue);
    color: var(--white);
}

/* RSVP Section */
.boy-rsvp {
    position: relative;
    z-index: 5;
    padding: 80px 5% 100px;
    background-color: var(--white);
    display: flex;
    justify-content: center;
}

.rsvp-content {
    background-color: var(--boy-blue);
    padding: 50px 40px;
    border-radius: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 15px 30px rgba(137, 207, 240, 0.4);
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}
.rsvp-content p {
    font-weight: 600;
    margin-bottom: 30px;
}

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

.boy-form input,
.boy-form select {
    padding: 15px;
    background-color: var(--white);
    border: none;
    border-radius: 15px;
    color: var(--text-grey);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}
.boy-form input:focus,
.boy-form select:focus {
    box-shadow: 0 0 0 3px rgba(255,255,255,0.5);
}

.btn-boy-solid {
    padding: 15px;
    background-color: var(--boy-dark-blue);
    color: var(--white);
    border: none;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-boy-solid:hover {
    background-color: #357ABD;
    transform: translateY(-2px);
}

.form-message {
    margin-top: 15px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--white);
}

.boy-footer {
    position: relative;
    z-index: 5;
    background-color: var(--white);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #999;
}
.boy-footer a {
    color: var(--boy-dark-blue);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 2.8rem; }
    .hero-content { padding: 40px 20px; }
}
