/* =====================
   Değişkenler ve Genel Ayarlar
===================== */
:root {
  --primary-color: #e86b1a;
  --primary-hover: #c75400;
  --text-color: #333;
  --secondary-color: #555;
  --light-bg: #f9f9f9;
  --header-bg: #fff;
  --footer-bg: #222;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* =====================
   Header
===================== */
header {
  background: var(--header-bg);
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: var(--primary-color);
}

header nav {
  position: relative;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

header nav a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: 0.3s;
}

header nav a:hover {
  color: var(--primary-color);
}

/* Hamburger Menu */
.menu-toggle {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* =====================
   Hero
===================== */
#hero {
  background: url("image/banner.jpg") no-repeat center center/cover;
  text-align: center;
  padding: 140px 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

#hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
}

#hero .hero-content {
  position: relative;
  z-index: 1;
}

#hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

#hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: #fff;
}

/* =====================
   Butonlar
===================== */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* =====================
   Genel Bölümler
===================== */
.section {
  padding: 80px 20px;
}

.section h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  color: #222;
}

.light-bg {
  background: var(--light-bg);
}

/* =====================
   Services / Packages
===================== */
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

.package-card {
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.package-card h3 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.5rem;
  transition: 0.3s;
}

.package-card h3:hover {
  color: var(--primary-hover);
  transform: scale(1.05);
}

.package-card ul {
  list-style: none;
  padding: 0;
  margin: 15px 0;
  text-align: left;
}

.package-card ul li {
  margin: 8px 0;
  padding-left: 22px;
  position: relative;
  transition: 0.3s;
}

.package-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

.package-card ul li:hover {
  color: var(--primary-color);
  font-weight: 600;
}

.package-card .price {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 15px 0 5px 0;
  color: #222;
}

.package-card .note {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 15px;
}

.package-card .btn {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 6px;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.package-card .btn:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.package-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
}

/* =====================
   Contact Form
===================== */
form input, form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-family: inherit;
  width: 100%;
}

/* =====================
   Footer
===================== */
footer {
  background: var(--footer-bg);
  color: #fff;
  text-align: center;
  padding: 20px 10px;
  margin-top: 40px;
}

/* =====================
   Responsive
===================== */
@media (max-width: 768px) {
  header .container {
    flex-direction: column;
    gap: 15px;
  }

  header nav ul {
    flex-direction: column;
    gap: 10px;
    display: none;
    width: 100%;
  }

  header nav ul.active {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }
}


/* =====================
   Contact Form Modern
===================== */
form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
}

/* Form grup */
.form-group {
  position: relative;
  width: 100%;
}

/* Input & Textarea */
form input,
form textarea {
  width: 100%;
  padding: 15px 15px 15px 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
  background: #fff;
}

form input:focus,
form textarea:focus {
  border-color: var(--primary-color);
  box-shadow: 0 4px 12px rgba(232,107,26,0.3);
}

/* Floating Label */
form label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  color: #aaa;
  font-size: 1rem;
  pointer-events: none;
  transition: 0.3s;
}

input:focus + label,
input:not(:placeholder-shown) + label,
textarea:focus + label,
textarea:not(:placeholder-shown) + label {
  top: -10px;
  left: 12px;
  font-size: 0.85rem;
  color: var(--primary-color);
  background: #fff;
  padding: 0 5px;
}

/* Submit Button */
form button {
  padding: 15px;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  background: var(--primary-color);
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
}

form button:hover {
  background: var(--primary-hover);
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(232,107,26,0.4);
}
/* Carousel Container */
.carousel {
  overflow: hidden;
  margin-top: 40px;
  position: relative;
}

.carousel-track {
  display: flex;
  animation: scroll 25s linear infinite;
}

.carousel-slide {
  flex: 0 0 220px;  /* Daha küçük slide */
  margin-right: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.carousel-slide img {
  width: 100%;
  height: 150px;  /* Daha kısa resim */
  object-fit: cover;
}

.slide-info {
  padding: 10px;
  text-align: center;
}

.slide-info h3 {
  color: var(--primary-color);
  margin-bottom: 4px;
  font-size: 1rem;
}

.slide-info p {
  color: var(--secondary-color);
  font-size: 0.8rem;
}

/* Hover Effect */
.carousel-slide:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

/* Keyframes for scrolling */
@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 1024px) {
  .carousel-slide {
    flex: 0 0 180px;
    margin-right: 12px;
  }
}

@media (max-width: 768px) {
  .carousel-slide {
    flex: 0 0 150px;
    margin-right: 10px;
  }
  .slide-info h3 {
    font-size: 0.9rem;
  }
  .slide-info p {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .carousel-slide {
    flex: 0 0 120px;
    margin-right: 8px;
  }
  .slide-info h3 {
    font-size: 0.8rem;
  }
  .slide-info p {
    font-size: 0.65rem;
  }
}

.social-sticky {
  position: fixed; /* Sayfada sabit */
  top: 50%; /* Orta konumda */
  right: 10px; /* Sağdan boşluk */
  transform: translateY(-50%); /* Dikey ortalama */
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
}

.social-sticky a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  transition: all 0.3s;
}

