@import url("https://fonts.googleapis.com/css2?family=Inter:opsz,wght@14..32,300&family=Island+Moments&family=Jost:wght@300&family=Tinos&display=swap");

/* Universal Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Css variables */

:root {
  /* Primary / Secondary */
  --color-primary: #1f4544;
  --color-secondary: #bb936d;

  /* Backgrounds */
  --color-background-light: #ffffff;
  --color-background-dark: #102b2a;
  --color-background-muted: #092423;
  --color-background-nav: #000000;
  --color-background-light: #1f3634;

  /* Text */
  --color-text-primary: #000000;
  --color-text-muted: #d9d9d9;
  --color-text-on-primary: #ffffff;

  /* Accent / Status */
  --color-accent-red: #e56464;
  --color-accent-light: #bb936d;

  /* UI Elements */
  --color-card-background: #102b2a;
  --color-border: #1f3634;
  --color-shadow: rgba(0, 0, 0, 0.1);
  --color-white: #ffffff;
}

/* Body Styling */
html,
body {
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  font-size: 16px;
  background: var(--color-background-dark);
  padding-bottom: 5rem;
}

/* utlity */

.warp {
  max-width: 1200px;
  width: 95%;
  margin: 0 auto;
  padding: 0 3em;
}

/* hero */

.hero {
  background: var(--color-background-dark);
  height: 100%;
  padding: 1rem;
  position: relative;
}

.hero-container {
  width: 100%;
  height: 95vh;
  background-image: url(./imges/hero-bg.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  padding: 1.4rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

/* heder */
header {
  background: var(--color-background-nav);
  opacity: 0.7;
  color: var(--color-white);
  font-family: "Jost", sans-serif;
}

/* Navbar */

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 6.5rem;
  position: relative;
}

/* Nav List */

.nav-bar .list {
  display: flex;
  gap: 4%;
}

.nav-bar .icon {
  font-size: 2.1rem;
  display: none;
}

.list-items a {
  font-size: 1rem;
  cursor: pointer;
  color: var(--color-white);
  position: relative;
  transition: color 0.3s ease;
}

.nav-bar a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent-light); /* blue underline */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

nav a:hover {
  color: var(--color-secondary);
}

nav a:hover::after {
  width: 100%;
}

.logo a {
  font-size: 1.8rem;
  color: var(--color-white);
}

/* Button */

