/* Renkler */
:root {
    --color-bg: #0d0b0a;
    --color-panel: #171210;
    --color-card: #1f1814;
    --color-brand: #543000;
    --color-brand-light: #6f4309;
    --color-text: #f8f4ee;
    --color-muted: #b9aaa0;
    --font-script: "Great Vibes", cursive;
    --font-title: "Josefin Sans", sans-serif;
    --font-body: "Poppins", sans-serif;
}

/* Sayfa */
html {
    scroll-behavior: smooth;
}

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

img {
    max-width: 100%;
}

/* Butonlar */
.btn {
    min-width: 138px;
    border-radius: 0;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
}

.btn-brand {
    --bs-btn-color: #fff;
    --bs-btn-bg: var(--color-brand);
    --bs-btn-border-color: var(--color-brand);
    --bs-btn-hover-color: #fff;
    --bs-btn-hover-bg: var(--color-brand-light);
    --bs-btn-hover-border-color: var(--color-brand-light);
}

.btn-outline-brand {
    color: var(--color-brand);
    border: 1px solid var(--color-brand);
    background: transparent;
}

.btn-outline-brand:hover {
    color: #1b120c;
    background: var(--color-brand);
}

/* Üst menü */
.site-navbar {
    min-height: 98px;
    background: linear-gradient(180deg, rgba(8, 7, 6, 0.9), rgba(8, 7, 6, 0.66));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}

.brand-logo {
    width: 156px;
    height: 92px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.9);
    padding-inline: 18px !important;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-brand);
}

/* Giriş butonu */
.nav-divider {
    display: block;
    width: 1px;
    height: 30px;
    margin: 0 4px 0 14px;
    background: rgba(255, 255, 255, 0.72);
}

.nav-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 14px;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.28);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.nav-login:hover {
    color: #fff;
    border-color: var(--color-brand);
    background: rgba(84, 48, 0, 0.32);
}

.login-icon {
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Hero */
.hero {
    min-height: 780px;
    background: #070605;
}

.hero-slide {
    position: relative;
    min-height: 780px;
    display: grid;
    place-items: center;
    background-position: center;
    background-size: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 58% 40%, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.78) 68%),
        linear-gradient(180deg, rgba(7, 6, 5, 0.3), rgba(7, 6, 5, 0.9));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 820px;
    padding-top: 110px;
    text-align: center;
}

.hero-subtitle,
.section-kicker {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--color-brand);
    font-family: var(--font-script);
    font-size: 42px;
    line-height: 1;
}

.hero h1 {
    max-width: 880px;
    margin: 0 auto 24px;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(42px, 5.4vw, 74px);
    font-weight: 700;
    letter-spacing: 0.07em;
    line-height: 1.16;
    text-transform: uppercase;
    text-shadow: 0 16px 34px rgba(0, 0, 0, 0.5);
}

.hero p {
    max-width: 680px;
    margin: 0 auto 42px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 17px;
    line-height: 1.8;
    text-shadow: 0 10px 22px rgba(0, 0, 0, 0.55);
}

.carousel-indicators {
    bottom: 42px;
    gap: 7px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 50%;
    background-color: transparent;
    opacity: 1;
}

.carousel-indicators .active {
    border-color: var(--color-brand);
    background-color: var(--color-brand);
}

/* Bilgi alanı */
.info-strip {
    padding: 34px 0;
    background: #050403;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.info-item {
    display: flex;
    gap: 16px;
    min-height: 88px;
    align-items: flex-start;
}

.info-icon {
    width: 26px;
    height: 26px;
    flex: 0 0 26px;
    margin-top: 4px;
    color: var(--color-brand);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.info-item h2 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.info-item p {
    margin: 0;
    color: var(--color-muted);
    line-height: 1.7;
}

/* Hakkımızda */
.about-section {
    background:
        linear-gradient(90deg, rgba(13, 11, 10, 0), rgba(13, 11, 10, 0.96) 50%),
        var(--color-bg);
}

.about-image {
    min-height: 620px;
    height: 100%;
    background-image: url("../images/about.jpg");
    background-position: center;
    background-size: cover;
}

.about-content {
    position: relative;
    min-height: 620px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(42px, 7vw, 92px);
    background:
        linear-gradient(90deg, rgba(8, 7, 6, 0.94), rgba(8, 7, 6, 0.98)),
        url("../images/hero-2.jpg");
    background-position: center;
    background-size: cover;
}

.story-panel {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-left: -120px;
    padding: clamp(34px, 5vw, 56px);
    background: rgba(0, 0, 0, 0.62);
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.32);
}

.about-content h2,
.menu-section h2 {
    margin-bottom: 20px;
    color: #fff;
    font-family: var(--font-title);
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 700;
    line-height: 1.18;
}

.story-panel h2 {
    margin-top: -18px;
}

.about-content p,
.menu-section p {
    color: var(--color-muted);
    line-height: 1.85;
}

/* Menü tasarımı */
.menu-section {
    padding: 108px 0;
    background:
        radial-gradient(circle at 15% 15%, rgba(84, 48, 0, 0.12), transparent 32%),
        var(--color-bg);
}

.menu-card {
    height: 100%;
    display: grid;
    grid-template-columns: 118px 1fr;
    gap: 18px;
    align-items: center;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: linear-gradient(145deg, rgba(31, 24, 20, 0.98), rgba(13, 10, 9, 0.98));
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.24);
}

