* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  
}
/* FIX unwanted right-side extra space */
html, body {
    width: 100%;
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

/* ===== General Styles ===== */
body {
  font-family: Arial, sans-serif;  
  line-height: 1.6;
  background: url('./home\ 2\ bc\ img.jpeg')no-repeat center center / cover fixed;
}

span{
  color:#ffcc00;
}

.hamburger{
  display: none;
}

.navBar{
  display:inline-block;
}

.navBar{
  /* background-color: rgb(47, 101, 87); */
  display: flex;
  flex-direction: row;
  gap: 100px;
  margin-top: 20px;
  background: linear-gradient(135deg,rgb(45, 105, 95),rgb(37, 87, 75)); 
  position: sticky;
  top: 0;
  z-index: 9999;
}

.logo{
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-left: 90px;
  align-items: center;
}

.logo img {
  height: 80px;
  width: 80px;
}

.logo h3{
  color:#ffcc00;
  font-size: 30px;
}

.navLinks{
  display: flex;
  flex-direction: row;
  gap: 80px;
}

.linkLeft{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkRight{
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.linkLeft, .linkRight {
  display: flex;
  align-items: center;

  list-style: none;
  padding: 0;
  margin: 0;
}

.linkLeft a, .linkRight a {
  text-decoration: none;
  color:white;
  font-weight:bold;
}

.linkLeft a:hover {
  color:#ffcc00; /* Highlight active link */
}

/* Search Input Styling */
.linkRight input[type="search"] {
  padding: 5px 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  height: 40px;
}

/* SignIn Button Styling */
.linkRight button {
  padding: 6px 15px;
  border: none;
  background-color: #ffcc00;
  color:black;
  /* border-radius: 5px; */
  cursor: pointer;
  font-weight: bold;
  height: 40px;
  width: 130px;
  border-bottom-right-radius: 40px;
}

.linkRight button:hover {
  background-color:rgb(5, 67, 52);
  /* background-color:rgb(4, 68, 54); */
  color: white;
}

/* Hamburger Button */
.hamburger {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
  color: white;
}

/* Mobile Styles */
@media (max-width: 450px) {
  .hamburger {
    display: block;
    font-size: 40px;
  }

  .navBar{
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px;

    position: static;
    background-color:transparent;
  }
  .navBar.active{
    display:flex;
    flex-direction: column;
    gap: 20px;
  }
  .navBar .logo{
    margin-left: 2px;
  }
  .navLinks{
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
    margin-top: 40px;
  }
  .linkLeft{
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .linkLeft a:hover{
    color: #ffcc00;
  }
  .linkRight{
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  
  .linkLeft, .linkRight {
    flex-direction: column;
    gap: 10px;
  }

  .linkRight input[type="search"] {
    width: 70%;
  }

  .linkRight button:hover {
  background-color:rgb(2, 51, 40);
  color: white;
  }

  .linkRight button {
    width:27%;
  }

  .logo{
    margin-left: 140px;
  }
}














   /* Booking Hero Section - Advanced Stylish Version */
.booking-hero {
  /* background: linear-gradient(135deg, #ff6b35, #ff8b5c); */
  background: rgb(55, 232, 187);
  padding: 120px 20px;
  color:rgb(30, 78, 66);
  position: relative;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 75%, 0 100%);

  max-width: 800px;
  margin-left: 350px;
  margin-top: 100px;
}

.hero-text h1,
.hero-text p,
.hero-btn,
.hero-image img {
  animation: flipIn 1s ease forwards;
}

/* Staggered delay for smooth entrance */
.hero-text h1 { 
  animation-delay: 0.2s; 
  /* font-family: cursive; */
}
.hero-text p { 
  animation-delay: 0.4s; 
  font-style: italic;
}
.hero-btn { animation-delay: 0.6s; }
.hero-image img { animation-delay: 0.8s; }


@keyframes flipIn {
  0% {
    transform: rotateY(90deg);
    opacity: 0;
  }
  60% {
    transform: rotateY(-10deg);
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg);
  }
}


.booking-hero::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 400px;
  background:rgb(57, 199, 161);
  border-radius: 50%;
  top: -50px;
  right: -100px;
  z-index: 1;
  animation: float 1s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(20px) rotate(45deg); }
}

.hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-left:100px;

  position: relative;
  z-index: 2;
  gap: 50px;
  flex-wrap: wrap;
}

.hero-text h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.hero-text p {
  font-size: 1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 500px;
}

.hero-btn {
  display: inline-block;
  padding: 18px 45px;
  font-size: 1.1rem;
  font-weight: 600;
  color:#555;
  background:#ffcc00;
  /* border-radius: 50px; */
  border-bottom-right-radius: 60px;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
  transition: all 0.4s ease;
}

.hero-btn:hover {
  background:rgb(1, 48, 36);
  color: white;
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 12px 30px rgba(0,0,0,0.3);
}

.hero-image img {
  max-width: 300px;
  border-radius: 30px;
  /* box-shadow: 0 20px 50px rgba(0,0,0,0.3); */
  background-color: rgb(47, 101, 87);
  transition: transform 0.5s ease;
}

.hero-image img:hover {
  transform: scale(1.05) rotate(-1deg);
}

