/* ===== ORTAK STILLER ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --bg-primary: #fcf6f0;
    --bg-card: #ffffff;
    --text-dark: #2c1810;
    --text-soft: #5a3e32;
    --gold: #b8863b;
    --gold-light: #d9b382;
    --gold-bg: #faf1e6;
    --shadow: 0 8px 30px rgba(44, 24, 16, 0.08);
    --radius: 20px;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-primary);
    color: var(--text-dark);
    min-height: 100vh;
    padding: 20px 16px 40px;
}

.container {
    max-width: 820px;
    margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
    text-align: center;
    padding: 30px 20px 20px;
    animation: fadeDown 0.8s ease-out;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

.hero h1 span {
    color: var(--gold);
    display: inline-block;
    animation: pulseGold 2.5s infinite ease-in-out;
}

.hero .subtitle {
    font-size: 0.85rem;
    color: var(--text-soft);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-top: 6px;
    opacity: 0.7;
}

.hero .divider {
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin: 14px auto 0;
    border-radius: 10px;
}

/* ===== TABS ===== */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 28px 0 24px;
    animation: fadeUp 0.8s ease-out 0.2s both;
}

.tab-btn {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 10px 16px;
    border: 2px solid var(--gold-light);
    background: transparent;
    color: var(--text-soft);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.tab-btn:hover {
    background: var(--gold-bg);
    border-color: var(--gold);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    box-shadow: 0 4px 15px rgba(184, 134, 59, 0.3);
}

/* ===== MENU ===== */
.tab-content {
    display: none;
    animation: fadeUp 0.6s ease-out;
}

.tab-content.active {
    display: block;
}

.menu-grid {
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 20px 18px;
    border: 1px solid rgba(184, 134, 59, 0.10);
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px dashed #f0e6dd;
    padding-left: 4px;
    padding-right: 4px;
}

.menu-item:last-child {
    border-bottom: none;
}

.item-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-dark);
}

.item-price {
    font-weight: 700;
    color: var(--gold);
    font-size: 0.9rem;
    white-space: nowrap;
    background: var(--gold-bg);
    padding: 2px 14px;
    border-radius: 30px;
}

.item-note {
    font-size: 0.75rem;
    color: var(--gold);
    background: #fdf6ee;
    padding: 2px 12px;
    border-radius: 30px;
    display: inline-block;
    margin-top: 4px;
    font-weight: 500;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 6px;
    border-bottom: 3px solid var(--gold);
    display: inline-block;
}

.menu-item--with-note {
    flex-wrap: wrap;
}

.menu-item--with-note .item-name {
    flex: 1;
}

.menu-item--with-note .item-note {
    width: 100%;
    margin-top: 4px;
}

.dessert-footer-note {
    text-align: center;
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-soft);
    background: var(--gold-bg);
    padding: 12px 16px;
    border-radius: 30px;
    margin-top: 16px;
    border: 1px solid var(--gold-light);
    font-weight: 400;
    letter-spacing: 0.5px;
}

.dessert-footer-note::before {
    content: "🍰 ";
}

/* ===== CONTACT ===== */
.contact-section {
    margin-top: 48px;
    animation: fadeUp 0.8s ease-out 0.6s both;
}

.contact-section .category-title {
    margin-bottom: 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 24px 20px;
    border: 1px solid rgba(184, 134, 59, 0.10);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.contact-item .icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    background: var(--gold-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item .label {
    font-weight: 300;
    color: var(--text-soft);
    font-size: 0.8rem;
    display: block;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    min-height: 220px;
    background: #e8ddd0;
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
}

.working-hours {
    background: var(--gold-bg);
    padding: 10px 16px;
    border-radius: 12px;
    border-left: 4px solid var(--gold);
    margin-top: 4px;
}

.working-hours strong {
    color: var(--gold);
    font-weight: 700;
}

/* ===== FOOTER ===== */
.footer-note {
    text-align: center;
    margin-top: 30px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-soft);
    animation: fadeUp 0.8s ease-out 0.8s both;
}

.footer-note span {
    display: block;
    font-size: 1.3rem;
    color: var(--gold);
    margin-bottom: 4px;
}

.footer-note .social {
    margin-top: 10px;
    font-style: normal;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 1px;
    opacity: 0.6;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(20px); }
    100% { opacity: 1; transform: translateY(0); }
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 700px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    .map-container {
        min-height: 200px;
        order: -1;
    }
    .map-container iframe {
        min-height: 200px;
        position: relative;
    }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2rem; }
    .tab-btn { font-size: 0.65rem; padding: 8px 12px; }
    .menu-grid { padding: 14px 12px; }
    .item-name { font-size: 0.9rem; }
    .item-price { font-size: 0.8rem; padding: 2px 12px; }
    .category-title { font-size: 1.3rem; }
    .contact-item { font-size: 0.85rem; }
    .dessert-footer-note { font-size: 0.8rem; padding: 10px 12px; }
}

@media (max-width: 400px) {
    .hero h1 { font-size: 1.6rem; }
    .tab-btn { font-size: 0.55rem; padding: 6px 8px; }
    .item-name { font-size: 0.8rem; }
    .item-price { font-size: 0.75rem; }
}

html {
    scroll-behavior: smooth;
}