/* =========================================
   04 Teddy Bear (Baby Shower)
   ========================================= */

:root {
    --teddy-brown: #8B5A2B;
    --teddy-light-brown: #CD853F;
    --teddy-honey: #F4A460;
    --teddy-cream: #FFF8DC;
    --white: #FFFFFF;
    
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Comfortaa', cursive;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--teddy-cream);
    color: var(--teddy-brown);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Background Dots */
.dots-bg {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 0;
    background-color: var(--teddy-cream);
    background-image: radial-gradient(var(--teddy-honey) 2px, transparent 2px);
    background-size: 40px 40px;
    opacity: 0.3;
}

/* Hero Section */
.teddy-hero {
    position: relative;
    z-index: 2;
    min-height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 100px 20px 150px;
    background-color: var(--teddy-light-brown);
}

.hero-content {
    background-color: var(--teddy-cream);
    padding: 50px 40px;
    border-radius: 50px;
    border: 8px dashed var(--teddy-honey);
    max-width: 600px;
    width: 100%;
    position: relative;
    box-shadow: 0 15px 30px rgba(139, 90, 43, 0.3);
}

.icon-circle {
    width: 120px; height: 120px;
    background-color: var(--teddy-honey);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: -110px auto 20px;
    border: 10px solid var(--teddy-cream);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
.teddy-icon {
    font-size: 4rem;
    color: var(--white);
}

.teddy-eyebrow {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teddy-light-brown);
    margin-bottom: 15px;
}

.names {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--teddy-brown);
    line-height: 1.1;
    margin-bottom: 20px;
    text-shadow: 2px 2px 0 var(--white);
}

.tagline {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--teddy-brown);
}

/* Scallop Border */
.scallop-border {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    z-index: 3;
    background-image: radial-gradient(circle at 15px 0, transparent 15px, var(--teddy-cream) 16px);
    background-size: 30px 30px;
    background-repeat: repeat-x;
}

/* Details Section */
.teddy-details {
    position: relative;
    z-index: 5;
    padding: 100px 5%;
    background-color: var(--teddy-cream);
}

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

.teddy-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--white);
    border-radius: 30px;
    padding: 50px 30px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(205, 133, 63, 0.15);
    border: 3px solid var(--teddy-cream);
    transition: transform 0.3s ease;
}
.teddy-card:hover {
    transform: translateY(-5px);
    border-color: var(--teddy-honey);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}
.text-honey { color: var(--teddy-honey); }
.text-brown { color: var(--teddy-light-brown); }

.teddy-card h2 {
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--teddy-brown);
    margin-bottom: 10px;
}

.highlight {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--teddy-brown);
    margin-bottom: 5px;
}

.btn-teddy {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--teddy-honey);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 20px;
    margin-top: 15px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(244, 164, 96, 0.3);
}
.btn-teddy:hover {
    background-color: var(--teddy-brown);
}

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

.rsvp-content {
    background-color: var(--teddy-brown);
    padding: 50px 40px;
    border-radius: 40px;
    max-width: 600px;
    width: 100%;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 40px rgba(139, 90, 43, 0.4);
    border: 5px solid var(--teddy-honey);
}

.rsvp-content h2 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--teddy-cream);
}
.rsvp-content p {
    font-weight: 700;
    margin-bottom: 30px;
}

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

.teddy-form input,
.teddy-form select {
    padding: 15px;
    background-color: var(--teddy-cream);
    border: none;
    border-radius: 15px;
    color: var(--teddy-brown);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    outline: none;
    transition: box-shadow 0.3s ease;
}
.teddy-form input:focus,
.teddy-form select:focus {
    box-shadow: 0 0 0 4px var(--teddy-honey);
}

.btn-teddy-solid {
    padding: 15px;
    background-color: var(--teddy-honey);
    color: var(--teddy-brown);
    border: none;
    border-radius: 15px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-teddy-solid:hover {
    background-color: var(--teddy-cream);
    color: var(--teddy-brown);
}

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

.teddy-footer {
    position: relative;
    z-index: 5;
    background-color: var(--teddy-light-brown);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: var(--white);
}
.teddy-footer a {
    color: var(--teddy-cream);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 3rem; }
    .hero-content { padding: 40px 20px; border-radius: 30px; }
    .scallop-border { background-size: 20px 20px; background-image: radial-gradient(circle at 10px 0, transparent 10px, var(--teddy-cream) 11px); }
}
