/* ============================================
   Başlangıç
   ============================================ */
:root {
    --primary-orange: #F2994A;
    --dark-orange: #D97706;
    --dark-brown: #5C4033;
    --medium-brown: #8B6F47;
    --light-cream: #FFF8F0;
    --footer-cream: #F5E8D3;
    --text-dark: #3E2723;
    --text-light: #5C4033;
    --white: #ffffff;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

/* Genel Responsive Ayarlar */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* Tüm container'lar için genel responsive ayar */
.container,
.sections,
.contact-page-section,
.how-to-order-section,
.about-section,
.gallery-section,
.menu-section,
.weekly-menu-section,
.concept-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Tüm grid yapıları için responsive */
.grid,
.grid-2,
.grid-3,
.grid-4 {
    display: grid;
    gap: 20px;
}

/* Responsive tablo ve liste */
table {
    width: 100%;
    overflow-x: auto;
    display: block;
}

@media (max-width: 768px) {
    table {
        font-size: 14px;
    }
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--light-cream);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

/* ============================================
   AÇILIŞ ANİMASYONU
   ============================================ */

.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--light-cream);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-icon {
    font-size: 64px;
    color: var(--primary-orange);
    animation: fadeInOut 1.5s ease-in-out;
}

@keyframes fadeInOut {
    0% {
        opacity: 0;
        transform: scale(0.5) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0.8) rotate(360deg);
    }
}

/* ============================================
   ÜST BİLGİ ÇUBUĞU (Telefon ve Lokasyon)
   ============================================ */

.top-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 13px;
    color: var(--text-light);
    z-index: 1001;
    height: 37px;
    box-sizing: border-box;
}

.top-bar-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar-center {
    text-align: center;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 5px;
}

.top-bar i {
    font-size: 14px;
    color: var(--text-light);
}

/* ============================================
   NAVBAR - TEMİZ YENİ KOD
   ============================================ */

/* Desktop Navbar */
.navbar {
    position: fixed;
    top: 37px;
    left: 0;
    right: 0;
    background-color: #ffffff;
    height: 120px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.navbar-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    height: 120px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    padding: 10px 20px 10px 0;
}

.logo-image {
    max-height: 115px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: contrast(1.05);
}

.logo-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li a {
    color: #3E2723;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
    transition: color 0.3s ease;
}

.nav-menu li a:hover {
    color: var(--primary-orange);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hamburger Butonu - Başlangıçta Gizli */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--text-dark);
    font-size: 28px;
    cursor: pointer;
    padding: 8px;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-btn:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

/* Kapatma Butonu - Başlangıçta Gizli */
.close-menu-btn {
    display: none;
}

/* Mobil Menü Logo - Başlangıçta Gizli */
.mobile-menu-logo {
    display: none;
}

/* Overlay - Başlangıçta Gizli */
.nav-menu-overlay {
    display: none;
}







/* ============================================
   HERO SECTION (Anasayfa)
   ============================================ */



/* ============================================
   PAGE HEADER (Diğer Sayfalar İçin)
   ============================================ */

.page-header {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 157px;
}

.page-header-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1556910103-1c02745aae4d?w=1920');
    background-size: cover;
    background-position: center;
    filter: blur(2px);
    z-index: 1;
}

.page-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
    z-index: 2;
}

.page-header-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
}

.page-header-title {
    font-size: 48px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ============================================
   BÖLÜMLER (Anasayfa Kartları)
   ============================================ */

.sections {
    padding: 30px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 36px;
    color: var(--dark-brown);
    margin-bottom: 30px;
    font-weight: bold;
}

.sections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.section-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.section-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.section-card-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-orange);
}

.section-card-icon i {
    font-size: 48px;
    color: var(--primary-orange);
}

.section-card-title {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: bold;
}

.section-card-text {
    color: var(--text-dark);
    line-height: 1.8;
}

/* ============================================
   NASIL SİPARİŞ VERİLİR BÖLÜMÜ
   ============================================ */

