


/* -------------------- */
/*     GLOBAL STYLES    */
/* -------------------- */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background: #fff;
  color: #222;
  line-height: 1.6;
}

img,
video {
  width: 100%;
  display: block;
}

ul {
  list-style: none;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.about__container {
  overflow: hidden;
  display: grid;
  gap: 2rem;
}

.about__image img {
  max-width: 450px;
  margin: auto;
  border-radius: 5px;
}

.about__container {
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
  }

/* -------------------- */
/*     REUSABLE         */
/* -------------------- */
.logo {
  max-width: 90px;
}

.section__container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  padding: 5rem 0;
}

.section__header {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.section__subheader {
  color: #b6895b;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.section__description {
  max-width: 600px;
  margin-bottom: 2rem;
}

.btn {
  padding: 0.9rem 1.6rem;
  background: #b6895b;
  color: #fff;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  font-size: 1rem;
  transition: 0.3s;
}

.btn:hover {
  background: #8d6a45;
}

/* -------------------- */
/*     NAVBAR           */
/* -------------------- */

nav {
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 10px rgba(92, 83, 9, 0.067);
  position: left;
  top: 0;
  z-index: 999;
}

.nav__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.logo div {
  background: #b6895b;
  color: white;
  padding: 0.5rem 0.8rem;
  font-weight: 700;
  font-size: 1.1rem;
}

.nav__logo span {
  font-size: 0.8rem;
  font-weight: 600;
}

.nav__links {
  display: flex;
  gap: 1.8rem;
}

.nav__links a {
  text-decoration: none;
  color: #222;
  font-weight: 500;
  transition: 0.3s;
}

.nav__links a:hover {
  color: #b6895b;
}

.nav__menu__btn {
  display: none;
  font-size: 1.8rem;
  cursor: pointer;
}

/* -------------------- */
/*     HEADER / HERO    */
/* -------------------- */

.header {
  background: url("assets/header.jpg") center/cover no-repeat;
  height: 95vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__container {
  text-align: center;
  color: #fff;
}

.header__container h1 {
  font-size: 4rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* -------------------- */
/*     BOOKING          */
/* -------------------- */

.booking form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  background: #fff;
  padding: 2rem;
  box-shadow: 0 2px 15px #0002;
  border-radius: 6px;
}

.input__group {
  flex: 1 1 250px;
}

.input__group label {
  font-weight: 600;
  font-size: 0.9rem;
}

.input__group input {
  width: 100%;
  padding: 0.7rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

/* -------------------- */
/*     ABOUT             */
/* -------------------- */

.header {
  font-family: 'Poppins', sans-serif;
}

/* -------------------- */


.map-container {
  width: 100%;
  max-width: 900px;
  height: 400px;
  margin: 20px auto;
  border: 2px solid #333;
  border-radius: 8px;
  overflow: hidden;
}
/* -------------------- */

.room__grid {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.room__card {
  background: #fff;
  box-shadow: 0 2px 15px #0002;
}

.room__card__details {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
}

.room__card__details h3 span {
  font-size: 0.8rem;
  color: #777;
}

/* Force same-size images inside .room__card */
.room__card img {
  width: 100%;
  height: 220px;         /* You can change size if needed */
  object-fit: cover;     /* Crops image to fit same size */
  display: block;
  border-radius: 5px 5px 0 0;
}
 /* slide */
/* Same Layout like NEWS */
#gallery .amenity__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#gallery .amenity-card {
  background: #ffffff;
  padding: 15px;
  border-radius: 5px;
  text-align: center;
  border: 1px solid #ccc;
  overflow: hidden;
}

#gallery .amenity-card img {
  width: 100%;
  height: 200px; /* uniform height */
  object-fit: cover; /* auto adjust image */
  transition: transform 0.3s ease-in-out;
}

#gallery .amenity-card img:hover {
  transform: scale(1.1); /* zoom effect */
}

#gallery .amenity-card p {
  margin-top: 10px;
  color: #000;
  font-size: 16px;
}

/* Mobile responsive */
@media (max-width: 768px) {
  #gallery .amenity__grid {
    grid-template-columns: 1fr 1fr; /* 2 per row in mobile */
  }

  #gallery .amenity-card img {
    height: 150px;
  }
}





/* -------------------- */
/*     INTRO VIDEO       */
/* -------------------- */

