body {
    font-family: 'Sora', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: #f8f9fa;
}

.navbar-public .brand-logo-circle {
    margin-bottom: 0.15rem;
}

.hero-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 2.5rem;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
}

.qr-highlight {
    border-radius: 1rem;
    border: 1px dashed #ffc107;
    background: #fff3cd;
}

.menu-category-title {
    border-left: 4px solid #ff8c42;
    padding-left: 0.75rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.menu-card {
    border-radius: 0.75rem;
    border: 1px solid #e9ecef;
}

.admin-body {
    background-color: #f3f4f6;
}
/* --- Modern tema geliştirmeleri --- */

:root {
    --brand-primary: #ff7b3d;
    --brand-primary-soft: #ffe1cf;
    --brand-accent: #ffb347;
    --brand-dark: #1e293b;
}

body {
    background: radial-gradient(circle at top left, #fff7ed 0, #f9fafb 45%, #edf2ff 100%);
    color: #111827;
}

main {
    min-height: calc(100vh - 120px);
}

.navbar {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 1.25rem;
    letter-spacing: 0.03em;
}

.navbar .nav-link {
    font-weight: 500;
    color: #6b7280;
}

.navbar .nav-link:hover,
.navbar .nav-link:focus,
.navbar .nav-link.active {
    color: var(--brand-primary);
}

.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border: none;
    box-shadow: 0 10px 25px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #f97316, #fdba74);
    box-shadow: 0 12px 30px rgba(249, 115, 22, 0.45);
}

.btn-outline-warning {
    border-color: var(--brand-primary);
    color: var(--brand-primary);
}

.btn-outline-warning:hover {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #fff;
}

.qr-highlight {
    border-radius: 1.25rem;
    border-style: dashed;
    border-width: 2px;
    border-color: rgba(251, 146, 60, 0.8);
    background: linear-gradient(135deg, #fff7ed, #fef9c3);
}

.qr-highlight .bg-white {
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.menu-category-title {
    border-left-color: var(--brand-primary);
    font-size: 1.05rem;
}

.menu-card {
    border-radius: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.05);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
}

.menu-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.card {
    border-radius: 1rem;
}

.card-body {
    padding: 1.25rem 1.5rem;
}

.admin-body {
    background-color: #f1f5f9;
}

.table thead th {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #6b7280;
}

.table tbody td {
    vertical-align: middle;
}

.form-control,
.form-select {
    border-radius: 0.75rem;
}

.btn {
    border-radius: 999px;
    font-weight: 500;
}

.hero-section .btn {
    border-radius: 0.9rem;
}

/* --- Hero gelişmiş stil --- */

.hero-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at top left, #fff1e6 0, #ffd1a3 35%, #ffb26b 70%, #ff914d 100%);
    padding: 4rem 3rem;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    border-radius: 0;
    box-shadow: none;
}

.hero-with-image {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #f9fafb;
}

.hero-with-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(15, 23, 42, 0.2), rgba(15, 23, 42, 0.8));
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-family: 'Fraunces', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(3.2rem, 6vw + 0.5rem, 5.2rem);
    letter-spacing: -0.05em;
    line-height: 1.02;
}

.hero-with-image .lead {
    color: rgba(241, 245, 249, 0.9);
}

.hero-section .lead {
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .hero-section .lead {
        font-size: 1.6rem;
    }
}

/* Alt bölümler (bilgi kartları, öne çıkanlar, konum) */

.section-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.section-title::before {
    content: "";
    width: 32px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
}

.info-section {
    margin-top: 2.5rem;
}

.info-section .card {
    border-radius: 1.25rem;
    border: 1px solid rgba(148, 163, 184, 0.35);
    background: radial-gradient(circle at top left, #ffffff 0, #f9fafb 55%, #eff6ff 100%);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.info-section .card-body h2 {
    font-size: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #6b7280;
}

.featured-section {
    margin-top: 3rem;
}

.featured-section .section-title {
    margin-bottom: 1.5rem;
}

.featured-section .menu-card {
    position: relative;
    overflow: hidden;
}

.featured-section .menu-card::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background: radial-gradient(circle at top left, rgba(249, 115, 22, 0.08), rgba(251, 191, 36, 0.08));
    transition: opacity 0.18s ease-out;
}

.featured-section .menu-card:hover::before {
    opacity: 1;
}

.featured-section .featured-card {
    border: none;
    background: radial-gradient(circle at top left, #ffffff 0, #fff7ed 45%, #fee2e2 100%);
}

.featured-section .featured-badge {
    background: rgba(252, 211, 77, 0.16);
    color: #92400e;
    border: 1px solid rgba(245, 158, 11, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.featured-section .featured-desc {
    font-size: 0.9rem;
}

.featured-section .featured-price-amount {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--brand-primary);
}

.featured-section .featured-price-currency {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: #6b7280;
}

.location-section {
    margin-top: 3rem;
}

.location-section .ratio {
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

#qr {
    margin-top: 0.75rem;
}

/* Public navbar & logo */

.navbar-public {
    background: radial-gradient(circle at top left,
        rgba(255, 255, 255, 0.24),
        rgba(148, 163, 184, 0.10));
    border-bottom: 1px solid rgba(148, 163, 184, 0.25);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-top: 0;
    border-radius: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
}

.navbar-public .container {
    padding-top: 0.15rem;
    padding-bottom: 0.15rem;
}

.navbar-public .navbar-brand-text {
    letter-spacing: 0.18em;
}

.brand-logo-circle {
    width: 110px;
    height: 110px;
    border-radius: 999px;
    background: radial-gradient(circle at top left, rgba(255, 247, 237, 0.95), rgba(255, 237, 213, 0.9));
    border: 2px solid rgba(248, 113, 22, 0.78);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);
    position: relative;
}

.brand-logo-circle::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    pointer-events: none;
}

.brand-logo-circle img {
    width: 94px;
    height: 94px;
    border-radius: 999px;
    object-fit: cover;
}

.qr-nav-link {
    font-weight: 600;
    color: var(--brand-primary);
    padding: 0.25rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(249, 115, 22, 0.4);
    background: rgba(255, 247, 237, 0.9);
}

.qr-nav-link:hover {
    color: #fff;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-accent));
    border-color: transparent;
}