
body {
  font-family: 'Montserrat', sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
  background: #0a0a0a7f;
}

/* --- VIDEO BACKGROUND --- */
.video-bg {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

/* Koyu overlay */
.video-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.45) 0%,
    rgba(0,0,0,0.25) 40%,
    rgba(0,0,0,0.75) 100%
  );
}

/* --- ANA İÇERİK --- */
.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px 50px;
}

/* --- LOGO ALANI --- */
.logo-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 12px;
  animation: fadeDown 0.8s ease both;
}

.logo-circle {
  /* width: 110px;
  height: 110px;
  border-radius: 50%; */
  /* background: rgba(20, 60, 40, 0.88); */
  /* border: 2.5px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
  overflow: hidden;
  margin-bottom: 14px; */
}

.logo-circle img {
  /* width: 100px;
  height: 80px;
  object-fit: contain; */

  width: 150px;
}
.btn-icon i {
  font-size: 2.4rem;
  color: rgba(255, 255, 255, 0.92);
  transition: all 0.2s ease;
  display: inline-block;
}
/* Hover effect (optional, complements your existing hover) */
.menu-btn:hover .btn-icon i {
  transform: scale(1.05);
  color: #fff;
  text-shadow: 0 0 8px rgba(255,255,240,0.6);
}
/* Keep same spacing as previous SVG icons */
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color:white !important; 
}
.btn-icon svg{
  color:white !important;
}
/* Logo placeholder — eğer resim yoksa SVG göster */
.logo-svg-fallback {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.logo-svg-fallback .brand-top {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

.logo-svg-fallback .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.logo-svg-fallback .brand-tagline {
  font-size: 7.5px;
  font-weight: 600;
  color: rgba(255,255,255,0.65);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.restaurant-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  letter-spacing: 4px;
  text-transform: uppercase;
}

/* Dekoratif çizgi */
.divider {
  width: 48px;
  height: 1.5px;
  background: rgba(255,255,255,0.3);
  margin: 14px 0 32px;
  animation: fadeDown 0.8s 0.15s ease both;
}

/* --- KATEGORİ BUTONLARI --- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  width: 100%;
  max-width: 380px;
  animation: fadeUp 0.8s 0.25s ease both;
}

.menu-btn {
  position: relative;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 16px;
  padding: 28px 16px 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s, border-color 0.2s;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.menu-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255,255,255,0.07) 0%, transparent 60%);
  pointer-events: none;
}

.menu-btn:active {
  transform: scale(0.96);
  background: rgba(255,255,255,0.16);
}

.menu-btn:hover {
  background: rgba(255,255,255,0.16);
  border-color: rgba(255,255,255,0.35);
}

.btn-icon {
  width: 54px;
  height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.3));
}

.btn-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  text-align: center;
}

/* Footer */
.footer-note {
  margin-top: 36px;
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.8s 0.4s ease both;
}

/* Animasyonlar */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-18px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

*{
    font-family: 'Montserrat';
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


        /* Navbar */
        .navbar {
            display: none !important;
            justify-content: space-between;
            align-items: center;
            background-color: #333;
            color: #fff;
            padding: 10px 20px;
            z-index: 9999 !important;
        }

        .navbar .brand {
            font-size: 19px;
            font-weight: bold;
        }

        /* Hamburger Icon */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger div {
            width: 25px;
            height: 3px;
            background-color: #fff;
        }

        /* Menü */
        .menu {
            display: none;
            flex-direction: column;
            background-color: #444;
            position: absolute;
            right: 0;
            width: 60%;
            z-index: 9999 !important;
            height: 100%;
            
            
        }

        .menu a {
            color: #fff;
            text-decoration: none;
            padding: 15px;
            text-align: center;
            border-bottom: 1px solid #555;
        }

        .menu a:hover {
            background-color: #555;
        }

        .menu-item{
            background-color: white;
            border-radius: 5px;
        }

        .menu-icon i{
            font-size: 40px;
            display: flex;
            justify-content: center;
        
        }
       
        .hamburger.open #line1 {
            transform: translateY(9px) rotate(45deg);
        }

        .hamburger.open #line2 {
            opacity: 0;
        }

        .hamburger.open #line3 {
            transform: translateY(-9px) rotate(-45deg);
        }

     
        .line {
            width: 100%;
            height: 4px;
            background-color: #fff;
            transition: all 0.4s ease;
        }

        .line2 {
            opacity: 1;
        }

        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .navbar{
                display: flex !important;
            }

            .banner::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 57vh !important;
            background-color: rgba(0, 0, 0, 0.5);
        }
        }




.link-box {
    text-decoration: none;
    color: black;
}

.banner {
    background-image: url("../images/hurrem.jpg");
    width: 100%;
    height: 50vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50vh;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-content {
    position: absolute;
    top: 25%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}

.logo {
    width: 180px;
    height: auto;
    margin-bottom: 20px;
}

.rounded-card{
    border-radius: 10px;
    cursor: pointer;
    /* height:130px; */
}

.menu-section img{
    height: 95px;
    width: 100px;
}


.menu-section3{
    height: 100% !important;
    width: 100% !important;
    border-radius: 12px !important;
}

.product_price{
    font-size: 19px;
    background: -webkit-linear-gradient(#00000094, #cfd20c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}



.modal {
    display: none; /* Hide modal by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 350px;
    text-align: center;
}
.flags {
    list-style-type: none;
    padding: 0;
}
.flags li {
    display: inline-block;
    margin: 10px;
}