.menu-card img {
    width: 118px;
    height: 118px;
    object-fit: cover;
}

.menu-card h3 {
    margin-bottom: 7px;
    color: #fff;
    font-family: var(--font-title);
    font-size: 23px;
    font-weight: 700;
}

.menu-card p {
    margin-bottom: 0;
    color: var(--color-muted);
    font-size: 14px;
}

/* Sayaç */
.stats-section {
    position: relative;
    padding: 88px 0;
    background-image: linear-gradient(rgba(10, 8, 7, 0.66), rgba(10, 8, 7, 0.74)), url("../images/hero-2.jpg");
    background-position: center;
    background-size: cover;
}

.stat-item {
    padding: 24px;
    border: 1px solid rgba(84, 48, 0, 0.42);
    background: rgba(0, 0, 0, 0.18);
}

.stat-item strong {
    display: block;
    color: var(--color-brand);
    font-family: var(--font-title);
    font-size: 46px;
    font-weight: 700;
}

.stat-item span {
    color: rgba(247, 241, 232, 0.84);
}

/* Footer */
.site-footer {
    padding: 72px 0 26px;
    background:
        linear-gradient(180deg, rgba(8, 6, 5, 0.96), rgba(5, 4, 3, 1)),
        var(--color-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    width: 148px;
    height: 88px;
    object-fit: contain;
    margin-bottom: 18px;
}

.footer-brand {
    padding-right: 28px;
}

.footer-info {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-icon {
    width: 25px;
    height: 25px;
    flex: 0 0 25px;
    margin-top: 3px;
    color: var(--color-brand);
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-footer h2 {
    margin-bottom: 18px;
    color: #fff;
    font-family: var(--font-title);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.site-footer p {
    margin-bottom: 8px;
    color: var(--color-muted);
    line-height: 1.8;
}

.social-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 38px;
    padding: 8px 14px;
    color: rgba(247, 241, 232, 0.86);
    border: 1px solid rgba(84, 48, 0, 0.42);
    text-decoration: none;
    font-size: 13px;
    transition: color 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.social-icon {
    width: 17px;
    height: 17px;
    flex: 0 0 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-links a:hover {
    color: #1b120c;
    border-color: var(--color-brand);
    background: var(--color-brand);
}

.footer-bottom {
    margin-top: 48px;
    padding-top: 22px;
    color: rgba(247, 241, 232, 0.58);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
    text-align: center;
}

/* Sayfa sonu */
.page-end {
    height: 28px;
    background: #050403;
}

/* Tablet */
@media (max-width: 991.98px) {
    .site-navbar {
        background: rgba(15, 13, 12, 0.98);
    }

    .navbar-collapse {
        padding: 18px 0 8px;
    }

    .navbar-nav {
        align-items: flex-start !important;
        gap: 8px;
    }

    .navbar-nav .nav-link {
        padding: 8px 0 !important;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .btn-brand,
    .nav-login {
        width: min(220px, 100%);
        justify-content: center;
    }

    .navbar-nav .nav-item.ms-lg-3,
    .navbar-nav .nav-item.ms-lg-2 {
        margin-left: 0 !important;
    }

    .brand-logo {
        width: 132px;
        height: 78px;
    }

    .hero h1 {
        font-size: 44px;
    }

    .about-image,
    .about-content {
        min-height: 420px;
    }

    .story-panel {
        margin-left: 0;
    }
}

/* Mobil */
@media (max-width: 575.98px) {
    .brand-logo {
        width: 112px;
        height: 68px;
    }

    .hero,
    .hero-slide {
        min-height: 720px;
    }

    .hero-content {
        padding-inline: 18px;
    }

    .hero-subtitle,
    .section-kicker {
        font-size: 34px;
    }

    .hero p {
        font-size: 15px;
    }

    .menu-card {
        grid-template-columns: 96px 1fr;
    }

    .menu-card img {
        width: 96px;
        height: 96px;
    }
}

/* Giriş Sayfası Özel Stiller */
.login-page {
    background: linear-gradient(rgba(8, 7, 6, 0.8), rgba(8, 7, 6, 0.9)), url("../images/about.jpg");
    background-position: center;
    background-size: cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-wrapper {
    width: 100%;
    max-width: 440px;
    padding: 20px;
}

.login-container {
    background: rgba(13, 11, 10, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 42px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(15px);
}

.login-logo {
    width: 140px;
    margin-bottom: 24px;
}

.login-header h1 {
    color: #fff;
    font-family: var(--font-title);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.login-header p {
    color: var(--color-muted);
    font-size: 14px;
    margin-bottom: 34px;
}

.form-label {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.custom-input {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    color: #fff;
    padding: 12px 16px;
    font-size: 14px;
}

.custom-input:focus {
    background: rgba(0, 0, 0, 0.3);
    border-color: var(--color-brand);
    color: #fff;
    box-shadow: none;
}

.forgot-link,
.signup-link {
    color: var(--color-brand);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.forgot-link:hover,
.signup-link:hover {
    color: var(--color-brand-light);
    text-decoration: underline;
}

.login-footer {
    font-size: 14px;
    color: var(--color-muted);
}

.login-footer span {
    margin-right: 5px;
}