/* ========================
   Genel
======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', Arial, sans-serif;
  line-height: 1.6;
  background: #fff;
  color: #333;
}

/* ========================
   Navbar
======================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #8b0000;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}
.logo {
  flex: 1;
}
.logo a {
  font-family: 'Fugaz One', cursive;
  font-size: 1.8rem;
  color: #fff;
  text-decoration: none;
}
.logo img {
  height: 50px;
  width: auto;
  display: block;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
  flex: 2;
  justify-content: center;
}
.navbar ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}
.navbar ul li a:hover {
  color: #ffd700;
}
.hamburger {
  flex: 1;
  display: none;
  font-size: 1.8rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  text-align: right;
}

/* ========================
   Hero
======================== */
.hero {
  position: relative;
  text-align: center;
  color: #fff;
}
.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}
.overlay {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}
.hero-text {
  position: absolute;
  bottom: 8%;
  left: 50%;
  transform: translateX(-50%);
  max-width: 90%;
  text-align: center;
}
.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 15px;
}
.hero-text p {
  font-size: 1.3rem;
  margin-bottom: 20px;
}
.cta-btn {
  background: #ffd700;
  color: #8b0000;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 30px;
  transition: 0.3s;
}
.cta-btn:hover {
  background: #fff;
}

/* ========================
   Menü
======================== */
.menu {
  padding: 60px 20px;
  text-align: center;
}
.menu h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: #8b0000;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.card {
  background: #fff8f0;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}
.card:hover {
  transform: translateY(-6px);
}
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 15px;
}
.card h3 {
  color: #8b0000;
  margin-bottom: 8px;
}
.card p {
  font-size: 1rem;
  margin-bottom: 10px;
}
.price {
  font-weight: bold;
  color: #333;
}

/* ========================
   About / Contact
======================== */
.about, .contact {
  padding: 60px 20px;
  text-align: center;
}
.about h2, .contact h2 {
  color: #8b0000;
  margin-bottom: 20px;
}
.about p, .contact p {
  max-width: 700px;
  margin: auto;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

/* ========================
   WhatsApp
======================== */
.wa-float {
  position: fixed;
  width: 60px; height: 60px;
  bottom: 20px; right: 20px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  font-size: 2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 1000;
}
.wa-float:hover {
  background: #20b954;
}

/* ========================
   Footer
======================== */
footer {
  background: #8b0000;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
}
footer a {
  color: #ffd700;
  text-decoration: none;
  font-weight: 600;
}
footer a:hover {
  color: #fff;
}


/* ========================
   Video Bölümü
======================== */
.video-section {
  padding: 60px 20px;
  text-align: center;
}
.video-btn {
  background: #ffd700;
  color: #8b0000;
  padding: 12px 24px;
  border: none;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s;
}
.video-btn:hover {
  background: #fff;
  color: #8b0000;
}

/* Modal tasarımı */
.video-modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  align-items: center;
  justify-content: center;
}
.video-content {
  background: #000;
  padding: 20px;
  border-radius: 10px;
  max-width: 90%;
  width: 700px;
  position: relative;
}
.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 2rem;
  color: #fff;
  cursor: pointer;
}

/* ========================
   Responsive
======================== */
@media (max-width: 992px) {
  .menu-items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .navbar ul {
    display: none;
    flex-direction: column;
    background: #8b0000;
    position: absolute;
    top: 100%; right: 0;
    width: 200px; padding: 10px;
  }
  .navbar ul.show {
    display: flex;
  }
  .hamburger {
    display: block;
  }
  .menu-items {
    grid-template-columns: 1fr;
  }
  .hero-text h1 {
    font-size: 2rem;
  }
  .hero-text p {
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .video-content {
    width: 95%;
    height: auto;
  }
}
