/* GENEL AYARLAR */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Daha modern bir font */
}

body {
  color: white;
  background: black;
  overflow-x: hidden; /* Sağa kaymaları engeller */
}

/* HEADER */
header {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 20px 50px;
  z-index: 10;
}

.logo img {
  height: 72px;
  cursor: pointer;
}

.logo {
  font-size: 28px;
  font-weight: bold;
  color: red;
}

.logo span {
  color: white;
}

.top-btn {
  background: transparent;
  border: 2px solid white;
  padding: 10px 20px;
  color: white;
  cursor: pointer;
}

/* HERO BÖLÜMÜ */
.hero {
  height: 100vh;
  /* Görselin kendisi net olsun, sadece kenarlardan hafif karartalım */
  background: 
    radial-gradient(circle, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.8) 100%), 
    url('Medya/Arka plan 5.png') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}

/* İçerik Yazıları */
.content {
    background: rgba(0, 0, 0, 0.4); /* Çok hafif, şeffaf bir siyahlık */
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(3px); /* Arkadaki karakterler hafif buğulansın, yazı netleşsin */
}

h1 {
  font-size: 45px;
  margin-bottom: 20px;
  text-decoration: underline; /* İstediğin alt çizgi geri geldi */
  text-decoration-color: red; /* Alt çizgiyi kırmızı yaparak biraz "kanlı" bir hava kattık */
  text-underline-offset: 8px;   /* Çizgi yazıya çok yapışmasın, daha okunaklı durur */
  letter-spacing: 2px;         /* Harfleri biraz açtık, daha tehditkar duruyor */
  color: white;
  text-transform: uppercase;
}

h2 {
  font-size: 24px;
  color: #eee;
  margin-top: 15px;
}

p {
  margin-bottom: 15px;
  line-height: 1.6;
}

/* BUTTON */
.main-btn {
  margin-top: 20px;
  padding: 15px 40px;
  background: white;
  color: black;
  border: none;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s;
}

.main-btn:hover {
  background: red;
  color: white;
}

/* NAVBAR (SADELEŞTİRİLMİŞ) */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  background: rgba(0, 0, 0, 0.9); /* Biraz daha koyu yaptık */
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid #333; /* Hafif bir sınır çizgisi */
}

/* LOGO */
.logo img {
  height: 55px;
}

.nav-center {
  display: flex;
  gap: 25px;
}

.nav-center a {
  color: #ddd;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.3s;
  text-transform: uppercase; /* Daha profesyonel durur */
}

.nav-center a:hover {
  color: red;
}

/* WHATSAPP BUTON */
.whatsapp-btn {
  border: 2px solid #800000;
  padding: 10px 25px;
  border-radius: 30px;
  color: #800000;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}

.whatsapp-btn:hover {
  background: #800000;
  color: black;
}

/* HERO ÜSTÜ BOŞLUK (navbar kapatmasın diye) */
.hero {
  margin-top: 90px;
}
/* GEÇİŞ BÖLÜMÜ */

.line-small{
width:60px;
height:4px;
background:red;
margin:0 auto 25px auto;
}

.transition{
    background:#000;
    color:white;
    text-align:center;
    padding:30px 20px;
}

.transition .line{
    width:120px;
    height:5px;
    background:red;
    margin:0 auto 30px auto;
}

.transition h2{
    font-size:36px;
    margin-bottom:20px;
    letter-spacing:2px;
}

.transition p{
    color:#bbb;
    max-width:700px;
    margin:auto;
}


/* FEATURES */

.features{
    background:#0a0a0a;
    color:white;
    padding:20px 20px;
}

.section-title{
    text-align:center;
    font-size:38px;
    margin-bottom:40px;
}


.feature-grid{
    max-width:1200px;
    margin:auto;
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:40px;
}

.feature-card{
    background:#111;
    padding:40px;
    border:1px solid #222;
    transition:0.3s;
}

.feature-card:hover{
    border:1px solid red;
    transform:translateY(-10px);
}

.feature-card h3{
    margin-bottom:15px;
    color:red;
}

.feature-card p{
    color:#aaa;
}

/* Sadece geçiş efekti - Orta hizalamayı bozmaz */
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 250px; /* Geçişin yumuşaklık mesafesi */
  background: linear-gradient(to bottom, transparent, black);
  z-index: 1;
  pointer-events: none; /* Butonlara tıklamanı engellemez */
}

