* {
  margin: 0;
  padding: 0;
}
body {
  font-family: sans-serif;
}
.header {
  min-height: 100vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(39, 13, 42, 0.7)),
    url(images/front.png);
  background-position: center;
  background-size: cover;
  position: relative;
}

nav {
  display: flex;
  padding: 2% 6%;
  justify-content: space-between;
  align-items: center;
}
nav img {
  width: 150px;
}
.nav-links {
  flex: 1;
  text-align: right;
}
.nav-links ul li {
  list-style: none;
  display: inline-block;
  padding: 8px 12px;
  position: relative;
}
.nav-links ul li a {
  color: #fffdfd;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links ul li::after {
  content: "";
  width: 0%;
  height: 2px;
  background: #f44336;
  display: block;
  margin: auto;
  transition: 0.5s;
}
.nav-links ul li:hover::after {
  width: 100%;
}
.text-box {
  width: 90%;
  color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.text-box h1 {
  font-size: 62px;
}
.text-box p {
  margin: 10px 0 40px;
  font-size: 24px;
  color: #fff;
}
.hero-btn {
  display: inline-block;
  text-decoration: none;
  color: #fff;
  border: 1px solid#fff;
  padding: 12px 34px;
  font-size: 24px;
  background: transparent;
  position: relative;
  cursor: pointer;
}
.hero-btn:hover {
  background: #f44336;
  transition: 1s;
}

nav .bi {
  display: none;
}

@media (max-width: 700px) {
  .text-box h1 {
    font-size: 35px;
  }

  /* .text-box a:hover {
    background-color: #f44336; */
  /* } */
  .nav-links ul li {
    display: block;
  }

  .nav-links {
    position: absolute;
    background: #f44336;
    height: 100vh;
    width: 200px;
    top: 0;
    right: -10px;
    text-align: left;
    z-index: 2;
    transition: right 0.5s ease-in-out;
  }
  nav .bi {
    display: block;
    color: #fff;
    margin: 10px;
    font-size: 22px;
    cursor: pointer;
  }
  .nav-links ul li {
    padding: 20px;
  }
  .closebar {
    width: 20px;
  }
  .close {
    transition: 0.1s;
    font-size: 30px;

    display: block;
    width: 100px;
  }

  .ham {
    display: block;
    color: #fff;
    margin: 20px;
    font-size: 25px;
    cursor: pointer;
    transition: 1s;
  }
  .hambar {
    display: block;

    transition: 3s ease-in-out;
  }
}

/* -------Restaurant------ */

.Restaurant {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 100px;
}
h1 {
  font-size: 36;
  font-weight: 600;
}
p {
  color: #737171;
  font-size: 14px;
  font-weight: 300;
  line-height: 22px;
  padding: 10px;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.row1 {
  margin-top: 5%;
  display: flex;
  justify-content: center;
  gap: 35px;
}

.Restaurant-col {
  flex-basis: 31%;
  background: #dae9e2;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.Restaurant-col:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 2);
}
@media (max-width: 700px) {
  .row {
    flex-direction: column;
  }
  .row1 {
    flex-direction: column;
  }
}

/* ----------Menu------  */
.Menu {
  width: 80%;
  margin: auto;
  text-align: center;
  padding-top: 50px;
}
.row {
  margin-top: 5%;
  display: flex;
  justify-content: space-between;
}
.Menu-col-1 {
  flex-basis: 31%;
  background: #dae9e2;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}
h3 {
  text-align: center;
  font-weight: 600;
  margin: 10px 0;
}
.Menu-col-1:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 2);
}
.Menu-col {
  flex-basis: 26%;
  border-radius: 10px;
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.Menu-col img {
  width: 100%;
  display: block;
}
.layer {
  background: transparent;
  height: 70%;
  width: 70%;
  gap: 40px;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.5s;
}

.layer h3 {
  width: 100%;
  font-weight: 500;
  color: #e4eff0af;
  font-size: 26px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  position: absolute;
  opacity: 0;
}
.layer:hover h3 {
  bottom: 49%;
  opacity: 1;
}

/* ------testimonials---- */
.testimonials {
  width: 80%;
  margin: auto;
  padding-top: 100px;
}
.Container img {
  width: 400px;
  height: 550px;
}
.Container {
  display: flex;

  flex-wrap: wrap;
  flex-basis: 50%;
}
.Container div {
  width: 450px;
  color: black;
  margin: 15px auto;
}
div h2 {
  padding-right: 10px;
}
.div :hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 2);
}
.Container {
  flex-basis: 31%;
  background: #ebf1ee;
  border-radius: 10px;
  margin-bottom: 5%;
  padding: 20px 12px;
  box-sizing: border-box;
  transition: 0.5s;
}


