/* =========================================
   RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#0B1220;
  color:white;
  overflow-x:hidden;
}


/* =========================================
   GLOBAL
========================================= */

.container{
  width:90%;
  max-width:1400px;
  margin:auto;
}

img{
  width:100%;
  display:block;
}

a{
  text-decoration:none;
}


/* =========================================
   HEADER
========================================= */

.header{
  position:fixed;
  top:0;
  left:0;

  width:100%;

  z-index:1000;

  backdrop-filter:blur(18px);

  background:rgba(11,18,32,.75);

  border-bottom:1px solid rgba(255,255,255,.05);
}

.nav{
  height:90px;

  display:flex;
  align-items:center;
  justify-content:space-between;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;

  font-size:1.3rem;
  font-weight:700;
}

.logo i{
  color:#F97316;
}

nav{
  display:flex;
  align-items:center;
  gap:35px;
}

nav a{
  color:white;
  font-weight:500;
  transition:.3s;
}

nav a:hover,
.active-link{
  color:#F97316;
}


/* =========================================
   HERO
========================================= */

.restaurants-hero{
  position:relative;

  padding:180px 0 120px;

  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
}

.hero-overlay::before{
  content:'';

  position:absolute;

  width:700px;
  height:700px;

  border-radius:50%;

  background:#2563EB;

  top:-300px;
  right:-150px;

  filter:blur(180px);

  opacity:.18;
}

.hero-overlay::after{
  content:'';

  position:absolute;

  width:600px;
  height:600px;

  border-radius:50%;

  background:#F97316;

  bottom:-300px;
  left:-150px;

  filter:blur(180px);

  opacity:.14;
}


/* =========================================
   HERO CONTENT
========================================= */

.hero-content{
  position:relative;
  z-index:2;

  display:grid;
  grid-template-columns:1fr 1fr;

  align-items:center;

  gap:70px;
}


/* =========================================
   HERO TEXT
========================================= */

.hero-text span{
  display:inline-flex;

  align-items:center;

  padding:12px 20px;

  border-radius:999px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.05);

  color:#93C5FD;

  margin-bottom:25px;

  font-size:.92rem;
}

.hero-text h1{
  font-size:4rem;

  line-height:1.05;

  margin-bottom:24px;

  font-weight:800;
}

.hero-text p{
  color:#94A3B8;

  line-height:1.9;

  font-size:1.05rem;

  max-width:560px;

  margin-bottom:35px;
}


/* =========================================
   HERO BUTTON
========================================= */

.hero-buttons a{
  display:inline-flex;

  align-items:center;
  justify-content:center;

  height:60px;

  padding:0 34px;

  border-radius:18px;

  background:#F97316;

  color:white;

  font-weight:600;

  transition:.3s;

  box-shadow:
  0 20px 40px rgba(249,115,22,.25);
}

.hero-buttons a:hover{
  transform:translateY(-4px);
}


/* =========================================
   HERO BANNER
========================================= */

.hero-banner{
  position:relative;
}

.hero-banner img{
  height:580px;

  object-fit:cover;

  border-radius:35px;

  box-shadow:
  0 35px 70px rgba(0,0,0,.45);
}


/* =========================================
   FLOATING CARD
========================================= */

.floating-card{
  position:absolute;

  bottom:30px;
  left:-40px;

  display:flex;
  align-items:center;

  gap:16px;

  padding:22px 24px;

  border-radius:24px;

  background:rgba(17,24,39,.95);

  backdrop-filter:blur(14px);

  border:1px solid rgba(255,255,255,.05);

  box-shadow:
  0 20px 40px rgba(0,0,0,.35);
}

.floating-card i{
  width:55px;
  height:55px;

  display:flex;
  align-items:center;
  justify-content:center;

  border-radius:16px;

  background:#F97316;

  color:white;

  font-size:1.1rem;
}

.floating-card h4{
  margin-bottom:5px;
}

.floating-card span{
  color:#94A3B8;
  font-size:.92rem;
}


/* =========================================
   FILTERS SECTION
========================================= */

.filters-section{
  padding:20px 0 100px;
}


/* =========================================
   TOP
========================================= */

.filters-top{
  display:flex;
  align-items:center;
  justify-content:space-between;

  gap:25px;

  margin-bottom:40px;
}

.filters-top h2{
  font-size:2rem;

  margin-bottom:8px;
}

.filters-top p{
  color:#94A3B8;
}


/* =========================================
   SEARCH
========================================= */

.search-box{
  width:350px;
  height:62px;

  display:flex;
  align-items:center;

  gap:14px;

  padding:0 20px;

  border-radius:20px;

  background:#111827;

  border:1px solid rgba(255,255,255,.05);
}

.search-box i{
  color:#F97316;
}

.search-box input{
  width:100%;

  background:none;
  border:none;
  outline:none;

  color:white;

  font-size:.95rem;
}


/* =========================================
   FILTERS
========================================= */

.filter-buttons{
  display:flex;

  flex-wrap:wrap;

  gap:15px;

  margin-bottom:45px;
}

.filter-btn{
  padding:14px 24px;

  border:none;

  border-radius:16px;

  background:#111827;

  color:#CBD5E1;

  font-weight:600;

  cursor:pointer;

  transition:.3s;

  border:1px solid rgba(255,255,255,.05);
}

.filter-btn:hover{
  transform:translateY(-3px);
}

.filter-btn.active{
  background:#F97316;

  color:white;

  box-shadow:
  0 15px 30px rgba(249,115,22,.25);
}


/* =========================================
   LAYOUT
========================================= */

