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

html {
    scroll-behavior: smooth; 
    scroll-padding-top: 70px; /* Header küçüldüğü için kaydırma payı azaltıldı */
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Üst Menü (Header) */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(0, 32, 63, 0.95);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 60px; /* Padding azaltıldı */
    z-index: 1000;
    height: 70px; /* Sabit yükseklik ile daha kibar header */
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.brand { display: flex; align-items: center; }
.brand-logo { height: 45px; width: 45px; border-radius: 50%; margin-right: 15px; object-fit: cover; border: 2px solid rgba(255, 255, 255, 0.3); }
.logo-area { display: flex; flex-direction: column; }
.logo { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; color: white; line-height: 1.1; }
.subtitle { font-size: 11px; font-weight: 300; color: #f1f1f1; }

/* Masaüstü Navigasyon */
nav ul { list-style: none; display: flex; }
nav ul li { margin-left: 35px; }
nav ul li a { color: white; text-decoration: none; font-size: 16px; transition: color 0.3s ease; }
nav ul li a:hover { color: #ffb300; }

/* Hamburger Menü (Bilgisayarda GİZLİ) */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}
.menu-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #ffb300;
    transition: 0.3s ease;
}

/* Sayfa İçerikleri */
.hero { height: 100vh; background-image: url('https://images.unsplash.com/photo-1559742811-822873691df8?q=80&w=1920&auto=format&fit=crop'); background-size: cover; background-position: center; }
.overlay { background-color: rgba(0, 0, 0, 0.55); width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.hero-content { text-align: center; padding: 0 40px; }
.welcome-text { font-family: 'Playfair Display', serif; font-size: 55px; color: white; margin-bottom: 25px; }
.welcome-paragraph { font-size: 18px; font-weight: 300; color: #f8f8f8; line-height: 1.8; max-width: 900px; margin: 0 auto; }

.menu-section { padding: 100px 50px; background-color: #f9f9f9; }
.section-title { text-align: center; font-family: 'Playfair Display', serif; font-size: 45px; color: #00203f; margin-bottom: 60px; }
.menu-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 60px; max-width: 1100px; margin: 0 auto; }
.menu-category h3 { font-family: 'Playfair Display', serif; font-size: 26px; color: #00203f; border-bottom: 2px solid #d4af37; padding-bottom: 10px; margin-bottom: 30px; }
.menu-item { display: flex; justify-content: space-between; margin-top: 25px; }
.item-name { font-size: 20px; font-weight: 500; }
.item-price { font-size: 20px; font-weight: 700; color: #00203f; }
.item-desc { font-size: 15px; color: #777; margin-top: 5px; }

.gallery-section { padding: 100px 50px; background-color: #fff; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1200px; margin: 0 auto; }
.gallery-item { height: 300px; overflow: hidden; border-radius: 10px; box-shadow: 0 4px 15px rgba(0,0,0,0.1); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.5s ease; cursor: pointer; }
.gallery-item img:hover { transform: scale(1.1); }

.modal { display: none; position: fixed; z-index: 2000; padding-top: 80px; left: 0; top: 0; width: 100%; height: 100%; background-color: rgba(0, 32, 63, 0.95); }
.modal-content { margin: auto; display: block; max-width: 90%; max-height: 80vh; width: auto; border-radius: 10px; animation: zoom 0.4s; }
@keyframes zoom { from {transform:scale(0.8); opacity: 0;} to {transform:scale(1); opacity: 1;} }
.close-modal { position: absolute; top: 30px; right: 50px; color: #f1f1f1; font-size: 50px; cursor: pointer; }
#caption { text-align: center; color: #ffb300; padding: 15px 0; font-size: 22px; font-family: 'Playfair Display', serif; }

.about-section { padding: 100px 50px; background-color: #fdfdfd; text-align: center; }
.about-container { max-width: 1000px; margin: 0 auto; }
.about-title { font-family: 'Playfair Display', serif; font-size: 42px; color: #00203f; margin-bottom: 50px; }
.about-title::after { content: ''; display: block; width: 80px; height: 3px; background-color: #ffb300; margin: 25px auto 0; }
.about-content p { font-size: 18px; color: #444; line-height: 1.9; margin-bottom: 30px; text-align: justify; }

.reservation-section { padding: 100px 50px; background-color: #00203f; color: white; }
.reservation-container { display: flex; justify-content: space-between; align-items: center; max-width: 1200px; margin: 0 auto; gap: 50px; flex-wrap: wrap; }
.reservation-info { flex: 1; min-width: 300px; }
.reservation-title { font-family: 'Playfair Display', serif; font-size: 45px; margin-bottom: 20px; }
.contact-item { display: flex; align-items: center; gap: 15px; }
.phone-number { font-size: 28px; font-weight: 500; color: #ffb300; text-decoration: none; }
.address-text { font-size: 16px; font-weight: 300; color: #e0e0e0; }
.reservation-map { flex: 1; min-width: 300px; border-radius: 10px; overflow: hidden; }

/* --- MOBİL UYUMLULUK (RESPONSIVE) --- */
@media (max-width: 768px) {
    header { 
        padding: 0 20px; 
        height: 60px;
    }

    .brand-logo { height: 35px; width: 35px; }
    .logo { font-size: 16px; }
    .subtitle { font-size: 9px; }

    /* Butonu göster */
    .menu-toggle { display: flex; }

    /* Navigasyonu gizle ve açılır yap */
    nav {
        position: absolute;
        top: 60px;
        left: 0;
        width: 100%;
        background-color: rgba(0, 32, 63, 0.98);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-out;
    }

    nav.active {
        max-height: 350px; 
        border-bottom: 2px solid #ffb300;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
    }

    nav ul li {
        margin: 15px 0;
        margin-left: 0;
    }

    /* Hamburger Animasyonu (Tıklandığında Çarpı Olur) */
    .menu-toggle.is-active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.is-active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .menu-toggle.is-active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* İçerik Düzenlemeleri */
    .welcome-text { font-size: 30px; }
    .welcome-paragraph { font-size: 15px; }
    .menu-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .gallery-item { height: 180px; }
    .about-title, .section-title, .reservation-title { font-size: 26px !important; }
    
    /* YENİ: Mobilde paragraf yazılarını sola yaslayarak boşlukları giderir */
    .about-content p { text-align: left; font-size: 16px; }
}