/* Ana Stiller */
:root {
    --primary: #ff9eb6;
    --secondary: #ffc2d1;
    --accent: #ffb8d9;
    --dark: #5a3d5c;
    --light: #fff0f5;
    --white: #ffffff;
    --gray: #9e7a9e;
}

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

body {
    font-family: 'Quicksand', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #ff7ca0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 158, 182, 0.4);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    border-radius: 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 2.2rem;
    color: var(--dark);
    position: relative;
    padding-bottom: 15px;
    font-family: 'Pacifico', cursive;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--primary);
    border-radius: 2px;
}

.section-desc {
    text-align: center;
    margin-bottom: 40px;
    color: var(--gray);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Header */
header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.3rem;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px;
    font-family: 'Pacifico', cursive;
}

.logo p {
    font-size: 0.9rem;
    color: var(--gray);
    font-family: 'Quicksand', sans-serif;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    font-weight: 600;
    color: var(--dark);
    position: relative;
    padding-bottom: 5px;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after, 
nav ul li a.active::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(to right, rgba(255, 158, 182, 0.9), rgba(255, 194, 209, 0.9)), url('https://images.unsplash.com/photo-1486427944299-d1955d23e34d?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    color: var(--white);
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="25" cy="25" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="75" cy="75" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="75" cy="25" r="1.5" fill="%23ffffff" opacity="0.3"/><circle cx="25" cy="75" r="1.5" fill="%23ffffff" opacity="0.3"/></svg>');
    background-size: 80px 80px;
    opacity: 0.4;
    z-index: 1;
}

.hero-content {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    z-index: 2;
}

.hero h2 {
    font-size: 3.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-family: 'Pacifico', cursive;
    text-shadow: 3px 3px 0px rgba(255, 255, 255, 0.2);
    animation: floatText 3s ease-in-out infinite;
}

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

.hero h2 span {
    color: #FFFFFF;
    font-style: normal;
    background: var(--dark);
    padding: 0 10px;
    border-radius: 8px;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    display: inline-block;
    transform: rotate(-2deg);
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 35px;
    font-weight: 500;
}

.hero .btn {
    background-color: var(--dark);
    color: var(--white);
    font-size: 1.1rem;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 700;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.7s ease;
    z-index: -1;
}

.hero .btn:hover {
    background-color: var(--dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(90, 61, 92, 0.3);
}

.hero .btn:hover::before {
    left: 100%;
}

/* Featured Products */
.featured {
    padding: 80px 0;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.product-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid transparent;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.product-card img {
    height: 250px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.4rem;
    color: var(--dark);
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.product-card p {
    padding: 0 20px 20px;
    color: var(--gray);
}

/* Recipes Preview */
.recipes-preview {
    background-color: var(--light);
    padding: 80px 0;
}

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

.recipe-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.recipe-card img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.5s ease;
}

.recipe-card:hover img {
    transform: scale(1.05);
}

.recipe-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
}

.recipe-card p {
    padding: 0 20px;
    color: var(--gray);
    flex-grow: 1;
}

.recipe-card .btn-small {
    margin: 20px;
    align-self: flex-start;
    background-color: var(--secondary);
}

.recipe-card .btn-small:hover {
    background-color: var(--primary);
    box-shadow: 0 5px 15px rgba(255, 158, 182, 0.4);
}

.recipes-more {
    text-align: center;
    margin-top: 40px;
}

/* Contact Preview */
.contact-preview {
    background: url('https://images.unsplash.com/photo-1555507036-ab1f4038808a?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding: 100px 0;
    position: relative;
}

.contact-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(90, 61, 92, 0.8);
}

.contact-content {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-family: 'Pacifico', cursive;
}

.contact-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
    font-family: 'Pacifico', cursive;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--white);
    font-family: 'Quicksand', sans-serif;
}

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

.footer-links ul li a {
    color: var(--light);
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary);
}

.footer-contact p {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 10px;
    color: var(--primary);
}

.social-icons {
    display: flex;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #444;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 0.9rem;
    color: #aaa;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero h2 {
        font-size: 3rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .products {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--white);
        width: 100%;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }
    
    .hero {
        padding: 80px 0;
    }

    .hero h2 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 1rem;
    }
    
    .recipes {
        grid-template-columns: 1fr;
    }
    
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .contact-preview {
        background-attachment: scroll;
    }
}

@media (max-width: 576px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero .btn {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-card h3 {
        font-size: 1.2rem;
    }
    
    .recipe-card h3 {
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-contact p {
        justify-content: center;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .products {
        grid-template-columns: 1fr;
    }
    
    .container {
        width: 95%;
        padding: 0 10px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 375px) {
    .hero h2 {
        font-size: 1.8rem;
    }
    
    .hero p {
        font-size: 0.9rem;
    }
    
    .btn, .btn-small {
        width: 100%;
        text-align: center;
    }
    
    .product-card, .recipe-card {
        border-radius: 15px;
    }
}

/* Hamburger menü stili */
.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    margin-left: auto;
    padding: 10px;
}

.menu-toggle i {
    color: var(--dark);
    transition: color 0.3s ease;
}

.menu-toggle:hover i {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 0;
        background: var(--white);
        width: 100%;
        padding: 20px 0;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        z-index: 100;
    }

    nav ul.active {
        transform: translateY(0);
    }

    nav ul li {
        margin: 10px 0;
        text-align: center;
    }

    header {
        padding: 20px;
    }

    /* Products ve Recipe için grid ayarları */
    .products-grid, .recipes-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card, .recipe-card {
        max-width: 100%;
    }

    /* Hero alanı için mobil ayarları */
    .hero {
        padding: 60px 20px;
    }
    
    .hero h2 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1rem;
        max-width: 100%;
    }

    /* İletişim alanı için mobil ayarları */
    .contact-content h2 {
        font-size: 2rem;
    }

    .contact-content p {
        font-size: 1rem;
    }
    
    /* Footer için mobil ayarları */
    footer {
        padding: 30px 20px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content div {
        margin-bottom: 20px;
    }
}

/* Çok küçük ekranlar için ek ayarlar */
@media (max-width: 480px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .contact-form button {
        width: 100%;
    }
} 