.content-layout{
  display:grid;

  grid-template-columns:340px 1fr;

  gap:35px;

  align-items:start;
}


/* =========================================
   MAP SIDEBAR
========================================= */

.map-sidebar{
  position:sticky;

  top:120px;

  display:none;
}

.map-card{
  background:#111827;

  border-radius:30px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.05);
}

.map-info{
  padding:24px;
}

.map-info h3{
  font-size:1.4rem;

  margin-bottom:10px;
}

.map-info p{
  color:#94A3B8;

  line-height:1.7;
}

.map-card iframe{
  width:100%;
  height:320px;

  border:none;
}


/* =========================================
   STATS
========================================= */

.stats-card{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(180px,1fr));

  gap:20px;

  margin-bottom:35px;
}

.stat-item{
  background:#111827;

  border-radius:24px;

  padding:30px;

  border:1px solid rgba(255,255,255,.05);

  transition:.3s;
}

.stat-item:hover{
  transform:translateY(-6px);
}

.stat-item h3{
  font-size:2rem;

  color:#F97316;

  margin-bottom:10px;
}

.stat-item span{
  color:#CBD5E1;
}


/* =========================================
   EMPTY
========================================= */

.empty-state{
  display:none;

  flex-direction:column;

  align-items:center;

  justify-content:center;

  text-align:center;

  padding:70px 30px;

  background:#111827;

  border-radius:30px;

  border:1px solid rgba(255,255,255,.05);

  margin-bottom:35px;
}

.empty-state i{
  font-size:4rem;

  color:#F97316;

  margin-bottom:25px;
}

.empty-state h3{
  font-size:1.6rem;

  margin-bottom:14px;
}

.empty-state p{
  color:#94A3B8;

  line-height:1.8;

  max-width:500px;
}


/* =========================================
   GRID
========================================= */

.restaurants-grid{
  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(320px,1fr));

  gap:30px;
}


/* =========================================
   CARD
========================================= */

.restaurant-card{
  background:#111827;

  border-radius:30px;

  overflow:hidden;

  border:1px solid rgba(255,255,255,.05);

  transition:.4s;
}

.restaurant-card:hover{
  transform:translateY(-10px);

  box-shadow:
  0 30px 60px rgba(0,0,0,.35);
}


/* =========================================
   BANNER
========================================= */

.restaurant-banner{
  height:220px;

  overflow:hidden;
}

.restaurant-banner img{
  width:100%;
  height:100%;

  object-fit:cover;

  transition:.5s;
}

.restaurant-card:hover .restaurant-banner img{
  transform:scale(1.08);
}


/* =========================================
   CONTENT
========================================= */

.restaurant-content{
  position:relative;

  padding:75px 28px 30px;
}


/* =========================================
   LOGO
========================================= */

.restaurant-logo{
  width:90px;
  height:90px;

  border-radius:24px;

  overflow:hidden;

  background:white;

  padding:10px;

  position:absolute;

  top:-45px;
  left:28px;

  border:5px solid #111827;

  box-shadow:
  0 15px 35px rgba(0,0,0,.35);
}

.restaurant-logo img{
  width:100%;
  height:100%;

  object-fit:contain;
}


/* =========================================
   TEXT
========================================= */

.restaurant-content h3{
  font-size:1.4rem;

  margin-bottom:12px;
}

.restaurant-content p{
  color:#94A3B8;

  margin-bottom:28px;

  line-height:1.7;
}


/* =========================================
   BUTTONS
========================================= */

.card-buttons{
  display:flex;

  gap:14px;
}

.card-buttons a{
  flex:1;

  display:flex;
  align-items:center;
  justify-content:center;

  height:55px;

  border-radius:18px;

  color:white;

  font-weight:600;

  transition:.3s;
}

.card-buttons a:first-child{
  background:#F97316;

  box-shadow:
  0 15px 35px rgba(249,115,22,.25);
}

.location-btn{
  background:#1E293B;
}

.card-buttons a:hover{
  transform:translateY(-3px);
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:1200px){

  .content-layout{
    grid-template-columns:1fr;
  }

  .map-sidebar{
    position:relative;
    top:0;
  }

}


@media(max-width:1100px){

  .hero-content{
    grid-template-columns:1fr;
  }

}


/* =========================================
   MOBILE MENU
========================================= */

.menu-toggle{
  display:none;

  font-size:1.5rem;

  cursor:pointer;

  color:white;
}


/* =========================================
   RESPONSIVE
========================================= */

@media(max-width:768px){

  .menu-toggle{
    display:block;
  }

  .nav{
    position:relative;
  }

  nav{
    position:absolute;

    top:90px;
    left:0;

    width:100%;

    background:#111827;

    display:flex;
    flex-direction:column;

    align-items:center;

    gap:25px;

    padding:30px 0;

    border-bottom:1px solid rgba(255,255,255,.05);

    transform:translateY(-150%);

    transition:.4s ease;

    z-index:999;
  }

  nav.active{
    transform:translateY(0);
  }

  .restaurants-hero{
    padding:150px 0 90px;
  }

  .hero-text h1{
    font-size:2.8rem;
  }

  .filters-top{
    flex-direction:column;

    align-items:flex-start;
  }

  .search-box{
    width:100%;
  }

  .card-buttons{
    flex-direction:column;
  }

  .floating-card{
    left:20px;
    right:20px;
  }

}


@media(max-width:500px){

  .hero-text h1{
    font-size:2.2rem;
  }

  .hero-banner img{
    height:420px;
  }

  .restaurants-grid{
    grid-template-columns:1fr;
  }

}