/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
}

/* ================= NAVBAR ================= */
header{
    position:fixed;
    top:0;
    width:100%;
    z-index:999;
    background:transparent;
    transition:0.3s;
}

header.scrolled{
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.navbar{
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
    gap:10px;
}

.logo img{
    height:55px;
    transition:0.4s;
}

.logo-text{
    font-size:22px;
    font-weight:700;
    transition:0.4s;
}


/* SCROLL EFEKT */
.scrolled .logo img{
    height:65px;
}

.scrolled .logo-text{
    opacity:0;
    transform:translateY(-10px);
    pointer-events:none;
}

/* ŞAPKA */
.chef-hat{
    position:absolute;
    top:-18px;
    font-size:28px;
    transition:0.4s ease;
}

/* HOVER */
.logo:hover .chef-hat{
    transform:translateY(-5px) scale(1.1);
}

/* SCROLL */
header.scrolled .chef-hat{
    top:5px;
    transform:scale(0.9);
}

header.scrolled .logo-text{
    opacity:0.4;
}

/* MENU */
.nav-links{
    display:flex;
    gap:30px;
    list-style:none;
}

.nav-links a{
    text-decoration:none;
    font-size:18px;
    color:#333;
    position:relative;
}

.nav-links a::after{
    content:"";
    position:absolute;
    width:0;
    height:2px;
    background:#8e44ad;
    left:0;
    bottom:-3px;
    transition:0.3s;
}

.nav-links a:hover::after{
    width:100%;
}

.menu-toggle{
    display:none;
    font-size:26px;
    cursor:pointer;
}

/* ================= SLIDER ================= */
.slider{
    margin-top:80px;
    height:90vh;
    position:relative;
}

.slide{
    position:absolute;
    width:100%;
    height:100%;
    background-size:cover;
    background-position:center;
    opacity:0;
    transition:1s;
}

.slide.active{
    opacity:1;
}

.overlay{
    position:absolute;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.4);
}

.content{
    position:absolute;
    bottom:20%;
    left:10%;
    color:white;
}

.content h1{
    font-size:42px;
}

.content p{
    font-size:18px;
}

/* ================= SERVICES ================= */
.services{
    padding:100px 20px;
    text-align:center;
}

.services h2{
    font-size:42px;
    position:relative;
    display:inline-block;
}

.services h2::after{
    content:"";
    width:0;
    height:4px;
    background:#8e44ad;
    position:absolute;
    left:0;
    bottom:-8px;
    transition:0.4s;
}

.services h2:hover::after{
    width:100%;
}

.service-container{
    margin-top:40px;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

.card{
    background:#2ecc71;
    color:white;
    border-radius:10px;
    overflow:hidden;
    transition:0.3s;
}

.card img{
    width:100%;
    height:180px;
    object-fit:cover;
}

.card-content{
    padding:20px;
}

.card:hover{
    background:white;
    color:#2ecc71;
    transform:scale(1.05) translateY(-10px);
}

/* ================= MISSION ================= */
/* ================= MISSION ================= */
.mission{
    padding:80px 20px;
}

.mission-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* YAZI KUTULARI */
.mission-box{
    background:white;
    padding:25px;
    border-radius:10px;
    transition:0.3s;
    box-shadow:0 5px 15px rgba(0,0,0,0.05);
}

.mission-box h2{
    margin-bottom:10px;
    color:#27ae60;
}

.mission-box p{
    line-height:1.7;
    color:#444;
}

.mission-box:hover{
    transform:translateY(-8px);
    background:#f4fff7;
}

/* GÖRSEL */
.mission-container img{
    width:100%;
    border-radius:10px;
}

/* ===== RESPONSIVE ===== */
@media(max-width:900px){
    .mission-container{
        grid-template-columns:1fr;
    }

    .mission-container img{
        margin-top:20px;
    }
}
/* MISSION FOTOĞRAF FIX */
.mission-container img{
    width:100%;
    max-width:500px;
    height:auto;
    display:block;
    margin:auto;
    border-radius:12px;
    object-fit:cover;
    transition:0.4s;
}

/* HOVER EFEKTİ */
.mission-container img:hover{
    transform:scale(1.05);
}
/* ================= FOOTER ================= */
footer{
    background:#111;
    color:#ccc;
    padding:40px;
}

.footer-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr 1fr;
    gap:30px;
}

/* LOGO */
.footer-logo{
    font-size:26px;
    color:white;
}

/* ŞAPKA ZIPLAMA */
.bounce{
    display:inline-block;
    animation:bounce 2s infinite;
}

