/* =========================================
   05 Jungle Safari (Çocuk Doğum Günü)
   ========================================= */

:root {
    --safari-green: #2E5C31;
    --safari-light-green: #6B8E23;
    --safari-brown: #5C4033;
    --safari-mustard: #DAA520;
    --safari-sand: #EEDDCC;
    --white: #FFFFFF;
    
    --font-heading: 'Chewy', cursive;
    --font-body: 'Poppins', sans-serif;
}

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

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

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

/* Decorative Leaves Using Pure CSS Shapes/SVG placeholders */
.leaf {
    position: absolute;
    background-color: var(--safari-light-green);
    border-radius: 0 100px 0 100px;
    z-index: 10;
    box-shadow: inset -5px -5px 15px rgba(0,0,0,0.1);
    animation: sway 5s ease-in-out infinite alternate;
}
.leaf::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-bottom: 3px solid rgba(255,255,255,0.3);
    border-radius: 0 100px 0 100px;
    transform: rotate(45deg);
}
.leaf-1 { width: 150px; height: 150px; top: -20px; left: -20px; transform: rotate(-30deg); }
.leaf-2 { width: 120px; height: 120px; top: 10%; right: -30px; transform: rotate(110deg); animation-delay: -2s; background-color: var(--safari-green); }
.leaf-3 { width: 100px; height: 100px; top: 40%; left: -40px; transform: rotate(20deg); animation-delay: -1s; }
.leaf-4 { width: 180px; height: 180px; bottom: 10%; right: -50px; transform: rotate(-130deg); animation-delay: -3s; }

@keyframes sway {
    0% { transform: rotate(0deg) scale(1); }
    100% { transform: rotate(15deg) scale(1.05); }
}

/* Hero Section */
.safari-hero {
    position: relative;
    z-index: 5;
    background-color: var(--safari-green);
    /* Tiger/Zebra print abstract background */
    background-image: repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(0,0,0,0.1) 15px, rgba(0,0,0,0.1) 30px);
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 50px 20px 100px;
}

.hero-card {
    background-color: var(--safari-sand);
    padding: 50px 40px;
    border-radius: 20px;
    border: 8px solid var(--safari-brown);
    box-shadow: 15px 15px 0 var(--safari-mustard);
    max-width: 600px;
    width: 100%;
}

.safari-icon {
    font-size: 5rem;
    color: var(--safari-mustard);
    margin-bottom: 10px;
    text-shadow: 2px 2px 0 var(--safari-brown);
}

.safari-eyebrow {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--safari-light-green);
    margin-bottom: 15px;
}

.names {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    color: var(--safari-brown);
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

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

/* Torn Paper Separator */
.torn-paper {
    position: absolute;
    left: 0;
    width: 100%;
    height: 40px;
    z-index: 6;
    background-image: radial-gradient(circle at 10px 0, transparent 10px, var(--safari-sand) 11px);
    background-size: 20px 20px;
    background-repeat: repeat-x;
}
.bottom-paper {
    bottom: -20px;
    transform: rotate(180deg);
}
.top-paper {
    top: -20px;
    background-image: radial-gradient(circle at 10px 0, transparent 10px, var(--safari-brown) 11px);
}

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

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

.safari-box {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    border: 5px solid var(--safari-brown);
    position: relative;
    transition: transform 0.3s ease;
}
.safari-box:hover {
    transform: translateY(-5px);
}
.green-box {
    background-color: var(--safari-light-green);
    color: var(--white);
    box-shadow: -10px 10px 0 var(--safari-brown);
}
.mustard-box {
    background-color: var(--safari-mustard);
    color: var(--safari-brown);
    box-shadow: 10px 10px 0 var(--safari-brown);
}

.box-icon {
    font-size: 4rem;
    margin-bottom: 15px;
}

.safari-box h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.highlight {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.btn-safari {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--safari-brown);
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 2px;
    border-radius: 10px;
    margin-top: 15px;
    transition: all 0.2s ease;
}
.btn-safari:hover {
    transform: scale(1.05);
}

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

.rsvp-content {
    background-color: var(--safari-sand);
    padding: 40px;
    border-radius: 20px;
    border: 6px dashed var(--safari-green);
    max-width: 600px;
    width: 100%;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

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

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

.safari-form input,
.safari-form select {
    padding: 15px;
    background-color: var(--white);
    border: 3px solid var(--safari-brown);
    border-radius: 10px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    outline: none;
}
.safari-form input:focus,
.safari-form select:focus {
    border-color: var(--safari-green);
}

.btn-safari-solid {
    padding: 15px;
    background-color: var(--safari-mustard);
    color: var(--safari-brown);
    border: 3px solid var(--safari-brown);
    border-radius: 10px;
    font-family: var(--font-heading);
    font-size: 1.8rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}
.btn-safari-solid:hover {
    background-color: var(--safari-green);
    color: var(--white);
}

.form-message {
    margin-top: 20px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--safari-green);
}

.safari-footer {
    background-color: var(--safari-brown);
    text-align: center;
    padding: 20px;
    font-size: 0.9rem;
    color: #AAA;
}
.safari-footer a {
    color: var(--safari-mustard);
    text-decoration: none;
}

/* Responsive */
@media (max-width: 600px) {
    .names { font-size: 3.5rem; }
    .leaf { display: none; }
}
