/* ============================================
   GARDEN OF LOVE THEME
   Bahçe teması - Çiçekler ve doğa
   ============================================ */

/* Tema Renkleri */
:root {
    --garden-green: #2d5016;
    --garden-light-green: #7cb342;
    --garden-pink: #f48fb1;
    --garden-purple: #ba68c8;
    --garden-yellow: #ffd54f;
    --garden-cream: #fff8e1;
    --garden-brown: #6d4c41;
}

/* Body Background */
body.garden-theme {
    background: linear-gradient(to bottom, #e8f5e9 0%, #fff8e1 100%);
    color: var(--garden-green);
}

/* Hero Section */
.garden-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(to bottom, #e1f5fe 0%, #fff8e1 100%);
}

.garden-gate {
    max-width: 700px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.garden-arch {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
    position: relative;
    background: linear-gradient(to bottom, transparent 0%, rgba(255, 255, 255, 0.8) 50%);
    border: 5px solid var(--garden-brown);
    border-radius: 250px 250px 0 0;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.garden-arch::before,
.garden-arch::after {
    content: '🌿';
    position: absolute;
    font-size: 3rem;
    animation: sway 3s ease-in-out infinite;
}

.garden-arch::before {
    top: 10px;
    left: 10px;
}

.garden-arch::after {
    top: 10px;
    right: 10px;
    animation-delay: 1s;
}

@keyframes sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.garden-arch h1 {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    color: var(--garden-green);
    margin-bottom: 1rem;
}

.garden-arch p {
    font-size: 1.25rem;
    color: var(--garden-light-green);
    margin-bottom: 0.5rem;
}

/* Floating Flowers */
.floating-flower {
    position: absolute;
    font-size: 2.5rem;
    animation: floatFlower 15s infinite ease-in-out;
    opacity: 0.7;
}

@keyframes floatFlower {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.7;
    }

    90% {
        opacity: 0.7;
    }

    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Garden Beds Section */
.garden-beds-section {
    padding: 5rem 0;
    background: var(--garden-cream);
}

.flower-beds {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.flower-bed {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.flower-bed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: linear-gradient(90deg,
            var(--garden-pink) 0%,
            var(--garden-purple) 50%,
            var(--garden-yellow) 100%);
}

.flower-bed:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.flower-bed img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.flower-bed-content {
    padding: 2rem;
}

.flower-bed-content h3 {
    font-family: var(--font-secondary);
    font-size: 1.75rem;
    color: var(--garden-green);
    margin-bottom: 1rem;
}

.flower-bed-content p {
    line-height: 1.6;
    color: #666;
}

.flower-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 3rem;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

/* Garden Path */
.garden-path {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #fff8e1 0%, #e8f5e9 100%);
}

.path-message {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 3rem;
    background: white;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    position: relative;
    text-align: center;
}

.path-message::before {
    content: '🌺';
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 5rem;
    background: white;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.path-message h2 {
    font-family: var(--font-secondary);
    font-size: 2.5rem;
    color: var(--garden-green);
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.path-message p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #666;
    margin-bottom: 1.5rem;
}

/* Garden Footer */
.garden-footer {
    background: var(--garden-green);
    color: white;
    text-align: center;
    padding: 3rem 0;
}

.garden-footer h2 {
    font-family: var(--font-secondary);
    color: var(--garden-yellow);
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .garden-arch {
        max-width: 90%;
        height: 350px;
        padding: 2rem 1.5rem;
    }

    .garden-arch h1 {
        font-size: 2.5rem;
    }

    .flower-beds {
        grid-template-columns: 1fr;
    }

    .path-message {
        padding: 3rem 2rem;
    }

    .path-message h2 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .garden-arch h1 {
        font-size: 2rem;
    }

    .flower-bed img {
        height: 250px;
    }

    .path-message {
        padding: 2rem 1.5rem;
    }

    .path-message h2 {
        font-size: 1.75rem;
    }

    .path-message p {
        font-size: 1.125rem;
    }
}