/* style.css - Ferah & Modern Logo Teması */
:root {
    --bg-primary: #FFFFFF;
    /* Ferah bir görünüm için tam beyaz */
    --bg-secondary: #F9FAFB;
    /* Çok hafif, serin bir gri/buz beyazı */
    --text-primary: #111827;
    /* Koyu, net ve okunaklı metin */
    --text-secondary: #4B5563;
    /* Daha yumuşak ikincil metin */

    --accent-main: #111827;
    /* Logoyla uyumlu, keskin ve modern koyu ton (Siyah/Koyu Gri) */
    --accent-hover: #374151;
    --accent-light: #F3F4F6;
    /* Çok hafif arka plan vurguları */

    --font-heading: 'Outfit', sans-serif;
    /* Daha modern ve temiz bir görünüm için sans-serif */
    --font-body: 'Outfit', sans-serif;

    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.12);

    --transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.text-center {
    text-align: center;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 1.1rem 2.2rem;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 12px;
    /* Daha modern, hafif köşeli modern yapı */
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
}

.btn-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.btn-primary {
    background-color: var(--accent-main);
    color: #fff;
    box-shadow: 0 8px 25px rgba(17, 24, 39, 0.2);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(17, 24, 39, 0.3);
}

.btn-secondary {
    background-color: #ffffff;
    color: var(--text-primary);
    border: 1px solid #E5E7EB;
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    border-color: var(--text-primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--accent-main);
    color: var(--accent-main);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--accent-main);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background 0.4s ease, backdrop-filter 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease, border-bottom 0.4s ease;
    padding: 1.8rem 0;
    border-bottom: 1px solid transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    padding: 1rem 0;
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid #F3F4F6;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-img {
    width: 55px;
    height: 55px;
    object-fit: contain;
    border-radius: 50%;
    background: #fff;
    padding: 1px;
    /* Reduced from 4px to thin the white contour */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.logo-img:hover {
    transform: rotate(-5deg) scale(1.05);
}

.navbar.scrolled .logo-text {
    color: var(--text-primary);
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #fff;
    /* initially white on hero */
    transition: color 0.4s ease;
    letter-spacing: -0.02em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.navbar.scrolled .nav-links a {
    color: var(--text-primary);
}

.nav-links a {
    color: #fff;
    /* initially white on hero */
    font-weight: 500;
    font-size: 1.05rem;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -6px;
    left: 0;
    background-color: var(--accent-main);
    transition: width 0.3s ease;
}

.navbar.scrolled .nav-links a::after {
    background-color: var(--accent-main);
}

.navbar:not(.scrolled) .nav-links a::after {
    background-color: #fff;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Nav buttons override */
.nav-links a.nav-btn-outline::after,
.nav-links a.nav-btn-solid::after {
    display: none;
}

.nav-btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.7);
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
}

.navbar.scrolled .nav-btn-outline {
    border-color: #E5E7EB;
    color: var(--text-primary) !important;
}

.navbar.scrolled .nav-btn-outline:hover {
    border-color: var(--text-primary);
    background-color: var(--text-primary);
    color: #fff !important;
}

.nav-btn-solid {
    background-color: #fff;
    color: var(--text-primary) !important;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.navbar.scrolled .nav-btn-solid {
    background-color: var(--accent-main);
    color: #fff !important;
}

.nav-btn-solid:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Mobile Icon */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 30px;
    height: 2px;
    background-color: #fff;
    transition: var(--transition);
}

.navbar.scrolled .mobile-menu-btn span {
    background-color: var(--text-primary);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 750px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background-color: #f4f4f4;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
    animation: slowZoom 25s infinite alternate linear;
}

