/* ========================================
   PLAYDATE KIDS CAFE - YENİ PROFESYONEL CSS
   ======================================== */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #2C3E50;
    line-height: 1.6;
    background-color: #fff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ========================================
   NAVIGATION BAR
   ======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-logo img {
    height: 50px;
    width: auto;
}

.nav-logo span {
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 35px;
    list-style: none;
    align-items: center;
}

.nav-link {
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E50;
    transition: all 0.3s ease;
    padding: 8px 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-btn {
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    color: white !important;
    padding: 10px 25px !important;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.nav-btn::after {
    display: none;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #2C3E50;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* ========================================
   HERO SECTION - YENİ TASARIM
   ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFF8E1 0%, #FFE4B5 50%, #E8F5E9 100%);
    padding: 120px 40px 80px;
    position: relative;
    overflow: hidden;
}

/* BACKGROUND SHAPES */
.hero-bg-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: #FF6B35;
    top: -100px;
    left: -100px;
    animation: float1 20s infinite ease-in-out;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: #8BC34A;
    bottom: -150px;
    right: -100px;
    animation: float2 25s infinite ease-in-out;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: #2196F3;
    top: 50%;
    right: 10%;
    animation: float3 30s infinite ease-in-out;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(50px, 50px) scale(1.1); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-50px, -50px) scale(1.15); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-30px, 30px) scale(1.05); }
}

.hero-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

/* HERO LOGO - DAHA DA BÜYÜK */
.hero-logo-wrapper {
    margin-bottom: 20px;
    animation: logoFloat 1.5s ease;
}

@keyframes logoFloat {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.hero-logo {
    max-width: 900px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.18));
    transition: transform 0.3s ease;
}

.hero-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 15px 45px rgba(255, 107, 53, 0.35));
}

/* HERO TITLE */
.hero-title {
    font-family: 'Fredoka', cursive;
    margin-bottom: 25px;
    animation: titleUp 1s ease 0.3s both;
}

@keyframes titleUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line-1 {
    display: block;
    font-size: 9rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #FF8C42, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 10px;
}

.title-line-2 {
    display: block;
    font-size: 5rem;
    font-weight: 600;
    background: linear-gradient(135deg, #2196F3, #42A5F5);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* HERO SUBTITLE */
.hero-subtitle {
    font-size: 1.5rem;
    color: #555;
    margin-bottom: 45px;
    animation: fadeIn 1s ease 0.6s both;
    font-weight: 500;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* HERO FEATURES */
.hero-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 45px;
    animation: fadeIn 1s ease 0.9s both;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    background: white;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.hero-feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    font-size: 2rem;
}

.feature-text {
    font-size: 1.05rem;
    font-weight: 600;
    color: #2C3E50;
}

/* HERO CTA */
.hero-cta {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    animation: fadeIn 1s ease 1.2s both;
}

.cta-btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    font-family: 'Fredoka', cursive;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary {
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    color: white;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.35);
}

.cta-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.45);
}

.cta-secondary {
    background: white;
    color: #FF6B35;
    border: 3px solid #FF6B35;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.cta-secondary:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-5px);
}

/* ========================================
   SECTIONS
   ======================================== */

section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Fredoka', cursive;
    font-size: 3.5rem;
    color: #2C3E50;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    border-radius: 10px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: #95A5A6;
}

/* ========================================
   ABOUT SECTION
   ======================================== */

.about-section {
    background: #F9FAFB;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2.3rem;
    color: #FF6B35;
    margin-bottom: 25px;
}

.about-text p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 20px;
}

.about-text p strong {
    color: #FF6B35;
    font-weight: 700;
}

.about-text p:last-of-type {
    margin-bottom: 40px;
}


.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.stat-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-family: 'Fredoka', cursive;
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    margin-bottom: 8px;
}

