/* Genel Stiller */
:root {
    --primary-pink: #E8B4B8;
    --secondary-pink: #EED6D3;
    --beige: #F5E6E8;
    --dark-beige: #D8B4A0;
    --text-color: #4A4A4A;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.8;
    color: var(--text-color);
    background-color: #FFFFFF;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar Stilleri */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    padding: 1.2rem;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.navbar .logo h1 {
    font-size: 1.8rem;
    color: var(--primary-pink);
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-pink);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.menu-btn {
    display: none;
}

/* Hero Bölümü */
.hero {
    height: 100vh;
    background: linear-gradient(
        rgba(255, 255, 255, 0.4), 
        rgba(245, 230, 232, 0.5)
    ), url('hero-bg.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

/* Paralaks efekti için arka plan ayarı */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('healthy-food-bg.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
    transform: scale(1.1);
    animation: slowZoom 20s infinite alternate;
}

@keyframes slowZoom {
    from { transform: scale(1); }
    to { transform: scale(1.1); }
}

.hero-content {
    max-width: 800px;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 30px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.4);
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    font-family: 'Playfair Display', serif;
}

.hero-content p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    color: #333333;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.2px;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(45deg, #FF8BA7, #FFC6C7);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(255, 139, 167, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    letter-spacing: 0.5px;
}

.cta-button:hover {
    background: linear-gradient(45deg, #FF7093, #FF9EA3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 139, 167, 0.6);
}

/* Hakkımda Bölümü */
.about {
    padding: 8rem 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-content img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 20px 20px 0 var(--secondary-pink);
}

.about-text {
    padding: 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-color);
}

.about-text ul {
    margin-top: 2rem;
    list-style: none;
}

.about-text ul li {
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.about-text ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
}

/* Hizmetler Bölümü */
.services {
    padding: 8rem 0;
    background: var(--beige);
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: var(--text-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(232, 180, 184, 0.2);
    background: linear-gradient(to bottom right, #fff, var(--beige));
}

.service-card i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover i {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

/* İletişim Bölümü */
.contact {
    padding: 8rem 0;
    background: var(--beige);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}

.contact-info {
    background: var(--primary-pink);
    padding: 3rem;
    color: white;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-form {
    padding: 3rem;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border: 2px solid #eee;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-pink);
    outline: none;
}

.submit-btn {
    background: var(--primary-pink);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #d19ea2;
    transform: translateY(-2px);
}

/* Footer Stilleri */
footer {
    background: var(--text-color);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.social-links {
    margin-bottom: 2rem;
}

.social-links a {
    color: white;
    font-size: 1.8rem;
    margin: 0 1rem;
    transition: all 0.3s ease;
}

.social-links a:hover {
    color: var(--primary-pink);
}

/* Mobil Uyumluluk */
@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .menu-btn {
        display: block;
        font-size: 1.8rem;
        cursor: pointer;
        color: var(--primary-pink);
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero-content {
        padding: 2rem;
        margin: 0 1rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* Navbar Dropdown Menü */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    border-radius: 15px;
    padding: 1rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    padding: 0.8rem 1.5rem;
    display: block;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.dropdown-menu a:hover {
    background: var(--beige);
    color: var(--primary-pink);
    padding-left: 2rem;
}

/* Mobil menü için dropdown düzenlemesi */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        background: #f9f9f9;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding: 0;
        display: none;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown > a {
        justify-content: center;
    }
}

.loader-wrapper {
    transition: opacity 0.5s ease;
}

/* İstatistikler Bölümü */
.stats {
    padding: 4rem 0;
    background: white;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-pink);
    display: block;
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-color);
    font-weight: 500;
}

/* Başarı Hikayeleri */
.success-stories {
    padding: 8rem 0;
    background: var(--beige);
}

.stories-slider {
    margin-top: 3rem;
    position: relative;
}

.story-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    padding: 1rem;
}

.before-after img {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.before-after img:hover {
    transform: scale(1.05);
}

.story-content {
    padding: 2rem;
}

.duration {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--beige);
    color: var(--primary-pink);
    border-radius: 20px;
    font-weight: 500;
    margin-top: 1rem;
}

/* Blog Bölümü */
.blog {
    padding: 8rem 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.blog-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 2rem;
}

.category {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: var(--beige);
    color: var(--primary-pink);
    border-radius: 20px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.read-more {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-pink);
    font-weight: 500;
    text-decoration: none;
}

/* Neden Ben Bölümü */
.why-me {
    padding: 8rem 0;
    background: linear-gradient(45deg, var(--beige), white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.feature {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature i {
    font-size: 3rem;
    color: var(--primary-pink);
    margin-bottom: 1.5rem;
} 