/* ==========================
   GURME34
   style.css
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:Arial, Helvetica, sans-serif;
    background:#f7f7f7;
    color:#333;
    line-height:1.6;
}

/* HERO */

.hero{
    background:#1c1c1c;
    color:#fff;
    text-align:center;
    padding:40px 20px;
}

.logo{
    width:140px;
    margin-bottom:20px;
}

.hero h1{
    font-size:34px;
    margin-bottom:15px;
}

.hero p{
    color:#ddd;
    margin-bottom:25px;
}

.hero-buttons{
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.hero-buttons a{
    text-decoration:none;
    padding:14px 25px;
    border-radius:6px;
    color:#fff;
    font-weight:bold;
}

.btn-whatsapp{
    background:#25D366;
}

.btn-phone{
    background:#e67e22;
}

/* BAŞLIKLAR */

section{
    padding:40px 20px;
}

section h2{
    text-align:center;
    margin-bottom:25px;
    color:#1c1c1c;
}

/* AVANTAJLAR */

.advantages{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
    gap:15px;
}

.box{
    background:#fff;
    padding:20px;
    text-align:center;
    border-radius:8px;
    box-shadow:0 2px 8px rgba(0,0,0,.08);
}

/* ÖZELLİKLER */

.feature-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
    gap:12px;
}

.feature-grid div{
    background:#fff;
    padding:15px;
    text-align:center;
    border-radius:8px;
}

/* FİYATLAR */

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.card{
    background:#fff;
    border-radius:10px;
    text-align:center;
    padding:25px;
    box-shadow:0 3px 10px rgba(0,0,0,.1);
}

.card h3{
    margin-bottom:10px;
}

.card h1{
    color:#d35400;
    margin-bottom:15px;
}

.card a{
    display:inline-block;
    background:#25D366;
    color:#fff;
    padding:12px 20px;
    border-radius:5px;
    text-decoration:none;
}

/* TESLİMAT */

.delivery-box{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.delivery-card{
    background:#fff;
    padding:25px;
    border-radius:10px;
    text-align:center;
}

.delivery-card i{
    font-size:40px;
    color:#27ae60;
    margin-bottom:15px;
}

/* ÖDEME */

.payment-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:20px;
}

.payment-grid div{
    background:#fff;
    padding:25px;
    text-align:center;
    border-radius:10px;
}

/* GALERİ */

.gallery-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.gallery-grid img{
    width:100%;
    border-radius:8px;
    display:block;
}

/* İLETİŞİM */

.contact{
    text-align:center;
    background:#1c1c1c;
    color:#fff;
}

.call-button,
.wa-button{
    display:block;
    max-width:320px;
    margin:15px auto;
    padding:15px;
    text-decoration:none;
    border-radius:6px;
    color:#fff;
    font-weight:bold;
}

.call-button{
    background:#e67e22;
}

.wa-button{
    background:#25D366;
}

/* FOOTER */

footer{
    background:#111;
    color:#fff;
    text-align:center;
    padding:30px 20px;
}

.footer-logo{
    width:90px;
    margin-bottom:15px;
}

/* SABİT WHATSAPP */

.floating-whatsapp{
    position:fixed;
    right:20px;
    bottom:20px;
    width:60px;
    height:60px;
    background:#25D366;
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    text-decoration:none;
    box-shadow:0 5px 12px rgba(0,0,0,.25);
}

/* MOBİL */

@media(max-width:768px){

.hero h1{
    font-size:28px;
}

.hero-buttons{
    flex-direction:column;
}

.hero-buttons a{
    width:100%;
}

}