:root {
    --red: #A52A2A;
    --dark: #2C2C2C;
    --light: #fdfdfd;
    --white: #ffffff;
}
.slider-header {
    position: relative;
    height: 85vh;
    width: 100%;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out; /* Geçiş yumuşaklığı */
    z-index: 1;
}

.slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-content {
    padding-left: 10%;
    color: white;
    max-width: 800px;
}

/* Hakkımızda Özel Stilleri */
.about-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.section-title span {
    color: var(--red);
    display: block;
    font-size: 1.2em;
}

.lead-text {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.about-features {
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.feature-item i {
    font-size: 2rem;
    color: var(--red);
    margin-top: 5px;
}

.feature-item h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Görsel Düzeni (Grid) */
.img-grid {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.sub-img {
    width: 60%;
    border-radius: 15px;
    border: 8px solid white;
    position: absolute;
    bottom: -30px;
    left: -30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

/* Slider Kontrolleri */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    z-index: 10;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 1.5rem;
}
.slider-btn:hover { background: var(--red); }
.prev { left: 20px; }
.next { right: 20px; }

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}
.dot {
    width: 12px;
    height: 12px;
    background: rgba(255,255,255,0.5);
    border-radius: 50%;
    cursor: pointer;
}
.dot.active { background: var(--red); width: 30px; border-radius: 10px; transition: 0.3s; }

/* Yazı Tasarımı */
.hero-content h2 {
    font-size: 4.5rem;
    text-shadow: 2px 4px 10px rgba(0,0,0,0.5);
    margin-bottom: 20px;
}
.hero-content p {
    font-size: 1.3rem;
    text-shadow: 1px 2px 5px rgba(0,0,0,0.5);
    max-width: 600px;
}

/* Basit Giriş Animasyonu */
.animate-text {
    animation: fadeInUp 1s ease-out;
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobil Uyumluluk */
@media (max-width: 992px) {
    .about-wrapper {
        grid-template-columns: 1fr;
    }
    .about-images {
        margin-top: 50px;
    }
}
* { margin:0; padding:0; box-sizing: border-box; }
body { font-family: 'Poppins', sans-serif; color: var(--dark); line-height: 1.6; background-color: var(--white); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.bg-light { background-color: #f8f8f8; }

/* Navbar */
.navbar { background: var(--white); padding: 15px 0; position: sticky; top:0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.05); }
.navbar .container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; text-decoration: none; color: var(--dark); }
.logo span { color: var(--red); }
.nav-links { list-style: none; display: flex; gap: 30px; }
.nav-links a { text-decoration: none; color: var(--dark); font-weight: 600; font-size: 14px; transition: 0.3s; }
.nav-links a:hover { color: var(--red); }

/* Hero */
.hero { 
    height: 80vh; 
    background-size: cover; 
    background-position: center; 
    display: flex; align-items: center; 
    color: var(--white); text-align: left;
}
.hero-content { max-width: 600px; padding-left: 50px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 4rem; line-height: 1.1; margin: 15px 0; }
.hero h1 span { color: var(--red); }
.tagline { text-transform: uppercase; letter-spacing: 3px; color: var(--red); font-weight: bold; }
.lezzet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.lezzet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s;
}

.lezzet-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(165, 42, 42, 0.15);
}

.lezzet-img {
    position: relative;
    height: 220px;
}

.lezzet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.lezzet-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--red);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.lezzet-info {
    padding: 25px;
}

.lezzet-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--dark);
}

.lezzet-info p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.section-subtitle {
    color: #888;
    margin-top: -20px;
    font-style: italic;
}
/* Galeri Kartları */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.gallery-card { border-radius: 15px; overflow: hidden; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.08); transition: 0.3s; }
.gallery-card:hover { transform: translateY(-10px); }
.gallery-card img { width: 100%; height: 300px; object-fit: cover; }
.card-info { padding: 20px; }
.card-info h3 { color: var(--red); font-family: 'Playfair Display', serif; }

/* Askıda Yemek Bölümü */
.askida-section { background: #fff5f5; padding: 60px 0; }
.flex-row { display: flex; align-items: center; gap: 50px; }
.askida-img img { width: 100%; border-radius: 20px; border: 10px solid white; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.askida-text { flex: 1; }

/* WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px;
    background: #25d366; color: white; padding: 15px 25px;
    border-radius: 50px; display: flex; align-items: center; gap: 10px;
    text-decoration: none; font-weight: bold; z-index: 999; box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}
.footer-modern {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 80px 0 20px 0;
    margin-top: 100px;
}

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

.footer-col h4 {
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-col h4::after {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--red);
    position: absolute;
    bottom: -8px;
    left: 0;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: #aaa; text-decoration: none; transition: 0.3s; }
.footer-links a:hover { color: var(--red); padding-left: 5px; }

.hours-list { list-style: none; }
.hours-list li { 
    display: flex; 
    justify-content: space-between; 
    margin-bottom: 12px;
    font-size: 0.9rem;
    border-bottom: 1px solid #333;
    padding-bottom: 8px;
}

.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-item i { color: var(--red); font-size: 1.2rem; }
.contact-item a { color: #e0e0e0; text-decoration: none; }

.social-links { display: flex; gap: 15px; margin-top: 25px; }
.social-links a { 
    width: 40px; height: 40px; background: #333; 
    display: flex; align-items: center; justify-content: center; 
    border-radius: 50%; color: #fff; transition: 0.3s;
}
.social-links a:hover { background: var(--red); transform: translateY(-5px); }

.footer-bottom { 
    border-top: 1px solid #333; 
    padding-top: 20px; 
    font-size: 0.85rem; 
    color: #666;
}

.flex-between { display: flex; justify-content: space-between; align-items: center; }
.location-wrapper {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 30px;
    margin-top: 50px;
    background: white;
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
}

.location-card {
    background: var(--dark);
    color: white;
    padding: 40px;
    border-radius: 20px;
}

.loc-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.loc-item i {
    font-size: 1.8rem;
    color: var(--red);
}

.loc-item h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.loc-item p {
    font-size: 0.9rem;
    color: #ccc;
}

.map-box {
    border-radius: 20px;
    overflow: hidden;
    height: 450px;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 992px) {
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    .map-box {
        height: 300px;
        order: -1; /* Mobilde haritayı üste alır */
    }
}
/* Mobil Ayarı */
@media (max-width: 768px) {
    .flex-between { flex-direction: column; gap: 10px; text-align: center; }
}
.btn { padding: 15px 35px; border-radius: 5px; text-decoration: none; font-weight: bold; display: inline-block; transition: 0.3s; }
.btn-red { background: var(--red); color: white; }
.btn-dark { background: var(--dark); color: white; }
.section-title { font-family: 'Playfair Display', serif; font-size: 2.5rem; margin-bottom: 20px; }
.red-text { color: var(--red); }
.footer { background: var(--dark); color: #999; padding: 50px 0; margin-top: 50px; }

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .nav-links { display: none; }
    .flex-row { flex-direction: column; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 2.5rem; }
}