.btn {
  padding: 1rem 1.8rem;
  border: 1px solid var(--color-accent-light);
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--color-white);
  position: relative;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: linear-gradient(to right, #bb936d 50%, transparent 50%) top
      left/200% 2px no-repeat,
    linear-gradient(to bottom, #bb936d 50%, transparent 50%) top right/2px 200%
      no-repeat,
    linear-gradient(to left, #bb936d 50%, transparent 50%) bottom right/200% 2px
      no-repeat,
    linear-gradient(to top, #bb936d 50%, transparent 50%) bottom left/2px 200%
      no-repeat;
  transition: background-position 0.6s ease;
}

.btn:hover::before {
  background-position: bottom right, bottom left, top left, top right;
}
/* Heding */

.hero-heding {
  color: var(--color-white);
  text-align: center;
  font-family: "Tinos", serif;
  font-weight: 200;
  font-size: 1.5rem;
}

/* Address */

.address-container {
  color: var(--color-white);
  display: flex;
  justify-content: space-between;
  font-family: "Jost", sans-serif;
  align-items: center;
}

.small-txt {
  font-size: 0.7rem;
  font-weight: 100;
}

.text p {
  font-size: 0.9rem;
  font-weight: 100;
  padding: 0.1rem 0;
}

/* circle */

.circle {
  border: 1px solid var(--color-accent-light);
  border-radius: 50%;
  width: 13vw;
  max-width: 250px;
  aspect-ratio: 1 / 1;
  color: white;
  font-weight: 600;
  backdrop-filter: blur(27px);
  -webkit-backdrop-filter: blur(27px);
  background: #807c7c0f;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 3%;
  bottom: -3%;
  z-index: 999;
}

.center-icon {
  position: absolute;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.center-icon img {
  width: 100%;
  height: 100%;
  filter: invert(1);
}
svg {
  width: 80%;
  height: 80%;
  animation: rotateText 15s linear infinite;
}

/* Animation Circle */

@keyframes rotateText {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* About Us */

.about-heding-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-family: "Jost", sans-serif;
  padding: 3rem 0;
  display: flex;
}

.about-heding-container h5 {
  font-size: 3rem;
  font-family: "Island Moments", cursive;
  font-weight: 400;
  color: var(--color-secondary);
  margin-top: 0.5rem;
}

.about .about-heding {
  font-size: 2rem;
  font-weight: 400;
  margin: 0.4rem 0;
  text-align: center;
}

.about .about-subheding {
  max-width: 100%;
}
.about-heding-container h5 {
  margin-bottom: 1rem;
}

.about .about-subheding {
  font-size: 1rem;
  opacity: 0.7;
  max-width: 40%;
  text-align: center;
}

/* Cuisine */

.cuisine-container {
  display: flex;
  padding: 3rem 2rem;
}

.about .img-container {
  position: relative;
  transition: all 0.8s ease-in;
  width: 55%;
}

.about-imges img {
  width: 100%;
  transition: all 1s ease;
}

.about .txt-container {
  color: var(--color-white);
  font-family: "Jost", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about .img-title {
  font-size: 7vw;
  opacity: 0.3;
  font-family: "Tinos", serif;
  font-weight: 400;
}

.about .img-sub-title {
  font-size: 2rem;
}

.about .img-dec {
  font-size: 0.9rem;
  max-width: 70%;
  padding: 1rem 0;
  opacity: 0.6;
  text-align: center;
}

.about .about-btn {
  margin: 1.5rem 4rem;
}

/* Chefs */

.about .chefs-container {
  margin-top: 4rem;
  display: flex;
}

/* Hover */

.img-container:hover img {
  transform: translateY(-4%);
}

/* Services */

.service {
  height: 25rem;
  background-image: url(./imges/service.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: "Tinos", serif;
  margin-top: 5rem;
}

.service-txt-container {
  display: flex;
  align-items: end;
  justify-content: center;
  position: relative;
}
.left-line,
.right-line {
  border: 1px solid var(--color-white);
  width: 15rem;
  position: absolute;
}

.right-line {
  bottom: 30%;
  right: -90%;
}
.left-line {
  bottom: 30%;
  left: -90%;
}
.service-txt {
  font-size: 6rem;
  text-transform: uppercase;
  font-weight: 300;
}

.service h5 {
  font-size: 1.3rem;
  text-transform: capitalize;
  font-weight: 300;
}

/* MENU */

.menu-container {
  margin-top: 2rem;
  padding: 2rem 0;
  display: flex;
  gap: 1rem;
}

/* Menu image */

.menu-left {
  width: 30%;
  padding: 2rem;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 1rem;
}
.menu-left img {
  width: 100%;
  padding: 0.3rem 0;
}

.menu-right {
  width: 30%;
  padding: 2rem;
  display: flex;
  align-items: center;
}

.menu-right img {
  width: 100%;
}

/* menu Text */

.menu-center {
  width: 45%;
  padding: 2rem;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}

.menu-txt-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  width: 100%;
  text-align: center;
}

/* title */

.title {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 1.4rem;
  font-family: "Tinos", serif;
  font-weight: 300;
  gap: 0.3rem;
}

/* decrption */

.decrption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.decrption p {
  font-size: 1rem;
  font-family: "Jost", sans-serif;
  font-weight: 300;
  opacity: 0.8;
}

/* RESEVER */

.reserve {
  background-color: var(--color-background-light);
}
.reserve-cotainer {
  margin-top: 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
}

/* Left */

.reserve-left {
  padding: 2rem;
  width: 50%;
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: start;
}

.reserve-left .title {
  font-family: "Tinos", serif;
  font-size: 10vw;
  font-weight: 400;
  opacity: 0.3;
  color: var(--color-white);
  text-align: left;
  margin-bottom: 1.5rem;
}

.dropdown {
  width: 90%;
  max-width: 400px;
  position: relative;
}

label {
  display: block;
  font-family: "Jost", sans-serif;
  font-size: 2rem;
}

.dropdown-selected {
  padding: 1rem 0.5rem;
  border-bottom: 1px solid white;
  cursor: pointer;
  user-select: none;
  background: transparent;
  color: white;
  text-transform: capitalize;
  opacity: 0.6;
  font-family: "Inter", sans-serif;
}

/* arrow */
.dropdown::after {
  content: "▼";
  position: absolute;
  right: 12px;
  bottom: 2%;
  transform: translateY(-50%);
  pointer-events: none;
  color: var(--color-secondary);
}

.reserve-right {
  padding: 2rem;
  width: 50%;
  position: relative;
}

.reserve-right img {
  width: 80%;
  transition: all 1s ease-in-out;
}

.reserve-right:hover img {
  transform: translateX(10%);
}
.reserve-right:hover .img-txt h5 {
  display: block;
}

.img-txt {
  position: absolute;
  bottom: 10%;
}
.img-txt h5 {
  color: var(--color-white);
  font-size: 3rem;
  font-family: "Island Moments", cursive;
  font-weight: 400;
  display: none;
  transition: 4s all ease-in-out;
}

/* UPCOMING EVENTS  */

.evnt-title-container {
  color: var(--color-white);
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: "Jost", sans-serif;
  text-align: center;
}

/* IMAGES */
.event-img-container {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  justify-content: center;
}

.img-box {
  width: 30%;
}

.event-img-container {
  width: 100%;
}

.event-img-container img {
  width: 90%;
}

.img-footer {
  color: var(--color-white);
  margin-top: 1.5rem;
  text-align: center;
  font-family: "Jost", sans-serif;
}

.img-footer h4 {
  font-size: 1.2rem;
  font-weight: 300;
  margin-bottom: 0.8rem;
}

.img-footer span {
  display: block;
  font-size: 0.9rem;
  opacity: 0.6;
}

/* Testimonal */

.testimonal-container {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
}

.testimonal-container .img-sec {
  width: 50%;
  background-color: var(--color-background-light);
  padding: 6rem 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.img-sec h5 {
  font-size: 3rem;
  font-family: "Island Moments", cursive;
  font-weight: 400;
  color: var(--color-secondary);
  transform: rotate(-7deg);
  position: absolute;
  bottom: 25%;
  right: 5%;
  transition: all 1s ease;
}

.img-sec:hover h5 {
  transform: rotate(-7deg) translateY(-50%);
}

.testimonal-container img {
  width: 80%;
}

.testimonal-container .txt-sec {
  width: 50%;
}

.txt-sec {
  background-image: url(./imges/test-2.png);
  background-size: cover;
}

/* CONNECT WITH US*/

.connect {
  background-color: var(--color-primary);
  padding-bottom: 2rem;
}

.connect-title-container {
  color: var(--color-white);
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  font-family: "Jost", sans-serif;
  text-align: center;
  padding: 1rem;
}

.gellery-container {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.gellery-box {
  width: 25%;
}

.gellery-box img {
  width: 80%;
}

/* EMAIL AND CONTACT NUMBER */

.email-number {
  background-color: var(--color-background-muted);
  padding: 4rem;
}

.email-warper {
  color: var(--color-white);
  font-family: "Jost", sans-serif;
  display: flex;
}

.box {
  width: 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.second {
  border-left: 1px solid var(--color-white);
  border-right: 1px solid var(--color-white);
}
.box h4 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.box p {
  font-size: 1rem;
  opacity: 0.5;
}

/* FOOTER */

footer {
  background-color: var(--color-background-muted);
}

.log-container {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-content: center;
}

.f-line-left,
.f-line-right {
  border: 1px solid var(--color-white);
  width: 40%;
}

.log-container .log {
  font-size: 2rem;
  color: var(--color-white);
  font-family: "Jost", sans-serif;
  text-transform: uppercase;
}

/* SOCIAL HANDELS AND COPY WRITE */

.social-copy-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3rem;
  font-family: "Jost", sans-serif;
  padding: 0.7rem;
}

.social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.social a {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--color-white);
}

.social img {
  width: 0.5rem;
}

.copy p {
  color: var(--color-white);
  font-size: 0.8rem;
  font-weight: 300;
}

/* Responsive */

@media (max-width: 867px) {
  .nav-bar {
    justify-content: safe;
  }

  html,
  body {
    font-size: 14px;
  }

  .reserve-left .title {
    font-size: 4rem;
  }
}

@media (max-width: 767px) {
  html,
  body {
    font-size: 13px;
  }
  .nav-bar .list {
    display: none;
  }

  .nav-bar .icon {
    display: block;
  }

  .cuisine-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    margin-top: 1rem;
  }

  .chefs-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 2rem;
  }
  .about .img-container {
    width: 60%;
  }

  .menu-left {
    justify-content: space-evenly;
  }

  .menu-right {
    align-items: start;
  }

  .menu-right img {
    align-items: start;
  }

  .title {
    font-size: 1.1rem;
  }

  .reserve-cotainer {
    flex-direction: column;
  }
  .reserve-left {
    width: 100%;
    align-items: center;
  }

  .reserve-right {
    width: 60%;
  }

  .testimonal-container {
    flex-direction: column-reverse;
    align-items: center;
  }
  .testimonal-container .img-sec {
    width: 100%;
  }

  .testimonal-container .txt-sec {
    width: 100%;
    background-size: cover;
    height: 250px;
    background-position: center;
  }

  .img-sec h5 {
    font-size: 2rem;
  }
}

@media (max-width: 567px) {
  .warp {
    padding: 0 1rem;
  }
  .hero-container {
    background-image: url(./imges/mobile.jpg);
    background-position: center;
    height: 70vh;
  }

  .about .img-dec {
    max-width: 100%;
  }

  .about .img-container {
    width: 80%;
  }
  .about .about-subheding {
    max-width: 100%;
  }
  .about .img-sub-title {
    text-align: center;
  }

  .circle {
    width: 20vw;
  }
  .btn {
    padding: 0.85rem 1rem;
    font-size: 0.9rem;
  }
  .logo a {
    font-size: 1.5rem;
  }

  .nav-bar {
    height: 5.5rem;
  }

  .nav-bar .icon {
    font-size: 1.85rem;
  }
  .email-warper {
    flex-direction: column;
    border: none;
    gap: 2rem;
  }
  .box {
    width: 100%;
  }
  .second {
    border: none;
  }

  .reserve-right {
    width: 100%;
  }
  .img-txt h5 {
    font-size: 1.8rem;
  }

  .event-img-container {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
  .img-box {
    width: 60%;
  }

  .gellery-container {
    flex-direction: column;
    gap: 1rem;
  }

  .gellery-box {
    width: 80%;
  }

  .menu-center {
    width: 100%;
  }

  .menu-left,
  .menu-right {
    display: none;
  }

  .social-copy-container {
    flex-direction: column;
    gap: 0.9rem;
  }
}