/* Responsive */
@media (max-width: 450px) {
  .booking-hero {
    padding: 60px 15px;
    clip-path: none; /* Remove angled background for small screens */
    text-align: center;
    width: 400px;
    margin-left: 2px;
    margin-top: 150px;
  }

  .hero-container {
    flex-direction: column; /* Stack text above image */
    margin-left: 0;
    gap: 30px;
  }

  .hero-text h1 {
    font-size: 1.8rem;  /* Reduce font size */
    line-height: 1.3;
    width: 300px;
  }

  .hero-text p {
    font-size: 1rem;
    max-width: 100%;
    margin: 0 auto 20px;
    width: 300px;
  }

  .hero-btn {
    padding: 14px 30px;
    font-size: 1rem;
    border-bottom-right-radius: 40px;
  }

  .hero-image img {
    max-width: 220px;
    border-radius: 20px;
  }
}


   
   
   
   
   
   
   
   
   
   
   
   
/* ===== Booking Section Styles ===== */
.booking-section {
  padding: 80px 20px;
  /* background: linear-gradient(135deg, #2563eb, #9333ea); */
  color:#ffcc00;
  font-family: "Segoe UI", Arial, sans-serif;
  margin-top: 150px;
}

.booking-wrapper {
  background-color:rgb(30, 78, 66);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.booking-content{
  padding: 40px;
}

/* Left Side Content */
.booking-content h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  /* font-family: garamond; */
}

.booking-content p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.6;
  color: #f3f4f6;
}

.booking-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.booking-content ul li {
  margin: 12px 0;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.booking-content ul li::before {
  content: "✔";
  color: #facc15;
  font-weight: bold;
  margin-right: 10px;
  /* font-style: italic; */
}

/* Booking Form */
.booking-form {
  /* background:rgb(55, 232, 187); */
  background-color: #ffcc00;
  color: #111;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.booking-form h3 {
  font-size:2rem;
  margin-bottom: 20px;
  color:rgb(1, 38, 29);
  /* font-family: cursive; */
  margin-left: 170px;
}

.booking-form .form-group {
  margin-bottom: 18px;
}

.form-group input{
  /* background-color:rgb(30, 78, 66); */
}

.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.booking-form textarea {
  resize: none;
  min-height: 90px;
}

.booking-form button {
  display: inline-block;
  /* background: linear-gradient(90deg, #2563eb, #9333ea); */
  background:rgb(1, 38, 29);
  color: #fff;
  padding: 12px 25px;
  border: none;
  /* border-radius: 8px; */
  border-bottom-right-radius: 40px;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.booking-form button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.25);
}

/* Responsive */
@media (max-width: 900px) {
  .booking-wrapper {
    grid-template-columns: 1fr;
  }

  .booking-form h3{
    margin-left: 2px;
  }
}








/* ================= Advanced Form Styling ================= */
.advanced-form {
  background: linear-gradient(135deg, #1c4438, #0a1f1c);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  max-width: 600px;
  margin: 80px auto;
  color: #fff;
  animation: fadeInUp 1s ease-out;
}

.advanced-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Floating Label Input Fields */
.advanced-form .form-group {
  position: relative;
}

.advanced-form input,
.advanced-form select {
  width: 100%;
  padding: 14px 12px;
  border: 1px solid #444;
  border-radius: 8px;
  
  /* background: rgba(255,255,255,0.05); */
  /* color:#ffcc00; */
  font-size: 1rem;
  transition: all 0.3s ease;
}

.advanced-form input:focus,
.advanced-form select:focus {
  border-color: #ffcc00;
  box-shadow: 0 0 10px rgba(255,204,0,0.5);
  outline: none;
}

.advanced-form label {
  position: absolute;
  top: 50%;
  left: 12px;
  transform: translateY(-50%);
  /* background: #1c4438; */
  padding: 0 6px;
  font-size: 0.9rem;
  color: #aaa;
  pointer-events: none;
  transition: all 0.3s ease;
}

/* Floating effect when typing */
.advanced-form input:focus + label,
.advanced-form input:not(:placeholder-shown) + label,
.advanced-form select:focus + label,
.advanced-form select:valid + label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  color: #ffcc00;
}

/* Custom Radio Buttons */
.advanced-form .radio-group {
  display: flex;
  flex-direction: row; /* side by side */
  gap: 20px;
  align-items: center;
  margin-top: 10px;
  padding: 10px 0;
}

.advanced-form .radio-group span {
  font-weight: 600;
  margin-right: 15px;
  color: #ffcc00;
}

.advanced-form .radio-group label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.95rem;
  color: #fff;
  position: relative;
}

.advanced-form .radio-group input[type="radio"] {
  display: none;
}

.advanced-form .radio-group .custom-radio {
  width: 18px;
  height: 18px;
  border: 2px solid #ffcc00;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
}

.advanced-form .radio-group input[type="radio"]:checked + .custom-radio {
  background: #ffcc00;
  box-shadow: 0 0 8px rgba(255,204,0,0.6);
}

/* File Upload */
.advanced-form input[type="file"] {
  background: transparent;
  border: none;
  color: #ccc;
}

/* Submit Button */
.advanced-form .btn-submit {
  background: #ffcc00;
  color: #333;
  font-weight: 600;
  padding: 14px;
  border: none;
  /* border-radius: 50px; */
  border-bottom-right-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 200px;
}

.advanced-form .btn-submit:hover {
  background: #1c4438;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.4);
}

/* Entry Animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ================= Responsive (≤450px) ================= */
@media (max-width: 450px) {
  .advanced-form {
    padding: 25px 20px;
    margin: 40px 15px;
  }

  .advanced-form input,
  .advanced-form select {
    font-size: 0.9rem;
    padding: 12px 10px;
  }

  .advanced-form label {
    font-size: 0.8rem;
  }

  .advanced-form .btn-submit {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    /* border-radius: 40px; */
    border-bottom-right-radius: 40px;
  }

  .advanced-form .radio-group {
    flex-direction: column;
  }
}