.intro__container {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.intro__video video {
  border-radius: 8px;
}

/* -------------------- */
/*     FEATURES          */
/* -------------------- */

.feature__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.feature__card {
  text-align: center;
  padding: 2rem;
  background: #fff;
  box-shadow: 0 2px 10px #0001;
  border-radius: 6px;
}

.feature__card span {
  font-size: 2.5rem;
  color: #b6895b;
}

/* -------------------- */
/*     MENU              */
/* -------------------- */

.menu__items {
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 2rem 0;
}

.menu__items li {
  display: flex;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 10px #0001;
}

.menu__details h4 {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.menu__images {
  margin: 3rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu__banner {
  margin-top: 3rem;
  display: flex;
  justify-content: space-between;
  text-align: center;
}

.menu__banner li span {
  font-size: 2.4rem;
  color: #b6895b;
}

/* -------------------- */
/*      NEWS             */
/* -------------------- */
/* --- Overall Layout Width --- */

/* --- NEWS SECTION ONLY --- */

#news .news__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 cards in a row (desktop) */
  gap: 20px;
}

#news .news__card {
  background: #ffffff;          /* white background */
  border: 1px solid #ccc;       /* light gray border */
  padding: 15px;
  border-radius: 5px;
}

#news .news__card h4 {
  color: #000;                  /* black text */
  text-align: center;
  margin-top: 10px;
}

#news .map-container {
  width: 100%;
  height: 250px;               /* adjustable height */
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #ccc;      /* gray border for map */
}

#news .map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* --- Mobile View (1 card per row) --- */
@media (max-width: 768px) {
  #news .news__grid {
    grid-template-columns: 1fr; /* one card per row */
  }

  #news .map-container {
    height: 200px;
  }
}

/* -------------------- */
/*     FOOTER            */
/* -------------------- */
.footer {
  background: #fff;
  color: #111;
  padding: 1rem 0;
  border-top: 1px solid #ddd;
}

.footer__container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Desktop: 3 columns */
  gap: 1.5rem;
  align-items: start;
}

.footer__col h4 {
  margin-bottom: 0.5rem;
  font-size: 1.15rem;
  color: #000;
}

.section__description {
  margin: 0.35rem 0;
  line-height: 1.35;
  color: #333;
}

.footer__links li {
  list-style: none;
  margin-bottom: 0.35rem;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.footer__links li p {
  margin: 0;
  line-height: 1.25;
}

.footer__bar {
  text-align: center;
  padding: 0.6rem;
  margin-top: 1rem;
  border-top: 1px solid #ccc;
  font-size: 0.9rem;
  color: #555;
}

/* ✅ MOBILE RESPONSIVE (0px–768px) */
@media (max-width: 768px) {
  .footer__container {
    grid-template-columns: 1fr; /* Mobile: ONE column */
    text-align: center;
  }

  .footer__col {
    margin-bottom: 1rem;
  }

  .footer__links li {
    justify-content: center; /* icons + text center align */
  }

  .client__photo img {
    margin: 0 auto;
    display: block;
  }
}


/* CSS for Categories */
.categories{
    padding: 4% 0;
}

.box-3{
    width: 28%;
    float: left;
    margin: 2%;
}


/* ------------------------------ */
/*     RESPONSIVE (MOBILE)        */
/* ------------------------------ */

@media (max-width: 768px) {
  .nav__links {
    display: none;
    flex-direction: column;
    background: #fff;
    position: absolute;
    top: 70px;
    width: 100%;
    left: 0;
    padding: 1.5rem 0;
  }

  .nav__menu__btn {
    display: block;
  }

  .room__card__details {
    flex-direction: column;
    gap: 1rem;
  }

  .menu__banner {
    flex-direction: column;
    gap: 1rem;
  }

  .intro__container {
    flex-direction: column;
  }
}
/* -------------------- */
/*     FOOD MENU         */
/* -------------------- */

.menu {
  background: #faf7f2;
  padding: 5rem 0;
}

.menu__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.section__nav span {
  font-size: 1.8rem;
  padding: 0.5rem;
  border: 1px solid #b6895b;
  color: #b6895b;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.section__nav span:hover {
  background: #b6895b;
  color: #fff;
}

/* Menu Items */
.menu__items {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
}

.menu__items li {
  background: #fff;
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 4px 15px #0001;
  transition: 0.3s;
}

.menu__items li:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px #0002;
}

.menu__items img {
  width: 110px;
  height: 110px;
  border-radius: 6px;
  object-fit: cover;
}

