body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #000;
  color: #333;
}
/* Temel Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #ffffff;
  color: #ffffff;
}

/* HEADER */
.main-header {
  background-color: #000000;
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 30px;
  position: relative;
  z-index: 1000;
}

.logo {
  width: 40px;
  height: auto;
  margin-right: 10px;
}

.restaurant-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffffff;
}

.left-section {
  display: flex;
  align-items: center;
}

.center-nav ul {
  list-style: none;
  display: flex;
  gap: 30px;
  padding-left: 0;
  margin: 0;
}

.center-nav a {
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.center-nav a:hover {
  color: #00bfff;
}

.right-section a {
  margin-left: 15px;
  color: #ffffff;
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.right-section a:hover {
  color: #00bfff;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: #000;
  padding: 20px;
  border: 2px solid red; /* GÖRSEL AMAÇLI */
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
  z-index: 1200;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-left: 0;
  margin: 0;
}

.mobile-menu a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
}

.mobile-menu a:hover {
  color: #00bfff;
}

.mobile-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 15px;
}

.mobile-icons a {
  color: white;
  font-size: 1.5rem;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .center-nav,
  .right-section.desktop-icons {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .restaurant-name {
    font-size: 1.2rem;
  }
}


/*-----------------------*/



.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  z-index: 1;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0,0,0,0.6));
  z-index: 2;
}

.hero-text {
  position: relative;
  z-index: 3;
  color: white;
  padding: 0 20px;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: bold;
  color: #fff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-text p {
  font-size: 1.5rem;
  margin: 20px 0;
  color: #ddd;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  padding: 12px 25px;
  border: none;
  font-size: 1rem;
  text-decoration: none;
  background-color: #00bfff;
  color: #fff;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.hero-btn:hover {
  background-color: #008ecc;
}

.hero-btn.secondary {
  background-color: transparent;
  border: 2px solid #fff;
  color: #fff;
}

.hero-btn.secondary:hover {
  background-color: #fff;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .hero-btn {
    width: 100%;
  }
}
/*-------------------------*/

/* ABOUT SECTION */
/* ABOUT SECTION */
.about-section {
  padding: 60px 20px;
  background-color: #000;
  color: #fff;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

.about-image img {
  width: 100%;
  max-width: 500px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.about-text {
  flex: 1;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #00bfff;
}

.about-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    align-items: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-text p {
    font-size: 0.95rem;
  }
}

/*--------------------------*/

/* FORM SECTION */
.form-section {
  background-color: #000;
  padding: 60px 20px;
  color: #fff;
}

.form-container {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.form-box {
  background-color: #111;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.7);
  flex: 1;
  min-width: 300px;
}

.form-box h2 {
  margin-bottom: 20px;
  color: #00bfff;
  font-size: 1.8rem;
  text-align: center;
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-box input {
  padding: 12px 15px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  background-color: #222;
  color: #fff;
}

.form-box input::placeholder {
  color: #bbb;
}

.btn-primary {
  padding: 12px;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  background-color: #00bfff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #008ecc;
}

/* Responsive */
@media (max-width: 768px) {
  .form-container {
    flex-direction: column;
    gap: 20px;
  }
}
/*------------------------------*/
/* CONTACT SECTION */
.contact-section {
  background-color: #000;
  color: #fff;
  padding: 60px 20px;
}

.contact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}

/* Bilgi Kutusu */
.contact-info h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #00bfff;
}

.contact-info ul {
  list-style: none;
  line-height: 1.8;
  margin-bottom: 20px;
}

.contact-info a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #00bfff;
}

.contact-social {
  display: flex;
  gap: 15px;
}

.contact-social .social-link {
  font-size: 1.5rem;
  color: #00bfff;
  transition: color 0.3s;
}

.contact-social .social-link:hover {
  color: #008ecc;
}

/* Form Kutusu */
.contact-form h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #00bfff;
  
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00bfff;
}

.contact-form .btn-primary {
  align-self: flex-start;
  padding: 12px 25px;
  background-color: #00bfff;
  color: #fff;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .btn-primary:hover {
  background-color: #008ecc;
}

/* Harita Kutusu */
.contact-map h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #00bfff;
}

.contact-map iframe {
  border-radius: 6px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .contact-container {
    grid-template-columns: 1fr 1fr;

  }
}

@media (max-width: 576px) {
  .contact-container {
    display: flex;
    flex-direction: column;


  }

  .contact-form .btn-primary {
    width: 100%;

  }
}
/*---------------------------*/

/* FOOTER */
.site-footer {
  background-color: #000;
  color: #fff;
  font-family: 'Segoe UI', sans-serif;
}

/* Üst Bölüm: 3 Kolon */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 40px 20px;
  gap: 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
}

.footer-left .footer-logo {
  width: 60px;
  margin-bottom: 10px;
}

.footer-restaurant {
  font-size: 1.4rem;
  color: #00bfff;
  margin-bottom: 20px;
}

.footer-center h4,
.footer-right h4 {
  font-size: 1.2rem;
  color: #00bfff;
  margin-bottom: 15px;
}

/* Center Nav */
.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav li {
  margin-bottom: 8px;
}

.footer-nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav a:hover {
  color: #00bfff;
}

/* İletişim Linkleri */
.footer-right a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-right a:hover {
  color: #00bfff;
}

/* Harita */
.footer-map {
  margin: 0 20px 20px;
  border-top: 1px solid #222;
  padding-top: 20px;
}

/* Alt Bölüm: Blue Ajans */
.footer-bottom {
  display: block;
  text-decoration: none;
}

.blue-agency {
  background-color: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #222;
}

.agency-text p {
  margin: 0;
  font-size: 0.9rem;
  color: #bbb;
}

.agency-text h3 {
  margin: 5px 0;
  color: #00bfff;
}

.agency-logo img {
  width: 50px;
  height: auto;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-logo{
    flex-direction: column;
    text-align: center;
  }
  .footer-top {
    flex-direction: column;
    text-align: center;
  }

  .footer-column {
    margin-bottom: 30px;
    text-align: center;
  }

  .blue-agency {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