.how-to-order-section {
    padding: 40px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.how-to-order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.how-to-order-image {
    width: 100%;
}

.how-to-order-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.how-to-order-content {
    text-align: left;
}

.how-to-order-text {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 30px;
}

/* ============================================
   İLETİŞİM FORMU BÖLÜMÜ
   ============================================ */

.contact-section {
    padding: 40px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(242, 153, 74, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%235C4033' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 40px;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-info {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.contact-info-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.contact-info-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 20px;
}

.contact-details p {
    margin-bottom: 10px;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-details i {
    color: var(--dark-brown);
    font-size: 20px;
}

/* ============================================
   MENÜ SAYFASI
   ============================================ */

.menu-section {
    padding: 30px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.menu-category {
    margin-bottom: 30px;
}

.category-title {
    font-size: 32px;
    color: var(--dark-brown);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.menu-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.menu-item-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-item:hover .menu-item-image {
    transform: scale(1.1);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-light);
    border-top: 1px solid #eee;
}

.blog-date,
.blog-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date i,
.blog-read-time i {
    color: var(--primary-orange);
    font-size: 12px;
}

.menu-item-name {
    padding: 20px;
    text-align: center;
    font-size: 20px;
    color: var(--text-dark);
    font-weight: 600;
}

/* ============================================
   HAFTALIK MENÜ
   ============================================ */

.weekly-menu-section {
    padding: 30px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.whatsapp-order-section {
    text-align: center;
    margin-top: 30px;
    padding: 30px 20px;
}

.whatsapp-order-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background-color: #25D366;
    color: var(--white);
    padding: 20px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.whatsapp-order-button:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-order-button i {
    font-size: 32px;
}

.weekly-menu-intro {
    text-align: center;
    margin-bottom: 50px;
}

.weekly-menu-intro h2 {
    font-size: 36px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.weekly-menu-intro p {
    font-size: 18px;
    color: var(--text-dark);
}

.weekly-menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.day-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.day-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.day-title {
    font-size: 24px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    text-align: center;
    font-weight: bold;
    border-bottom: 2px solid var(--primary-orange);
    padding-bottom: 10px;
}

.day-menu-items {
    list-style: none;
}

.day-menu-items li {
    padding: 10px 0;
    color: var(--text-dark);
    border-bottom: 1px solid #eee;
}

.day-menu-items li:last-child {
    border-bottom: none;
}

.day-menu-items li::before {
    content: '🍽️';
    margin-right: 10px;
}

/* ============================================
   HAKKIMIZDA SAYFASI
   ============================================ */

.about-section {
    padding: 30px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 30px;
}

.about-intro h1 {
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 18px;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    margin-bottom: 30px;
}

.about-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

.about-content-block.reverse {
    direction: rtl;
}

.about-content-block.reverse > * {
    direction: ltr;
}

.about-content-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
}

.about-content-text h3 {
    font-size: 28px;
    color: var(--dark-brown);
    margin-bottom: 20px;
}

.about-content-text p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.value-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 22px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: bold;
}

.value-text {
    color: var(--text-dark);
    line-height: 1.8;
}

/* Güven Rozetleri */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 60px 0;
    padding: 40px 20px;
    background-color: var(--light-cream);
    border-radius: 10px;
}

.trust-badge {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.trust-badge-icon {
    font-size: 48px;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.trust-badge-title {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 15px;
    font-weight: bold;
}

.trust-badge-text {
    color: var(--text-dark);
    line-height: 1.6;
}

/* ============================================
   GALERİ SAYFASI
   ============================================ */

.gallery-section {
    padding: 30px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-intro h1 {
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.gallery-intro p {
    font-size: 18px;
    color: var(--text-dark);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    padding: 15px;
    font-size: 16px;
    font-weight: 500;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* Galeri Instagram Bölümü */
.gallery-instagram-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
    padding: 30px 20px;
}

.instagram-notification-text {
    background-color: var(--white);
    padding: 10px 18px;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
    margin: 0 0 15px 0;
    display: inline-block;
    max-width: 90%;
}

.gallery-instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: var(--white) !important;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(188, 24, 136, 0.4);
    margin-top: 20px;
}

.gallery-instagram-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(188, 24, 136, 0.5);
}

.gallery-instagram-button i {
    font-size: 24px;
}

@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--white);
    font-size: 36px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-caption {
    color: var(--white);
    text-align: center;
    margin-top: 20px;
    font-size: 18px;
}

/* ============================================
   BİZE ULAŞIN SAYFASI
   ============================================ */

.contact-page-section {
    padding: 40px 20px 20px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-page-intro {
    text-align: center;
    margin-bottom: 30px;
}

.contact-page-intro h1 {
    font-size: 42px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.contact-page-intro p {
    font-size: 18px;
    color: var(--text-dark);
}

.contact-info-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.contact-info-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px var(--shadow);
}

.contact-info-card i {
    font-size: 36px;
    color: var(--dark-brown);
    margin-bottom: 15px;
}

.contact-info-card h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.contact-info-card p {
    color: var(--text-light);
}

.contact-page-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    max-width: 800px;
    margin: 0 auto 50px;
}

/* Mesajı Gönder Butonu */
.btn-primary {
    background-color: var(--primary-orange);
    color: var(--white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(242, 153, 74, 0.4);
    width: 100%;
    max-width: 300px;
    margin: 20px auto 0;
    display: block;
}

.btn-primary:hover {
    background-color: #D97706;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(242, 153, 74, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.form-success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 15px 20px;
    border-radius: 5px;
    margin-bottom: 20px;
    border: 1px solid #c3e6cb;
    font-weight: 500;
    text-align: center;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px var(--shadow);
    margin-bottom: 50px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--footer-cream);
    padding: 30px 20px 20px;
    margin-top: 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-section h3 {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 20px;
    font-weight: bold;
}

.footer-section p {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--primary-orange);
}

.footer-section i {
    color: var(--dark-brown);
    margin-right: 10px;
}

.footer-section .instagram-icon {
    font-size: 36px;
    color: #E4405F;
    margin-top: 15px;
    transition: transform 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.footer-section .instagram-icon:hover {
    transform: scale(1.15);
    color: #C13584;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    color: var(--text-dark);
}

.footer-bottom p {
    color: var(--text-dark);
}

/* Müşteri Yorumları */
.testimonials-section {
    padding: 30px 20px 20px 20px;
    background-color: var(--light-cream);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    color: var(--dark-brown);
    font-weight: 600;
    text-align: right;
}

/* CTA Şeridi */
.cta-banner {
    background: linear-gradient(135deg, var(--dark-brown) 0%, var(--medium-brown) 100%);
    padding: 30px 20px;
    text-align: center;
    color: var(--white);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    margin-bottom: 15px;
    font-weight: bold;
}

.cta-subtitle {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #25D366;
    color: var(--white);
    padding: 18px 40px;
    font-size: 20px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.cta-button:hover {
    background-color: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.cta-button i {
    font-size: 24px;
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */

.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--white);
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    color: var(--white);
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 55px;
        height: 55px;
        bottom: 15px;
        right: 15px;
        font-size: 28px;
    }
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */

/* ============================================
   RESPONSIVE NAVBAR
   ============================================ */

/* 1100px ve Altı - Hamburger Menü Aktif */
@media (max-width: 1100px) {
    .top-bar {
        display: flex;
        font-size: 13px;
        padding: 7px 0;
        height: 35px;
        box-sizing: border-box;
    }
    
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 0 15px;
    }
    
    .top-bar-left,
    .top-bar-right {
        font-size: 13px;
    }
    
    .navbar {
        top: 35px;
        height: 95px;
    }
    
    .navbar-content {
        height: 95px;
    }
    
    .logo {
        padding: 8px 15px 8px 0;
    }
    
    .logo-image {
        max-height: 95px;
    }
    
    .logo-text {
        display: none;
    }
    
    /* Hamburger Butonu Görünür */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Normal Menü Gizli */
    .nav-menu {
        display: none;
    }
    
    /* Mobil Menü - Navbar Altında Yatay Alt Alta Sıralı (Tam Bitişik) */
    .nav-menu.active {
        display: flex;
        position: fixed;
        top: 130px;
        left: 0;
        right: 0;
        flex-direction: row;
        flex-wrap: wrap;
        background-color: #FFF8F0;
        width: 100%;
        z-index: 998;
        padding: 15px 20px;
        margin: 0;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        gap: 8px;
        justify-content: center;
        align-items: center;
    }
    
    /* Kapatma Butonu - Gizli (Yatay Menüde Kullanılmayacak) */
    .nav-menu.active .close-menu-btn {
        display: none;
    }
    
    /* Mobil Menü Logo - Gizli (Yatay Menüde Kullanılmayacak) */
    .nav-menu.active .mobile-menu-logo {
        display: none;
    }
    
    /* Mobil Menü Linkleri - Yatay Alt Alta */
    .nav-menu.active li {
        display: inline-block;
        margin: 0;
        padding: 0;
        list-style: none;
    }
    
    .nav-menu.active li a {
        display: block;
        padding: 10px 18px;
        color: #3E2723;
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        text-transform: uppercase;
        white-space: nowrap;
        border: 1px solid rgba(242, 153, 74, 0.3);
        border-radius: 25px;
        background-color: #ffffff;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    }
    
    .nav-menu.active li a:hover {
        background-color: #F2994A;
        color: #ffffff;
        border-color: #F2994A;
        transform: translateY(-2px);
        box-shadow: 0 4px 10px rgba(242, 153, 74, 0.3);
    }
    
    .nav-menu.active li a::after {
        display: none;
    }
    
    /* Mobil Menü Yüksekliği (top-bar + navbar - tam bitişik) */
    .nav-menu.active {
        top: 130px;
    }
    
    /* Hero/Page Header Margin Düzeltmesi (top-bar 35px + navbar 95px = 130px) */
    .hero-section,
    .page-header,
    .final-hero {
        margin-top: 130px;
        transition: margin-top 0.3s ease;
    }
    
    /* Mobil Menü Aktifken Hero Margin Düzeltmesi - Body'de menü-aktif class'ı olunca */
    body.menu-active .hero-section,
    body.menu-active .page-header,
    body.menu-active .final-hero {
        margin-top: 198px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        font-size: 12px;
        padding: 6px 0;
        height: 34px;
        box-sizing: border-box;
    }

    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        gap: 5px;
        padding: 0 10px;
    }
    
    .top-bar-left,
    .top-bar-right {
        font-size: 12px;
    }
    
    .top-bar i {
        font-size: 14px;
    }
    
    .navbar {
        top: 34px;
    }
    
    /* Logo Text Küçük Ekranlarda Gizli */
    .logo-text {
        display: none;
    }

    .top-bar {
        height: 34px;
    }
    
    /* Mobil Menü Yüksekliği */
    .nav-menu.active {
        top: 129px;
    }
    
    .hero-section {
        margin-top: 129px;
        height: 50vh;
    }

    .page-header {
        margin-top: 129px;
        height: 50vh;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .hero-description {
        font-size: 14px;
        padding: 0 15px;
    }
    
    .page-header-title {
        font-size: 32px;
    }
    
    .concept-images-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .concept-image-item {
        aspect-ratio: 9 / 10;
    }
    
    .concept-image-item img {
        height: 100%;
    }
    
    .concept-intro-text {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 30px;
        padding: 0 15px;
    }
    
    .concept-description {
        padding: 0 10px;
    }
    
    .concept-description p {
        font-size: 16px;
    }
    
    .btn-instagram {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .logo-text {
        display: none;
    }
    
    /* Sections Responsive */
    .sections {
        padding: 30px 15px;
    }
    
    .section-title {
        font-size: 28px;
        margin-bottom: 30px;
    }
    
    .sections-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .section-card {
        padding: 20px;
    }
    
    .section-card-icon {
        font-size: 40px;
    }
    
    .section-card-title {
        font-size: 20px;
    }
    
    .section-card-text {
        font-size: 14px;
    }
    
    /* How to Order Section */
    .how-to-order-section {
        padding: 40px 15px;
    }
    
    .how-to-order-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .how-to-order-image img {
        height: 350px;
    }
    
    .how-to-order-text {
        font-size: 16px;
    }
    
    /* Contact Section */
    .contact-page-section {
        padding: 40px 15px;
    }
    
    .contact-page-intro h1 {
        font-size: 32px;
    }
    
    .contact-page-intro p {
        font-size: 16px;
    }
    
    .contact-info-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-info-card {
        padding: 20px;
    }
    
    .contact-page-form {
        padding: 25px 20px;
    }
    
    .map-container {
        height: 300px;
    }
    
    /* CTA Banner */
    .cta-banner {
        padding: 40px 15px;
    }
    
    .cta-title {
        font-size: 24px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Footer */
    .footer {
        padding: 40px 15px 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    /* Gallery */
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-instagram-section {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .instagram-notification-text {
        padding: 8px 14px;
        font-size: 12px;
        margin-bottom: 12px;
        max-width: 85%;
    }
    
    .gallery-instagram-button {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    /* Menu Grid */
    .menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* Weekly Menu */
    .weekly-menu-grid {
        grid-template-columns: 1fr;
    }
    
    /* About Section */
    .about-content-block {
        grid-template-columns: 1fr;
    }
    
    .about-content-image {
        height: 350px;
    }
    
    .about-values {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .hero-description {
        font-size: 16px;
        padding: 0 20px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .how-to-order-wrapper {
        grid-template-columns: 1fr;
    }

    .how-to-order-image img {
        height: 400px;
    }

    .about-content-block {
        grid-template-columns: 1fr;
    }
    
    .contact-info-image {
        height: 300px;
    }
    
    .gallery-item img {
        height: 300px;
    }
    
    .menu-item-image {
        height: 280px;
    }

    .sections-grid,
    .menu-grid,
    .weekly-menu-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-instagram-section {
        margin-top: 20px;
        padding: 20px 15px;
    }
    
    .instagram-notification-text {
        padding: 8px 14px;
        font-size: 12px;
        margin-bottom: 12px;
        max-width: 85%;
    }
    
    .gallery-instagram-button {
        padding: 15px 30px;
        font-size: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .top-bar {
        font-size: 11px;
        padding: 5px 0;
        height: 32px;
        box-sizing: border-box;
    }
    
    .top-bar-content {
        padding: 0 8px;
    }
    
    .top-bar-left,
    .top-bar-right {
        font-size: 11px;
    }
    
    .top-bar i {
        font-size: 13px;
    }
    
    .navbar {
        top: 32px;
    }
    
    /* Mobil Menü Yüksekliği */
    .nav-menu.active {
        top: 127px;
    }
    
    .hero-section,
    .page-header {
        margin-top: 127px;
    }
    
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-description {
        font-size: 13px;
        padding: 0 10px;
    }

    .btn-primary {
        padding: 12px 25px;
        font-size: 14px;
    }
    
    .btn-instagram {
        padding: 10px 20px;
        font-size: 14px;
    }

    .section-card,
    .menu-item,
    .day-card {
        padding: 15px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .page-header-title {
        font-size: 28px;
    }
    
    .concept-image-item {
        aspect-ratio: 9 / 10;
    }
    
    .concept-image-item img {
        height: 100%;
    }
    
    .concept-intro-text {
        font-size: 15px;
        font-weight: 600;
        margin-bottom: 25px;
        padding: 0 10px;
    }
    
    .gallery-item img {
        height: 280px;
    }
    
    .menu-item-image {
        height: 250px;
    }
    
    .how-to-order-image img {
        height: 300px;
    }
    
    .about-content-image {
        height: 300px;
    }
    
    .contact-page-form {
        padding: 20px 15px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 10px;
    }
    
    .cta-title {
        font-size: 20px;
    }
    
    .cta-button {
        padding: 12px 25px;
        font-size: 14px;
    }
    
}





/* 2x2 Kart Düzeni ve Responsive Tasarım */
.concept-images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.concept-image-item {
    width: 100%;
    aspect-ratio: 9 / 10;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.concept-image-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.concept-intro-text {
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 25px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.concept-image-item:hover img {
    transform: scale(1.02);
}


/* Instagram Butonunu Ortala */
.instagram-button-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 25px;
}

.btn-instagram {
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: white !important;
    padding: 15px 35px;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.btn-instagram:hover {
    transform: scale(1.05);
}

/* Tablet için ek responsive ayarlar */
@media (min-width: 481px) and (max-width: 768px) {
    .concept-images-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .concept-image-item {
        aspect-ratio: 9 / 10;
    }
    
    .concept-image-item img {
        height: 100%;
    }
    
    .concept-intro-text {
        font-size: 17px;
        font-weight: 600;
        margin-bottom: 35px;
    }
    
    .gallery-item img {
        height: 320px;
    }
    
    .menu-item-image {
        height: 280px;
    }
    
    .how-to-order-image img {
        height: 400px;
    }
    
    .about-content-image {
        height: 350px;
    }
    
    .contact-info-image {
        height: 320px;
    }
    
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .weekly-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Genel Responsive İyileştirmeler - Orta Ekranlar */
@media (min-width: 769px) and (max-width: 992px) {
    .concept-images-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .concept-image-item {
        aspect-ratio: 9 / 10;
    }
    
    .concept-image-item img {
        height: 100%;
    }
    
    .concept-intro-text {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 40px;
    }
    
    .gallery-item img {
        height: 340px;
    }
    
    .menu-item-image {
        height: 300px;
    }
    
    .how-to-order-image img {
        height: 450px;
    }
    
    .about-content-image {
        height: 380px;
    }
    
    .sections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .weekly-menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-info-section {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-values {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Genel Ayarlar */
.responsive-hero {
    width: 100%;
    overflow: hidden;
}

.hero-wrapper {
    display: flex;
    flex-wrap: wrap; /* Mobilde alt alta geçişin anahtarı */
    min-height: 80vh; /* Ekranın çoğunu kaplar */
}

/* Görsel Alanı */
.hero-visual {
    flex: 1 1 50%; /* Geniş ekranda %50 */
    min-width: 320px;
    height: auto;
}

.hero-visual img {
    width: 100%;
    height: 80%;
    object-fit: cover; /* Fotoğrafı sünmeden/bozulmadan kutuya sığdırır */
    display: block;
}

/* Renkli Metin Kutusu */
.hero-content-box {
    flex: 1 1 50%; /* Geniş ekranda %50 */
    background-color: #7d7a71; /* Belirlediğin gri tonu */
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
}

.text-container {
    max-width: 480px;
    text-align: center;
}

.main-title {
    font-size: clamp(2rem, 5vw, 4rem); /* Mobil: 2rem, Masaüstü: 4rem arası otomatik */
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.tagline {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Slider Noktaları */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.p-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.p-active {
    width: 30px;
    border-radius: 10px;
    background: #ffffff;
}

/* --- RESPONSIVE KIRILMA NOKTALARI --- */

/* Tablet ve Küçük Ekranlar (992px ve altı) */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column; /* Alt alta dizilim başlar */
    }
    .hero-visual, .hero-content-box {
        flex: 1 1 100%; /* Her biri tam genişlik olur */
    }
    .hero-visual {
        height: 300px; /* Tabletlerde görsel çok devleşmesin */
    }
}

/* Telefonlar (576px ve altı) */
@media (max-width: 576px) {
    .hero-visual {
        height: 250px; /* Telefonlarda görsel boyutu */
    }
    .hero-content-box {
        padding: 40px 15px; /* Dar ekranda daha az boşluk */
    }
    .main-title {
        font-size: 2.2rem;
    }
}





.final-hero {
    width: 100%;
    min-height: 80vh;
    margin-top: 157px;
    background-color: #FFF8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.hero-full-container {
    width: 100%;
    max-width: 1600px; /* Geniş ekranlarda boşluk kalmaması için sınırı büyüttük */
    display: grid;
    grid-template-columns: 1fr 1fr; /* Tam ortadan ikiye böldük */
    align-items: center;
    padding: 0 4%; /* Kenarlara çok hafif bir nefes payı */
}

.hero-text-content {
    justify-self: end; /* Yazıyı ortaya/sağa çektik */
    padding-right: 50px; /* Görselle arasındaki ideal mesafe */
    max-width: 600px;
}

.hero-main-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: #3E2723;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 10px;
}

.hero-tagline {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #F2994A;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.1rem;
    color: #5C4033;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Sağ Görsel Alanı - Boşlukları öldüren yer */
.hero-visual-area {
    justify-self: start; /* Görseli ortaya/sola yasladık */
}

.hero-img-box {
    width: 100%;
    max-width: 650px; /* Görseli büyüterek boşluğu kapattık */
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.1));
}

.hero-img-box img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 20px;
    object-fit: contain; /* Görseldeki detayların hiçbirini kesmez */
}

/* --- TAM RESPONSIVE (TÜM CİHAZLAR) --- */

@media (max-width: 1024px) {
    .hero-full-container {
        grid-template-columns: 1fr; /* Mobilde alt alta geçer */
        text-align: center;
        gap: 40px;
        padding-top: 40px;
        padding-bottom: 40px;
    }
    .hero-text-content {
        justify-self: center;
        padding-right: 0;
        max-width: 90%;
    }
    .hero-visual-area {
        justify-self: center;
    }
    .final-hero {
        margin-top: 130px;
    }
}



/* Butonun konumlandığı alan */
.hero-actions {
    display: flex;
    justify-content: flex-end; /* Yazı sağa yaslı olduğu için butonu da o hizaya çektik */
    width: 100%;
    margin-top: 20px; /* Yazıyla buton arasındaki mesafeyi daralttık */
}

.custom-menu-btn {
    display: inline-block;
    padding: 14px 35px;
    background-color: #F2994A; /* Marka turuncusu */
    color: #ffffff !important;
    text-decoration: none !important;
    font-size: clamp(0.9rem, 2vw, 1.1rem); /* Cihaza göre boyutu değişen yazı */
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(242, 153, 74, 0.3);
    border: 2px solid transparent;
    white-space: nowrap; /* Yazının butonda alt satıra kaymasını engeller */
}

/* Hover (Üstüne gelince) */
.custom-menu-btn:hover {
    background-color: #ffffff;
    color: #F2994A !important;
    border-color: #F2994A;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(242, 153, 74, 0.4);
}

/* --- TÜM CİHAZLAR İÇİN UYUMLULUK (RESPONSIVE) --- */

/* Tablet ve Orta Ekranlar */
@media (max-width: 1024px) {
    .hero-actions {
        padding-right: 5%; /* Çok sağa yapışmasını önler */
    }
}

/* Mobil Cihazlar (Telefonlar) */
@media (max-width: 992px) {
    .hero-actions {
        justify-content: center; /* Mobilde yazılar ortalandığında buton da merkeze geçer */
        padding-right: 0;
        margin-top: 25px;
    }
    .custom-menu-btn {
        width: 80%; /* Mobilde tıklaması kolay olsun diye genişlettik */
        max-width: 300px;
        text-align: center;
    }
}

/* Küçük Telefonlar */
@media (max-width: 480px) {
    .custom-menu-btn {
        padding: 12px 25px;
        font-size: 1rem;
    }
}