.stat-label {
    color: #777;
    font-size: 1rem;
    font-weight: 500;
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img-box {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #2196F3, #64B5F6, #FF6B35);
    border-radius: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.about-img-box:hover {
    transform: scale(1.05) rotate(-3deg);
}

.about-emoji {
    font-size: 8rem;
    margin-bottom: 25px;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.about-img-box p {
    font-family: 'Fredoka', cursive;
    font-size: 2rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ========================================
   SERVICES SECTION
   ======================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-item {
    background: white;
    padding: 45px 35px;
    border-radius: 25px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-color: #FF6B35;
}

.service-icon-box {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.5rem;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.service-icon-box.orange {
    background: linear-gradient(135deg, #FF8C42, #FFB380);
}

.service-icon-box.green {
    background: linear-gradient(135deg, #7CB342, #9CCC65);
}

.service-icon-box.blue {
    background: linear-gradient(135deg, #4A90E2, #64B5F6);
}

.service-item h3 {
    font-family: 'Fredoka', cursive;
    font-size: 1.7rem;
    color: #2C3E50;
    margin-bottom: 15px;
}

.service-item p {
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* ========================================
   GALLERY SECTION
   ======================================== */

.gallery-section {
    background: #F9FAFB;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-card {
    aspect-ratio: 4/3;
    border-radius: 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.gallery-card.orange-grad {
    background: linear-gradient(135deg, #FF8C42, #FFB380);
}

.gallery-card.green-grad {
    background: linear-gradient(135deg, #7CB342, #9CCC65);
}

.gallery-card.blue-grad {
    background: linear-gradient(135deg, #4A90E2, #64B5F6);
}

.gallery-icon {
    font-size: 5.5rem;
    margin-bottom: 20px;
}

.gallery-card p {
    font-family: 'Fredoka', cursive;
    font-size: 1.6rem;
    font-weight: 700;
    text-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* ========================================
   CONTACT SECTION
   ======================================== */

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.info-card {
    display: flex;
    gap: 25px;
    background: #F9FAFB;
    padding: 30px;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.info-card:hover {
    background: white;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    transform: translateX(8px);
}

.info-icon {
    font-size: 2.8rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-family: 'Fredoka', cursive;
    color: #2C3E50;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.info-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-form-wrapper {
    background: linear-gradient(135deg, #FFF8E1, #FFE8B5);
    padding: 45px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.contact-form-wrapper h3 {
    font-family: 'Fredoka', cursive;
    font-size: 2.3rem;
    color: #FF6B35;
    margin-bottom: 30px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 18px;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 107, 53, 0.15);
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #FF6B35;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-btn {
    width: 100%;
    padding: 18px;
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    color: white;
    border: none;
    border-radius: 15px;
    font-family: 'Fredoka', cursive;
    font-size: 1.3rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

/* ========================================
   FOOTER
   ======================================== */

.footer {
    background: #2C3E50;
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 2fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-logo-box {
    background: white;
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo-box img {
    max-width: 150px;
    height: auto;
}

.footer-about p {
    color: #ECF0F1;
    line-height: 1.9;
    font-size: 1.05rem;
}

.footer-links h4,
.footer-newsletter h4 {
    font-family: 'Fredoka', cursive;
    margin-bottom: 25px;
    font-size: 1.4rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: #ECF0F1;
    transition: all 0.3s ease;
    font-size: 1.05rem;
}

.footer-links ul li a:hover {
    color: #FF6B35;
    padding-left: 8px;
}

.footer-newsletter p {
    color: #ECF0F1;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
}

.newsletter-form button {
    padding: 15px 30px;
    background: linear-gradient(135deg, #FF6B35, #8BC34A);
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95A5A6;
    font-size: 1rem;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        right: -100%;
        width: 280px;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        padding: 40px;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        align-items: flex-start;
        gap: 25px;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .container {
        padding: 0 25px;
    }

    .nav-container {
        padding: 0 25px;
    }

    .about-content,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        max-width: 400px;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 18px;
    }
    
    .title-line-1 {
        font-size: 4.5rem;
    }

    .title-line-2 {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 480px) {
    .container,
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-logo {
        max-width: 300px;
    }
    
    .hero-logo-wrapper {
        margin-bottom: 15px;
    }

    .title-line-1 {
        font-size: 3.5rem;
    }

    .title-line-2 {
        font-size: 2.2rem;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-feature {
        width: 100%;
        max-width: 300px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
    }

    .newsletter-form {
        flex-direction: column;
    }
}