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

body {
    font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
    background: #fef9f0;
    color: #2c2418;
}

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

.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo img {
    max-height: 50px;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #5c3d28;
    font-weight: 500;
}

.nav a:hover {
    color: #c2813a;
}

.hero {
    background: linear-gradient(135deg, #3e2a1f 0%, #5c3d28 100%);
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.6;
}
.hero .logo img {
    max-height: 150px;
    margin-bottom: 20px;
}
.btn {
    display: inline-block;
    background: #c2813a;
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
}
/* Logo stil ayarları */
.logo img {
    max-height: 120px;        /* Büyüttük */
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);  /* Daha açık ve canlı */
    transition: all 0.2s ease;
}

/* Mobilde biraz küçült */
@media (max-width: 768px) {
    .logo img {
        max-height: 80px;
        filter: brightness(1.1);
    }
}

/* İsterseniz logo altına gölge efekti */
.logo img:hover {
    filter: brightness(1.3) drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
/* Logo ve header boşluklarını sıfırla */
.header {
    padding: 5px 0;  /* Üst/alt boşluğu azalt */
    margin: 0;
}

.logo {
    line-height: 0;  /* Logo altındaki fazla boşluğu kaldır */
}

.logo img {
    max-height: 120px;
    width: auto;
    object-fit: contain;
    filter: brightness(1.2) contrast(1.1);
    display: block;  /* Altındaki gizli boşluğu kaldır */
    margin: 0 auto;  /* Ortalamak için (isteğe bağlı) */
}

/* Container'ların boşluklarını da sıfırla */
.container {
    padding-top: 0;
    padding-bottom: 0;
}

/* Header içindeki container'a özel */
.header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}
.about {
    padding: 60px 20px;
    text-align: center;
}
/* Header düzeni */
.header .container {
    display: flex;
    justify-content: space-between;  /* Logo sol, menü sağ */
    align-items: center;
    flex-wrap: wrap;
    padding: 10px 20px;
}

.logo {
    flex: 0 0 auto;
    line-height: 0;
}

.logo img {
    max-height: 80px;
    width: auto;
    filter: brightness(1.2);
    display: block;
}

.nav {
    flex: 0 0 auto;
}

.nav a {
    margin-left: 25px;
    text-decoration: none;
    color: #5c3d28;
    font-weight: 500;
}

/* Mobilde alt alta gelmesini isterseniz */
@media (max-width: 768px) {
    .header .container {
        flex-direction: column;
        text-align: center;
    }
    
    .nav a {
        margin: 0 12px;
    }
    
    .logo img {
        max-height: 60px;
        margin-bottom: 10px;
    }
}
.about-text {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.contact-map {
    padding: 60px 20px;
    background: #f0e8dd;
}

.contact-map .container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}

.contact-info p {
    margin: 10px 0;
}

.map {
    flex: 1;
    min-width: 300px;
}

.map iframe {
    width: 100%;
    border-radius: 16px;
}

.footer {
    background: #1f1812;
    color: #b8a187;
    text-align: center;
    padding: 30px;
}

/* Menu Page */
.category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 30px 0;
}

.tab {
    background: #e8ddcf;
    padding: 8px 20px;
    border-radius: 40px;
    text-decoration: none;
    color: #5c3d28;
}

.tab.active {
    background: #c2813a;
    color: white;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    flex-wrap: wrap;
}

.item-prices {
    display: flex;
    gap: 15px;
}

.price {
    font-weight: bold;
    color: #c2813a;
}

.guest-notes-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px dashed #e2c7a3;
}

.note-item {
    background: #f5f0ea;
    padding: 12px;
    border-radius: 16px;
    margin: 10px 0;
}

.add-note {
    margin-top: 25px;
}

.add-note input, .add-note textarea {
    width: 100%;
    padding: 10px;
    margin: 8px 0;
    border: 1px solid #ddd;
    border-radius: 12px;
}

.add-note button {
    background: #c2813a;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    cursor: pointer;
}

.success {
    color: green;
    margin: 10px 0;
}

.error {
    color: red;
}

/* Admin */
.admin-login {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login-container {
    background: white;
    padding: 40px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    width: 350px;
}

.login-container input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ddd;
    border-radius: 30px;
}

.login-container button {
    width: 100%;
    background: #c2813a;
    color: white;
    padding: 12px;
    border: none;
    border-radius: 30px;
    font-weight: bold;
    cursor: pointer;
}