/* Base Reset & Smooth Scrolling */
    html { scroll-behavior: smooth; }
    body { 
      margin: 0; 
      font-family: 'Montserrat', sans-serif; 
      background: #f7f7f7; 
      color: #333; 
      line-height: 1.6;
    }

    /* Navbar styling */
    nav {
      position: fixed;
      width: 100%;
      z-index: 1000;
      background: rgba(0, 0, 0, 0.8);
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }
    nav .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 15px 30px;
    }
    nav a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-size: 1.1rem;
      font-weight: 500;
      transition: color 0.3s ease;
    }
    nav a:hover { color: #f1c40f; }

    /* Header Section */
    header {
      position: relative;
      height: 100vh;
      background: url('../images/restaurant-interior.jpg') no-repeat center center/cover;
      display: flex;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    header::before {
      content: '';
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      z-index: 1;
    }
    header .content {
      position: relative;
      z-index: 2;
      color: #fff;
      padding: 0 20px;
    }
    header h1 {
      font-size: 4rem;
      margin: 0 0 20px;
      text-transform: uppercase;
      font-weight: 700;
    }
    header p {
      font-size: 1.5rem;
      margin-bottom: 30px;
      font-weight: 300;
    }
    header .cta {
      background: #f1c40f;
      color: #333;
      padding: 15px 30px;
      text-transform: uppercase;
      text-decoration: none;
      font-weight: 500;
      transition: background 0.3s ease;
    }
    header .cta:hover { background: #d4ac0d; }

    /* Menu Section */
    section.menu {
      padding: 60px 0;
      background: #fff;
    }
    section.menu .container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 30px;
      padding: 0 30px;
    }
    .card {
      background: #fafafa;
      border: 1px solid #eee;
      border-radius: 8px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    .card img {
      width: 100%;
      height: 200px;
      object-fit: cover;
    }
    .card p.yisim {
      text-align: center;
      padding: 15px;
      font-size: 1.4rem;
      margin: 0;
      font-weight: 500;
    }

    /* Footer */
    footer {
      background: #333;
      color: #fff;
      padding: 40px 30px;
      text-align: center;
    }
    footer h3 { 
      margin-bottom: 20px; 
      font-weight: 500;
      font-size: 2rem;
    }
    footer p, footer ul { 
      margin: 0; 
      padding: 0; 
      list-style: none; 
      font-weight: 300;
    }
    footer ul li { margin: 5px 0; }

    /* Animate on Scroll */
    .animate-on-scroll {
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
    }
    .animate-on-scroll.in-view {
      opacity: 1;
    }
		#menu{
		background-color:#36454F;
		}
		 /* Mobile Navigation Toggle (for header burger) */
    .burger-menu {
      display: none;
      position: absolute;
      top: 20px;
      right: 20px;
      font-size: 2.5rem;
      cursor: pointer;
      color: #fff;
      z-index: 1100; /* Above header content */
    }
    @media (max-width: 768px) {
      .burger-menu {
        display: block;
      }
    }
	 @media (max-width: 768px) {
      section.menu .container {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      }
    }
    @media (max-width: 480px) {
      section.menu .container {
        grid-template-columns: 1fr;
      }
      .card p.yisim {
        font-size: 1.2rem;
      }
    }
	
	
	 nav .container {
      display: flex;
      justify-content: space-between;
      align-items: ;
    }

    .logo {
      font-weight: bold;
      font-size: 1.5em;
      text-decoration: none;
    color:white;
    }

    .nav-links {
      display: flex;
      gap: 15px;
    }

    .nav-links a {
      text-decoration: none;
     
    }

    .menu-toggle {
      display: none;
      font-size: 24px;
      background: none;
      border: none;
      cursor: pointer;
      margin-left:20px;
	  color:white;
	  float:right;
    }

    @media (max-width: 768px) {
      .container {
        flex-direction: column;
        align-items: flex-end;
		    justify-content: space-between;
      }

      .menu-toggle {
        display: block;
		margin-left:100px;
      }

      .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
      }

      .nav-links.show {
        display: flex;
      }
    }
	
/* Reservation Section Styling */
.reservation-section {
  background: url('images/reserve.jpg') no-repeat center center/cover;
  padding: 80px 20px;
  position: relative;
  font-family: 'Montserrat', sans-serif;
  color: #fff;
}
.reservation-form {
  max-width: 800px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1); /* semi-transparent white */
  backdrop-filter: blur(10px); /* glassmorphism effect */
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  color: ;
}

.reservation-form input {
  background-color: rgba(255, 255, 255, 0.2);
  color: ;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.reservation-form input::placeholder {
  color:;
}

.reservation-form input:focus {
  border-color: #fff;
  outline: none;
  background-color: rgba(255, 255, 255, 0.25);
  color:;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.section-title p {
  font-size: 1rem;
  color: #666;
}

.reservation-form {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}
.reservation-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 0;
}
.reservation-section .container {
  position: relative;
  z-index: 1;
}

.section-title h2,
.section-title p {
  color: #fff;
}

.reservation-form .form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.reservation-form input {
  flex: 1 1 48%;
  padding: 12px 16px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.3s ease;
}

.reservation-form input:focus {
  border-color: #222;
  outline: none;
}

.btn-primary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background-color: #222;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #555;
}

/* Pulse the CTA button on hover */
header .cta {
  position: relative;
  overflow: hidden;
}
header .cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.2);
  transform: scale(0);
  border-radius: 50%;
  transition: transform 0.6s ease-out;
}
header .cta:hover::after {
  transform: scale(4);
}

/* Subtle scale on card image */
.card img {
  transition: transform 0.4s ease, filter 0.4s ease;
}
.card:hover img {
  transform: scale(1.05);
  filter: brightness(1.1);
}
.animate-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
}
.nav-links svg {
  flex-shrink: 0;
}
/* 1) Hide this link on desktop */
.nav-links .nav-burger {
  display: none;
}

/* 2) Under 768px, show it as part of the toggled menu */
@media (max-width: 768px) {
  .nav-links .nav-burger {
    display: block;
    margin: 0.5rem 0;    /* match your other mobile nav spacing */
    font-size: 1.2rem;   /* tweak as needed */
    /* inherit color/hover from other links */
  }
}