@keyframes bounce{
    0%,100%{transform:translateY(0);}
    50%{transform:translateY(-8px);}
}

/* SOSYAL */
.socials a{
    color:#ccc;
    font-size:20px;
    margin-right:10px;
    transition:0.3s;
}

.socials a:hover{
    color:#2ecc71;
    transform:scale(1.2);
}

/* MAP */
.footer-container iframe{
    width:100%;
    height:200px;
    border:0;
    border-radius:10px;
}

/* ALT */
.footer-bottom{
    text-align:center;
    margin-top:20px;
    border-top:1px solid #333;
    padding-top:10px;
}

/* MADEBY */
.madeby{
    position:relative;
    color:#2ecc71;
    font-weight:600;
    cursor:pointer;
}

.madeby::before,
.madeby::after{
    content:attr(data-text);
    position:absolute;
    left:0;
    top:0;
    opacity:0;
    transition:0.3s;
}

.madeby::before{
    color:#8e44ad;
    transform:translateX(-5px);
}

.madeby::after{
    transform:translateX(5px);
}

.madeby:hover{
    color:white;
    text-shadow:0 0 10px #2ecc71;
}

.madeby:hover::before{
    opacity:1;
    transform:translateX(-10px);
}

.madeby:hover::after{
    opacity:1;
    transform:translateX(10px);
}

/* ================= RESPONSIVE ================= */
@media(max-width:900px){
    .service-container{
        grid-template-columns:repeat(2,1fr);
    }

    .mission-container{
        grid-template-columns:1fr;
    }
}

@media(max-width:768px){

    .menu-toggle{
        display:block;
    }

    .nav-links{
        position:absolute;
        top:70px;
        left:0;
        width:100%;
        background:white;
        flex-direction:column;
        align-items:center;
        gap:15px;
        padding:20px 0;
        display:none;
    }

    .nav-links.active{
        display:flex;
    }

    .service-container{
        grid-template-columns:1fr;
    }

    .footer-container{
        grid-template-columns:1fr;
    }
}
.chef-hat{
    position:absolute;
    top:-20px;
    font-size:26px;
    transition:0.4s;
}
/* SLIDER YAZI HOVER EFEKTİ */
.content h1,
.content p {
    transition: all 0.4s ease;
    cursor: pointer;
}

/* HOVER DURUMU */
.content h1:hover,
.content p:hover {
    transform: scale(1.08);
    color: #eaffea; /* yeşilimsi beyaz */
    text-shadow: 
        0 0 10px rgba(46, 204, 113, 0.8),
        0 0 20px rgba(46, 204, 113, 0.6),
        0 0 30px rgba(255,255,255,0.6);
}

/* DAHA BÜYÜK FONT (GENEL) */
.content h1 {
    font-size: 48px;
}

.content p {
    font-size: 20px;
}

/* ===== MISSION MOBİL DÜZELTME ===== */
@media(max-width:768px){

    .mission-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .mission-container img{
        margin-top:20px;
        max-width:100%;
    }

}





/* ===== Hİzmetlerimiz ===== */
/* SERVICES PAGE */
.services-hero{
    height:50vh;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836');
    background-size:cover;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
}

.services-hero h1{
    font-size:48px;
}