.menu__details h4 {
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.menu__details p {
  font-size: 0.9rem;
  color: #555;
}

/* Menu Images Showcase */
.menu__images {
  margin: 4rem 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.menu__images img {
  height: 260px;
  border-radius: 6px;
  object-fit: cover;
  transition: 0.4s;
}

.menu__images img:hover {
  transform: scale(1.06);
}

/* Menu Banner (Stats) */
.menu__banner {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 3rem;
}

.menu__banner li {
  background: white;
  padding: 1.8rem 1rem;
  width: 23%;
  border-radius: 6px;
  box-shadow: 0 4px 15px #0001;
  transition: 0.3s;
}

.menu__banner li:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px #0003;
}

.menu__banner li span {
  font-size: 2.5rem;
  color: #b6895b;
}

.menu__banner li h4 {
  margin: 0.5rem 0;
  font-size: 1.4rem;
  font-weight: 700;
}

.menu__banner li p {
  font-size: 0.9rem;
  color: #666;
}

/* Responsive */
@media (max-width: 768px) {

  .menu__banner {
    flex-direction: column;
    gap: 1rem;
  }

  .menu__banner li {
    width: 100%;
  }

  .menu__images {
    grid-template-columns: 1fr; 
  }
}



/* CSS for Mobile Size or Smaller Screen */

@media only screen and (max-width:768px){
    .logo{
        width: 80%;
        float: none;
        margin: 1% auto;
    }

    .menu ul{
        text-align: center;
    }

    .food-search input[type="search"]{
        width: 90%;
        padding: 2%;
        margin-bottom: 3%;
    }

    .btn{
        width: 91%;
        padding: 2%;
    }

    .food-search{
        padding: 10% 0;
    }

    .categories{
        padding: 20% 0;
    }
    h2{
        margin-bottom: 10%;
    }
    .box-3{
        width: 100%;
        margin: 4% auto;
    }

    .food-menu{
        padding: 20% 0;
    }

    .food-menu-box{
        width: 90%;
        padding: 5%;
        margin-bottom: 5%;
    }
    .social{
        padding: 5% 0;
    }
    .order{
        width: 100%;
    }
}

/* 
    Author: Vijay Thapa;
    Theme: Restaurant Food Order;
    version: 1.0;
*/

/* CSS for All */
*{
    margin: 0 0;
    padding: 0 0;
    font-family: Arial, Helvetica, sans-serif;
}
.container{
    width: 80%;
    margin: 0 auto;
    padding: 1%;
}
.img-responsive{
    width: 100%;
}
.img-curve{
    border-radius: 15px;
}

.text-right{
    text-align: right;
}
.text-center{
    text-align: center;
}
.text-left{
    text-align: left;
}
.text-white{
    color: white;
}

.clearfix{
    clear: both;
    float: none;
}

a{
    color: #ff6b81;
    text-decoration: none;
}
a:hover{
    color: #ff4757;
}

.btn{
    padding: 1%;
    border: none;
    font-size: 1rem;
    border-radius: 5px;
}
.btn-primary{
    background-color: #ff6b81;
    color: white;
    cursor: pointer;
}
.btn-primary:hover{
    color: white;
    background-color: #ff4757;
}
h2{
    color: #2f3542;
    font-size: 2rem;
    margin-bottom: 2%;
}
h3{
    font-size: 1.5rem;
}
.float-container{
    position: relative;
}
.float-text{
    position: absolute;
    bottom: 50px;
    left: 40%;
}
fieldset{
    border: 1px solid white;
    margin: 5%;
    padding: 3%;
    border-radius: 5px;
}


/* CSSS for navbar section */

.logo{
    width: 100%;
    float: left;
}



/* CSS for Categories */
.categories{
    padding: 4% 0;
}

.box-3{
    width: 28%;
    float: left;
    margin: 2%;
}




/* CSS for Mobile Size or Smaller Screen */

@media only screen and (max-width:768px){
    .logo{
        width: 80%;
        float: none;
        margin: 1% auto;
    }

    .menu ul{
        text-align: center;
    }

    .food-search input[type="search"]{
        width: 90%;
        padding: 2%;
        margin-bottom: 3%;
    }

    .btn{
        width: 91%;
        padding: 2%;
    }

    .food-search{
        padding: 10% 0;
    }

    .categories{
        padding: 20% 0;
    }
    h2{
        margin-bottom: 10%;
    }
    .box-3{
        width: 100%;
        margin: 4% auto;
    }

    .food-menu{
        padding: 20% 0;
    }

    .food-menu-box{
        width: 90%;
        padding: 5%;
        margin-bottom: 5%;
    }
    .social{
        padding: 5% 0;
    }
    .order{
        width: 100%;
    }
}
