:root {
    --primary-color: #4A5D4F;
    --secondary-color: #D4C5A9;
    --bg-color: #F2F2F2;
    --text-color: #2C332E;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
}

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

/* Header */
.site-header {
    text-align: center;
    padding: 2rem 0 1.5rem;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
}

.logo-area h1 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-area p {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888;
    margin-bottom: 0.5rem;
}

.season-tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    border-radius: 20px;
    text-transform: uppercase;
}

/* Menu Images Area */
.menu-images-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
}

.zoom-hint {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    margin-bottom: 15px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { opacity: 0.6; }
    50% { opacity: 1; }
    100% { opacity: 0.6; }
}

.menu-page-wrapper {
    width: 100%;
    margin-bottom: 25px;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer; /* Tıklanabilir olduğunu göster */
    transition: transform 0.2s;
}

/* Tıklanınca hafif efekt */
.menu-page-wrapper:active {
    transform: scale(0.98);
}

.menu-page {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    background-color: white;
    min-height: 200px;
}

.page-number {
    margin-top: 8px;
    font-size: 0.8rem;
    color: #999;
    font-family: var(--font-heading);
    font-style: italic;
    background-color: rgba(255,255,255,0.8);
    padding: 2px 10px;
    border-radius: 10px;
}

img[src=""] { display: none; }

/* Lightbox (Modal) Styling */
.lightbox {
    display: none; /* Varsayılan gizli */
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9); /* Koyu arka plan */
    backdrop-filter: blur(5px);
}

.lightbox-content {
    margin: auto;
    display: block;
    width: 90%;
    max-width: 1200px;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(255,255,255,0.1);
    animation-name: zoom;
    animation-duration: 0.3s;
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
    cursor: pointer;
    z-index: 10000;
    background: rgba(0,0,0,0.5);
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
}

.close-btn:hover,
.close-btn:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 2rem 0;
    background-color: #fff;
    color: #888;
    font-size: 0.8rem;
}

.btn-download-mini {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f0f0f0;
    color: var(--text-color);
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-download-mini:hover {
    background-color: var(--primary-color);
    color: white;
}

.social-links a {
    color: var(--primary-color);
    font-size: 1.4rem;
    margin: 0 10px;
    text-decoration: none;
}