.social-sticky a:hover {
  background: var(--primary-hover);
  transform: scale(1.1);
}

body {
  margin: 0;
  background: #f9f9f9;
  font-family: Arial, sans-serif;
}

/* Bölüm */
.slider-section {
  padding: 40px 0;
  text-align: center;
  background: #fff;
  border-top: 2px solid #eee;
  border-bottom: 2px solid #eee;
}

.slider-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
  color: #333;
}

/* Slider kutusu */
.slider-container {
  overflow: hidden;
  padding: 10px 0;
  width: 100%;
}

.slider-track {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.slider-track img {
  height: 60px;
  margin: 0 40px;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s;
}

.slider-track img:hover {
  transform: scale(1.2);
}

/* Animasyon */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* 📱 Responsive Düzen */
@media (max-width: 1024px) {
  .slider-track img {
    height: 50px;
    margin: 0 25px;
  }
}

@media (max-width: 768px) {
  .slider-track img {
    height: 40px;
    margin: 0 20px;
  }
}

@media (max-width: 480px) {
  .slider-track img {
    height: 30px;
    margin: 0 15px;
  }

  .slider-section h2 {
    font-size: 18px;
  }
}

/* Bölüm başlığı ve zemin */
.reels-section {
  padding: 40px 20px;
  background: #fff;
}
.reels-section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: #222;
}

/* 1×4 sıra */
.reels-row {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  align-items: stretch;
  /* Masaüstünde sığmazsa yatay kaydırma */
  overflow-x: auto;
  padding-bottom: 6px; /* mobilde kaydırma için küçük boşluk */
  scroll-snap-type: x mandatory; /* mobilde düzgün snap */
}
.reels-row::-webkit-scrollbar { height: 8px; }
.reels-row::-webkit-scrollbar-thumb { background: #ddd; border-radius: 8px; }

/* Çerçeve (kart) */
.reel-frame {
  flex: 0 0 23%;          /* 4 adet yan yana */
  max-width: 260px;       /* aşırı büyümesin */
  background: #f8f8f8;
  border: 2px dashed #cfcfcf;  /* çerçeve efekti */
  border-radius: 14px;
  padding: 8px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  scroll-snap-align: start;
  display: flex;
}

/* Video (reels oranı) */
.reel {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;   /* dikey */
  border-radius: 10px;
  display: block;
  object-fit: cover;      /* video taşmadan dolsun */
}

/* Tablet: 2×2 */
@media (max-width: 1024px) {
  .reel-frame { flex: 0 0 48%; }
}

/* Mobil: tek tek, kaydırmalı */
@media (max-width: 600px) {
  .reel-frame { flex: 0 0 78%; } /* geniş ama tek kart sığacak */
  .reels-section { padding: 28px 12px; }
}
.section.light-bg { background:#f9f9f9; padding:60px 0; font-family:Arial,sans-serif; }
.section h2 { text-align:center; margin-bottom:40px; }
.slots-grid { display:grid; gap:40px; }
.slot { display:flex; gap:20px; flex-wrap:wrap; justify-content:center; }
.package-card { background:#fff; border-radius:12px; box-shadow:0 6px 20px rgba(0,0,0,0.1); padding:20px; text-align:center; width:300px; }
.package-card h3 { color:#ff6600; margin-bottom:10px; }
.tabs { display:flex; justify-content:center; gap:5px; margin-bottom:10px; }
.tab-btn { padding:5px 10px; border:none; background:#eee; border-radius:6px; cursor:pointer; }
.tab-btn.active { background:#ff6600; color:#fff; }
.tab-content { display:none; }
.tab-content.active { display:block; }
.btn { display:inline-block; padding:10px 20px; background:#ff6600; color:#fff; border-radius:8px; text-decoration:none; }
.package-card ul { list-style:none; padding:0; margin:0; }
.package-card ul li { margin:6px 0; }


#nav-list li a {
  font-weight: bold; /* Yazıları kalın yapar */
  text-decoration: none;
  color: #333;
}

/* Footer */
.footer {
  background: #222;
  color: #fff;
  padding: 50px 20px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer h2 {
  font-size: 24px;
  margin-bottom: 15px;
  color: #ff6600; /* turuncu vurgu */
}

.footer h3 {
  font-size: 18px;
  margin-bottom: 10px;
  color: #ff6600;
}

.footer p, 
.footer li, 
.footer a {
  font-size: 14px;
  line-height: 1.6;
  color: #ddd;
}

.footer a:hover {
  color: #ff6600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.social-icons a {
  display: inline-block;
  margin-right: 10px;
  color: #fff;
  font-size: 18px;
  transition: color 0.3s;
}

.social-icons a:hover {
  color: #ff6600;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 30px;
  font-size: 13px;
  color: #aaa;
}