/* İçeriğin bu sisin altında kalmaması için z-index veriyoruz */
.content {
  position: relative;
  z-index: 2; 
}
.story-section {
    padding: 80px 50px;
    background: #050505;
}

.story-content {
    display: flex;
    align-items: center;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap; /* Mobilde alt alta gelmesi için */
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.2);
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 40px;
    color: #800000;
    margin-bottom: 20px;
}

.secondary-btn {
    background: transparent;
    border: 1px solid red;
    color: red;
    padding: 10px 25px;
    margin-top: 20px;
    cursor: pointer;
    transition: 0.3s;
}

.secondary-btn:hover {
    background: red;
    color: white;
}

.modes-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 40px auto 0 auto;
}

.mode-card {
    background: #111;
    border: 1px solid #333;
    padding: 40px 30px;
    width: 350px;
    border-radius: 10px;
    transition: 0.4s;
    position: relative;
    overflow: hidden;
}

/* Kartların üzerine gelince parlaması */
.mode-card:hover {
    transform: translateY(-15px);
}

.mode-card.fun:hover { border-color: #00ffcc; box-shadow: 0 0 30px rgba(0, 255, 204, 0.2); }
.mode-card.horror:hover { border-color: #ff0000; box-shadow: 0 0 30px rgba(255, 0, 0, 0.3); }
.mode-card.action:hover { border-color: #ffaa00; box-shadow: 0 0 30px rgba(255, 170, 0, 0.2); }

.mode-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.mode-card h3 {
    font-size: 28px;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.mode-card p {
    font-size: 15px;
    color: #bbb;
    margin-bottom: 25px;
    min-height: 80px;
}

.mode-card ul {
    list-style: none;
    text-align: left;
    color: #eee;
}

.mode-card ul li {
    margin-bottom: 10px;
    font-size: 14px;
}

/* En çok seçilen rozeti */
.mode-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    background: red;
    color: white;
    padding: 5px 40px;
    font-size: 10px;
    font-weight: bold;
    transform: rotate(45deg);
}

.active {
    border: 1px solid red;
}

.faq-wrapper {
    display: flex;
    gap: 20px; /* Sütunlar arası boşluk */
    max-width: 1200px;
    margin: 40px auto;
}

.faq-column {
    flex: 1; /* İki sütunun eşit genişlikte olması için */
}

.faq-item {
    background: #111;
    margin-bottom: 10px;
    border: 1px solid #222;
    transition: 0.3s;
}

.faq-item:hover {
    border-color: red;
}

.faq-question {
    padding: 15px 20px;
    font-size: 16px;
    color: #fff;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 20px 15px 20px;
    color: #bbb;
    font-size: 14px;
    display: none;
    border-top: 1px solid #222;
    padding-top: 10px;
}

.faq-item.active .faq-answer {
    display: block;
}

/* MOBİL AYARI: Telefonlarda sütunlar alt alta gelsin */
@media (max-width: 768px) {
    .faq-wrapper {
        flex-direction: column;
    }
}

.rules-subtitle {
    text-align: center;
    color: #888;
    margin-bottom: 50px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.rule-box {
    background: #151515;
    padding: 30px;
    border-left: 5px solid red; /* Kural vurgusu */
    transition: 0.3s;
}

.rule-box:hover {
    background: #1a1a1a;
    transform: scale(1.02);
}

.rule-num {
    font-size: 24px;
    font-weight: bold;
    color: red;
    display: block;
    margin-bottom: 15px;
    opacity: 0.5;
}

.rule-box p {
    color: #ccc;
    font-size: 15px;
    line-height: 1.6;
}

.main-footer {
    background: #050505;
    padding: 60px 50px 20px 50px;
    border-top: 1px solid #222;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: auto;
    flex-wrap: wrap;
}

.footer-info h2 {
    color: red;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 10px;
    color: #ccc;
}

.footer-map {
    flex: 1;
    min-width: 300px;
}

.footer-bottom {
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #111;
    font-size: 12px;
    color: #444;
}
/* --- TEMİZLENMİŞ VE AYARLANMIŞ BÖLÜM AYARLARI --- */

.modes-section, 
.rules-section, 
.faq-section {
    padding: 60px 20px; /* Boşluğu azalttık (100'den 60'a) */
    border: none !important; /* O gıcık çizgileri her yerden sildik */
    background-color: #000; /* Şimdilik hepsini siyah yapalım, kafa karışmasın */
}

.rules-section {
    background-color: #0a0a0a; /* Sadece kuralları çok hafif gri yap ki fark edilsin */
    padding-top: 10px !important; /* Bu satırı ekle, üst boşluğu öldürür */
}

/* Başlık altındaki boşluğu da daralttık */
.section-title {
    margin-bottom: 30px !important;
    text-align: center;
}
/* 1. Haritayı Karanlık Mod Yap (Bunu mutlaka ekle) */
.footer-map iframe {
    filter: grayscale(100%) invert(92%) contrast(83%);
    border-radius: 8px;
    border: 1px solid #222 !important;
}

/* 2. Kurallar ve Diğer Başlıkların Altına O Kırmızı Çizgiyi Çekelim */
.section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: red;
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* 3. SSS (FAQ) Ok İşaretlerini Döndürme (Küçük ama etkili detay) */
.faq-item.active .arrow {
    transform: rotate(45deg);
    color: red;
    display: inline-block;
}

/* 4. Navbar'ı Kaydırırken Daha Tok Göstermek İçin */
.navbar {
    border-bottom: 2px solid rgba(128, 0, 0, 0.3); /* Çok ince bordo bir hat */
}
/* REZERVASYON TASARIMI */
.reservation-section {
    padding: 60px 20px;
    background: #000;
}

.reservation-container {
    max-width: 800px;
    margin: 0 auto;
    background: #0a0a0a;
    padding: 40px;
    border: 1px solid #222;
    border-radius: 10px;
}

.reservation-warning {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid red;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 30px;
    text-align: center;
}

.reservation-warning p {
    color: #ff4444;
    margin: 0;
    font-size: 14px;
}

.reservation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    gap: 20px;
}

.reservation-form input, 
.reservation-form select {
    flex: 1;
    background: #151515;
    border: 1px solid #333;
    padding: 15px;
    color: white;
    border-radius: 5px;
    outline: none;
    transition: 0.3s;
}

.reservation-form input:focus, 
.reservation-form select:focus {
    border-color: red;
}

.submit-btn {
    background: red;
    color: white;
    border: none;
    padding: 18px;
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 2px;
    transition: 0.3s;
    margin-top: 10px;
}

.submit-btn:hover {
    background: #cc0000;
    transform: scale(1.01);
}

/* Mobilde kutular alt alta gelsin */
@media (max-width: 600px) {
    .form-group {
        flex-direction: column;
        gap: 20px;
    }
}
/* Rezervasyon Boşluklarını Daraltma */
.reservation-section {
    padding-top: 10px !important;    /* Yukarıdan açıyoruz */
    padding-bottom: 50px !important; /* Aşağıdan açıyoruz */
    display: flex;
    flex-direction: column;
    align-items: center;
}
.reservation-container {
    margin-bottom: 25px !important; /* Bir sonraki bölüme (Kurallar) itiyoruz */
}
.reservation-warning {
    padding: 10px;
    margin-bottom: 20px;
}

.reservation-section .section-title {
    margin-bottom: 20px !important;
}

html {
  scroll-behavior: smooth;
}
.logo {
    display: inline-block;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05); /* Üstüne gelince hafif büyür, tıklandığı belli olur */
}
/* Rezervasyon Genel */
.reservation-section {
    padding: 100px 20px !important; /* Yukarıdan ve aşağıdan iyice açtık */
    background: #000;
}

.reservation-container {
    max-width: 900px; /* Kutuyu biraz genişlettik */
    margin: 0 auto;
    background: #080808;
    padding: 50px; /* İç boşluğu arttırdık */
    border: 1px solid #1a1a1a;
    border-radius: 15px;
    box-shadow: 0 0 50px rgba(255, 0, 0, 0.05);
}

/* Hızlı Bilgi Kısmı */
.quick-res-info {
    text-align: center;
    margin-bottom: 30px;
}

.quick-res-info h3 {
    color: #cc0000;
    font-size: 22px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.quick-res-info p {
    color: #888;
    font-size: 14px;
}

/* Buton Tasarımları */
.quick-res-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.res-call-btn, .res-whatsapp-btn {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 12px;
    text-decoration: none;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.res-call-btn { background: #b30000; color: white; border: 1px solid #ff0000; }
.res-whatsapp-btn { background: #25D366; color: white; border: 1px solid #128C7E; }

.icon { font-size: 30px; margin-right: 15px; }
.btn-text { display: flex; flex-direction: column; }
.btn-text small { font-size: 11px; opacity: 0.8; margin-bottom: 2px; }
.btn-text strong { font-size: 18px; letter-spacing: 1px; }

.res-call-btn:hover, .res-whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Form Detayları */
.input-wrapper {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.input-wrapper label {
    font-size: 13px;
    color: #aaa;
    margin-left: 5px;
    font-weight: bold;
}

.res-divider {
    text-align: center;
    position: relative;
    margin: 40px 0;
    border-bottom: 1px solid #222;
}

.res-divider span {
    background: #080808;
    padding: 0 20px;
    color: #444;
    font-size: 12px;
    position: relative;
    top: 10px;
}

.form-footer-note {
    text-align: center;
    font-size: 12px;
    color: #555;
    margin-top: 20px !important;
}

/* Mobilde butonlar alt alta */
@media (max-width: 768px) {
    .quick-res-buttons { flex-direction: column; }
    .reservation-container { padding: 30px 20px; }
}
/* --- MOBİL ÖZEL AYARLAR (768px ve altı) --- */
@media (max-width: 768px) {
    
    /* 1. Navbar'ı mobilde sadeleştirelim */
    .nav-center {
        display: none; /* Mobilde orta menüyü gizle (üst üste binmesin) */
    }

    .navbar {
        padding: 0 15px;
        height: 70px;
    }

    .logo img {
        height: 45px;
    }

    /* 2. Hero (Giriş) Başlığını küçültelim */
    h1 {
        font-size: 28px !important;
        line-height: 1.3;
        padding: 0 10px;
    }

    h2 {
        font-size: 18px !important;
    }

    /* 3. Rezervasyon Konteynırını daraltalım */
    .reservation-container {
        padding: 25px 15px !important; /* İç boşluğu mobilde azalttık */
        margin: 0 10px;
        border-radius: 10px;
    }

    /* 4. Butonları Alt Alta Dizelim */
    .quick-res-buttons {
        flex-direction: column; /* Yan yana değil, alt alta */
        gap: 10px;
    }

    .res-call-btn, .res-whatsapp-btn {
        width: 100%;
        padding: 15px;
    }

    .btn-text strong {
        font-size: 16px;
    }

    /* 5. Form Alanlarını Tek Sütun Yapalım */
    .form-group {
        flex-direction: column; /* İsim ve Tel yan yana sığmaz, alt alta alıyoruz */
        gap: 10px;
    }

    .input-wrapper {
        width: 100%;
    }

    /* 6. Hikaye Bölümü */
    .story-content {
        flex-direction: column;
        text-align: center;
    }

    .story-image img {
        width: 100%;
        margin-bottom: 20px;
    }

    /* 7. Genel Bölüm Boşlukları */
    section {
        padding: 50px 15px !important;
    }
}

/* Küçük telefonlar için ekstra dokunuş */
@media (max-width: 480px) {
    .submit-btn {
        font-size: 14px;
        padding: 15px;
    }
}