/* -------about----- */

.sub-header {
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0), rgba(108, 42, 42, 0)),
    url(images/abt123.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}
.Table-col img {
  width: 85%;
}
.sub-header h1 {
  margin: 100px;
}

/* ---------dining- */
.sub-header1 {
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(
      rgba(30, 4, 4, 0.059),
      rgba(106, 34, 34, 0.322)
    ),
    url(images/fish.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.sub-header1 h1 {
  margin: 100px;
}

/* ---menu- */

.sub1-header {
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(
      rgba(30, 41, 88, 0.363),
      rgba(215, 69, 69, 0.264)
    ),
    url(images/nonveg.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}
.sub1-header h1 {
  margin: 100px;
}

/* -----CONTACT- */

.header3 {
  min-height: 50vh;
  width: 100%;
  background-image: linear-gradient(rgba(4, 9, 30, 0.7), rgba(59, 15, 69, 0.7)),
    url(images/contact1.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}
.header3 h1 {
  margin: 100px;
}

/* /* ----contact us--- */

/* Contact Info Styling */
.contact-info {
  background-size: contain;
  margin-top: 70px;
  margin-left: 20px;
  margin-bottom: 30px;
  line-height: 1.6;
}

.contact-info a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info a:hover {
  color: #2d9da9; /* Sea Tales brand color */
}
.contact-item {
  margin-top: 25px;
}
.contact-info i {
  margin-right: 10px;
  color: #2d9da9;
  width: 20px;
  text-align: center;
}

.hours,
.email-text {
  display: block;
  margin-left: 30px;
  color: #666;
  font-size: 0.9em;
}

/* -------table----- */
Table {
  width: 80%;
  margin: auto;
  padding-top: 80px;
  padding-bottom: 50px;
}
.Table-col {
  flex-basis: 48%;
  padding: 30px 2px;
}
.Table-col img {
  width: 100%;
  max-width: 600px;
  height: auto;
}
.Table-col h1 {
  padding-top: 0;
}
.Table-col p {
  padding: 15px 0 25;
}
.red-btn {
  border: 1px solid #f44336;
  background: transparent;
  color: #f44336;
}
.red-btn:hover {
  color: #fff;
}
.ABOUT {
  font-family: "Helvetica Neue", sans-serif;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px;
  text-align: center;
  background: #f9f9f9;
  border-radius: 8px;
  position: relative; /* For icon positioning */
}

.ABOUT h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #222;
}

/* Down icon using Font Awesome */
.bootstrap-icons {
  margin-top: 30px;
  color: #777;
  font-size: 1.5rem;
  animation: bounce 2s infinite; /* Optional bounce effect */
}
.bootstrap-icons {
  margin: 30px auto;
  padding: 15px;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}
.icon-container {
  display: flex;
  gap: 20px; /* Uniform gap between all icons */
  justify-content: center; /* Align icons horizontally */
  margin: 30px 0; /* Outer spacing */
}

.icon {
  width: 66px;
  height: 60px;
  /* Add icon styles (background-image, color, etc.) */
}
.icon-container {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.icon {
  background: #f5a623; /* Gold (sunset) */
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
}
.bi-whatsapp {
  color: #25d366 !important; /* WhatsApp green */
}
.bi-instagram {
  background: radial-gradient(
    circle at 30% 107%,
    #fdf497 0%,
    #fdf497 5%,
    #fd5949 45%,
    #d6249f 60%,
    #285aeb 90%
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
.bi-facebook {
  color: #1877f2 !important; /* Facebook's official blue */
}
.bi-youtube {
  color: #ff0000 !important;
}
.bi-envelope {
  color: #d44638 !important; /* Gmail's official red color */
}
/* -------pakkages  */
.header1 {
  min-height: 50vh;
  width: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4");
  background-position: center;
  background-size: cover;
  position: relative;
  text-align: center;
  color: #fff;
}
/* <!-- ------popup display---- --> */
/* Floating Action Button */
.fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #4caf50;
  color: white;
  border: none;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 100;
}

.fab:hover {
  background: #45a049;
  transform: scale(1.1);
}

/* Popup Overlay */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Popup Form */
.popup-form {
  background: white;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  position: relative;
}

.popup-overlay.active .popup-form {
  transform: translateY(0);
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
}

.close-btn:hover {
  color: #333;
}

/* Form Styling */
.popup-form h2 {
  margin-bottom: 20px;
  color: #333;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 16px;
}

.form-group textarea {
  resize: vertical;
}

.submit-btn {
  background: #4caf50;
  color: white;
  border: none;
  padding: 12px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 100%;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: #45a049;
}
/* about front pagges ------- */

/* Global Styles */

.first {
  color: #333;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 70vh;
  font-family: sans-serif;
}

.hero-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.hero-overlay h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-overlay p {
  color: whitesmoke;
  font-size: 1.8rem;
  max-width: 800px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Mission Section */
.mission-section {
  padding: 80px 0;
  background: #f9f9f9;
  font-family: sans-serif;
}

.mission-section .container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.mission-content {
  flex: 1;
}

.mission-content h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 20px;
}

.mission-content p {
  margin-bottom: 15px;
  font-size: 1.1rem;
  color: #333;
}

.mission-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.mission-image:hover img {
  transform: scale(1.05);
}

/* Signature Offerings */
.signature-section {
  padding: 80px 0;
  background: white;
  font-family: sans-serif;
}

.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.section-header p {
  color: #333;
  font-size: 1.1rem;
}

.signature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.signature-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.signature-item:hover {
  transform: translateY(-10px);
}

.food-image {
  height: 250px;
  background-size: cover;
  background-position: center;
}

.food-desc {
  padding: 25px;
}

.food-desc h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin-bottom: 15px;
}

.food-desc p {
  color: #333;
  line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
  height: 60vh;
  position: relative;
}

.choose-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
}

.choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 20px;
}

.choose-overlay h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.choose-overlay p {
  color: whitesmoke;
  max-width: 800px;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

/* Multi-Level Appeal */
.multi-level {
  padding: 80px 0;
  background: #f9f9f9;
  text-align: center;
  font-family: sans-serif;
}

.multi-level h2 {
  font-size: 2.2rem;
  color: #2c3e50;
  margin-bottom: 15px;
  font-family: sans-serif;
}

.multi-level p {
  color: #666;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 50px;
  font-family: sans-serif;
}

.level-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.level-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  text-align: justify;
  font-family: sans-serif;
}

.level-card:hover {
  transform: translateY(-10px);
}

.level-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.level-card h3 {
  font-size: 1.3rem;
  color: #2c3e50;
  margin: 20px 0 10px;
  padding: 0 20px;
  font-family: sans-serif;
}

.level-card p {
  color: #333;
  padding: 0 20px 25px;
  font-size: 1rem;
  font-family: sans-serif;
}

/* Footer */
footer {
  background: #2c3e50;
  color: white;
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  font-family: sans-serif;
}


/* Responsive Design */
@media (max-width: 768px) {
  .mission-section .container {
    flex-direction: column;
  }

  .hero-overlay h1 {
    font-size: 2.2rem;
  }

  .hero-section,
  .why-choose-us {
    height: 50vh;
    font-family: sans-serif;
  }
}

@media (max-width: 480px) {
  .hero-overlay h1 {
    font-size: 1.8rem;
  }

  .hero-overlay p,
  .choose-overlay p {
    font-size: 1rem;
  }

  .signature-grid,
  .level-grid {
    grid-template-columns: 1fr;
  }
}