@keyframes slowZoom {
    0% {
        transform: scale(1);
        filter: brightness(1.05);
    }

    100% {
        transform: scale(1.1);
        filter: brightness(1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Lighter, fresher gradient */
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.1) 40%, rgba(255, 255, 255, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: #fff;
    max-width: 900px;
    padding-top: 5rem;
}

/* Text changes color gracefully as the gradient turns white at bottom */
.hero-title {
    font-size: clamp(3.5rem, 7vw, 6rem);
    margin-bottom: 1.5rem;
    line-height: 1.05;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    font-weight: 600;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    font-weight: 400;
    margin-bottom: 3rem;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    animation-delay: 0.2s;
    opacity: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    animation: fadeIn 1.2s ease forwards;
    animation-delay: 0.4s;
    opacity: 0;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    animation: fadeIn 2s ease forwards;
    opacity: 0;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-primary);
    border-radius: 20px;
    display: flex;
    justify-content: center;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: var(--text-primary);
    border-radius: 4px;
    margin-top: 6px;
    animation: mouseWheel 2s infinite ease-in-out;
}

@keyframes mouseWheel {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(12px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 0;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(40px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Common Sections */
section {
    padding: 8rem 0;
}

.section-title {
    font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.section-title span {
    color: var(--text-secondary);
    font-weight: 300;
}

.subtitle {
    display: inline-block;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    background: var(--accent-light);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
}

/* About Section */
.about {
    background-color: var(--bg-primary);
    position: relative;
}

/* Ferahlık katan dekoratif şekiller */
.about::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #F3F4F6 0%, transparent 70%);
    z-index: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-text p {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.about-text strong {
    color: var(--text-primary);
    font-weight: 600;
}

.features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid #F3F4F6;
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
    border-color: #E5E7EB;
}

.feature-icon {
    font-size: 2rem;
    background: var(--bg-secondary);
    color: var(--text-primary);
    width: 65px;
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    /* Köşeli modern tasarım */
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.feature-item p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.main-img {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.main-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 24px;
    pointer-events: none;
}

.main-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform 0.8s ease;
}

.main-img:hover img {
    transform: scale(1.08);
}

/* Promo Section */
.promo {
    padding: 2rem 0;
    margin-bottom: 4rem;
}

.promo-grid {
    display: flex;
    justify-content: center;
}

.promo-card {
    background: linear-gradient(135deg, #111827 0%, #374151 100%);
    color: #fff;
    padding: 3.5rem 2rem;
    border-radius: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 900px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.promo-badge {
    background: #fff;
    color: #111827;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.promo-card h3 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
}

.promo-price {
    font-size: 1.8rem;
    font-weight: 400;
    margin: 0;
}

.promo-price span {
    font-size: clamp(3rem, 7vw, 4.5rem);
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-top: 0.5rem;
}

.promo-decor {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    pointer-events: none;
}

.promo-card::before {
    content: '';
    position: absolute;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    pointer-events: none;
}

/* Menu Section */
.menu {
    background-color: var(--bg-secondary);
    border-top: 1px solid #F3F4F6;
    border-bottom: 1px solid #F3F4F6;
}

.section-header {
    margin-bottom: 5rem;
}

.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.5rem;
}

.menu-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
    flex: 1 1 280px;
    max-width: 350px;
}

.menu-item:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-hover);
}

.menu-item-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--text-primary);
    color: #fff;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.menu-item-img {
    height: 260px;
    overflow: hidden;
    position: relative;
}

.menu-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.menu-item:hover .menu-item-img img {
    transform: scale(1.08);
}

.menu-item-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.menu-item-header h3 {
    font-size: 1.4rem;
    margin: 0;
}

.price {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-secondary);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
}

.menu-item-content p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-top: auto;
}

/* Delivery Platforms */
.delivery-platforms {
    margin-top: 4rem;
}

.platform-badges-container {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid #F3F4F6;
    width: 130px;
    height: 130px;
    padding: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.platform-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.platform-badge.ubereats:hover {
    border-color: #06C167;
}

.platform-badge.yemeksepeti:hover {
    border-color: #EA004B;
    /* Yemeksepeti Pink/Magenta */
}

.platform-img-logo {
    height: 64px;
    width: auto;
    object-fit: contain;
}

/* Locations */
.locations {
    background-color: var(--bg-primary);
}

.locations-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2.5rem;
    background: #fff;
    border-radius: 32px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid #F3F4F6;
}

.locations-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.branch-card {
    padding: 1.8rem;
    border-radius: 20px;
    border: 2px solid #F3F4F6;
    background: #fff;
    cursor: pointer;
    transition: var(--transition);
}

.branch-card:hover {
    border-color: #D1D5DB;
    background: #F9FAFB;
}

.branch-card.active {
    background: var(--text-primary);
    border-color: var(--text-primary);
    color: #fff;
    box-shadow: 0 15px 30px rgba(17, 24, 39, 0.15);
}

.branch-card.active h3,
.branch-card.active p,
.branch-card.active .direction-link {
    color: #fff;
}

.branch-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
}

.branch-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.2rem;
}

.direction-link {
    font-size: 0.95rem;
    color: var(--text-primary);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.direction-link:hover {
    gap: 8px;
}

.map-container {
    border-radius: 24px;
    overflow: hidden;
    min-height: 250px;
    height: 300px;
    border: 1px solid #E5E7EB;
}

.contact-card {
    padding: 2rem;
    border-radius: 20px;
    background: #F9FAFB;
    color: var(--text-primary);
    margin-top: auto;
    border: 1px solid #E5E7EB;
}

.contact-card h3 {
    margin-bottom: 0.5rem;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.instagram-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--text-primary);
    color: #fff;
    padding: 0.8rem 1.6rem;
    border-radius: 12px;
    font-weight: 500;
    font-size: 1rem;
}

.instagram-btn:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 24, 39, 0.2);
}

/* Feedback Section */
.feedback {
    background-color: var(--bg-primary);
    padding: 6rem 0;
    /* a bit tighter than normal sections */
    border-top: 1px dashed #E5E7EB;
}

.feedback-desc {
    color: var(--text-secondary);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.feedback-btn {
    padding: 1rem 2rem;
    font-size: 1.05rem;
    background: #000;
}

.feedback-btn:hover {
    background: #333;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Footer */
footer {
    background-color: var(--bg-secondary);
    color: var(--text-primary);
    padding: 6rem 0 0 0;
    border-top: 1px solid #E5E7EB;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 1.5rem;
    max-width: 350px;
    font-size: 1.05rem;
}

.footer-logo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.footer-links,
.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-links a,
.footer-contact a,
.footer-contact p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    font-weight: 500;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.footer-bottom {
    background-color: var(--bg-primary);
    padding: 2rem;
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
    border-top: 1px solid #E5E7EB;
}

.creator-link {
    color: var(--text-primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.creator-link:hover {
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .locations-wrapper {
        grid-template-columns: 1fr;
        padding: 1.5rem;
    }

    .map-container {
        height: 250px;
        order: -1;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}