.services-page{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

/* BLOKLAR */
.service-block{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:60px;
}

.service-block img{
    width:100%;
    border-radius:12px;
}

.service-text h2{
    color:#27ae60;
    margin-bottom:10px;
}

.service-text p{
    line-height:1.7;
    color:#444;
}

/* TERS BLOK */
.reverse{
    direction:rtl;
}

.reverse .service-text{
    direction:ltr;
}

/* MOBİL */
@media(max-width:768px){
    .service-block{
        grid-template-columns:1fr;
    }
}
/* HERO */
.services-hero{
    height:50vh;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836');
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
}

.services-hero h1{
    font-size:48px;
}

/* BLOKLAR */
.services-page{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
}

.service-block{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
    margin-bottom:60px;
}

.service-block img{
    width:100%;
    border-radius:12px;
    transition:0.4s;
}

/* FOTO HOVER */
.service-block img:hover{
    transform:scale(1.05);
    filter:brightness(1.1);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

.service-text h2{
    color:#27ae60;
    margin-bottom:10px;
}

.service-text p{
    line-height:1.7;
    color:#444;
}

/* BUTON */
.service-btn{
    display:inline-block;
    margin-top:15px;
    padding:10px 22px;
    background:#25D366;
    color:white;
    border-radius:25px;
    text-decoration:none;
    font-weight:600;
    transition:0.3s;
}

.service-btn:hover{
    background:#1ebe5d;
    transform:scale(1.05);
}

/* TERS */
.reverse{
    direction:rtl;
}
.reverse .service-text{
    direction:ltr;
}

/* MOBİL */
@media(max-width:768px){
    .service-block{
        grid-template-columns:1fr;
    }
}




/* hakkımızda */

/* HERO */
.about-hero{
    height:50vh;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1555244162-803834f70033');
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:white;
    text-align:center;
}

.about-hero h1{
    font-size:48px;
}

/* CONTENT */
.about-content{
    padding:80px 20px;
}

.about-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

.about-text p{
    line-height:1.7;
    color:#444;
    margin-bottom:15px;
}

/* FOTO */
.about-image img{
    width:100%;
    border-radius:12px;
    transition:0.4s;
}

.about-image img:hover{
    transform:scale(1.05);
    box-shadow:0 10px 30px rgba(0,0,0,0.2);
}

/* VALUES */
.about-values{
    background:#f9f9f9;
    padding:80px 20px;
    text-align:center;
}

.about-values h2{
    font-size:36px;
    margin-bottom:40px;
}

.values-container{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
}

/* KART */
.value-card{
    background:white;
    padding:30px;
    border-radius:10px;
    transition:0.3s;
}

.value-card i{
    font-size:30px;
    color:#27ae60;
    margin-bottom:10px;
}

.value-card:hover{
    transform:translateY(-10px);
    box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

/* MOBİL */
@media(max-width:768px){
    .about-container{
        grid-template-columns:1fr;
        text-align:center;
    }

    .values-container{
        grid-template-columns:1fr;
    }
}
/* ABOUT HERO */
.about-hero{
    height:50vh;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1555244162-803834f70033');
    background-size:cover;
    background-position:center;
    display:flex;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    color:white;
}

/* GRID */
.about-grid{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
    align-items:center;
}

/* IMAGE */
.about-image img{
    width:100%;
    border-radius:12px;
    transition:0.4s;
}

.about-image img:hover{
    transform:scale(1.05);
}

/* VALUES */
.values-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:20px;
    max-width:1200px;
    margin:auto;
}

.value-card{
    background:white;
    padding:30px;
    border-radius:10px;
    text-align:center;
    transition:0.3s;
}

.value-card:hover{
    transform:translateY(-10px);
}

/* BRANDS */
.brand-slider{
    overflow:hidden;
}

.brand-track{
    display:flex;
    gap:60px;
    animation:scroll 25s linear infinite;
}

.brand-item{
    position:relative;
}

.brand-item img{
    height:60px;
    filter:grayscale(100%);
    transition:0.4s;
}

.brand-item span{
    position:absolute;
    bottom:-20px;
    left:50%;
    transform:translateX(-50%);
    opacity:0;
    color:#27ae60;
    transition:0.3s;
}

.brand-item:hover img{
    filter:grayscale(0%);
    transform:scale(1.1);
}

.brand-item:hover span{
    opacity:1;
    bottom:-10px;
}

/* ANIMATION */
@keyframes scroll{
    0%{transform:translateX(0);}
    100%{transform:translateX(-50%);}
}

/* MOBILE */
@media(max-width:768px){
    .about-grid{
        grid-template-columns:1fr;
    }

    .values-grid{
        grid-template-columns:1fr;
    }
}



/* iletişim */
.contact-hero{
    height:40vh;
    background:linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
    url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4');
    background-size:cover;
    background-position:center;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    color:white;
}

/* CONTAINER */
.contact-container{
    max-width:1200px;
    margin:auto;
    padding:80px 20px;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:40px;
}

/* FORM */
.contact-form{
    background:#fff;
    padding:30px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.1);
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:12px;
    margin-bottom:15px;
    border:1px solid #ddd;
    border-radius:6px;
}

.contact-form button{
    width:100%;
    padding:12px;
    background:#27ae60;
    color:white;
    border:none;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.contact-form button:hover{
    background:#1e8449;
}

/* INFO */
.contact-info{
    padding:20px;
}

.contact-info p{
    margin:10px 0;
}

/* WHATSAPP */
.whatsapp-btn{
    display:inline-block;
    margin-top:20px;
    padding:12px 20px;
    background:#25D366;
    color:white;
    border-radius:25px;
    text-decoration:none;
    transition:0.3s;
}

.whatsapp-btn:hover{
    transform:scale(1.05);
}

/* MAP */
.map iframe{
    width:100%;
    height:300px;
    border:none;
}

/* MOBILE */
@media(max-width:768px){
    .contact-container{
        grid-template-columns:1fr;
    }
}