 /* Base Styles */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fffaf8;
  color: #333;
  line-height: 1.6;
  scroll-behavior: smooth;
}
/* Base Styles */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* Phones */
@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

/* Tablets */
@media (min-width: 601px) and (max-width: 1024px) {
  .gallery-item {
    flex: 1 1 48%;
  }
}

/* Desktops */
@media (min-width: 1025px) {
  .gallery-item {
    flex: 1 1 31%;
  }
}

/*Header Section*/
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #fffaf8, #fff0f0);
  padding: 10px 5%;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

/* Logo */
.logo img{
  width: 100px;
}
.logo span{
  color: rgb(255, 0, 0);
}
.logo-text{
  margin-left: -8px;
}
.logo:hover {
  transform: rotate(2deg) scale(1.05);
}

/* Navigation Links */
.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  position: relative;
  font-size: 0.95rem;
  font-weight: 400;
  color: #333;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Login Link */
.login-link {
  font-size: 0.9rem;
  color: #555;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.login-link:hover {
  color: #ff6b6b;
}


/* Staggered Animation Delays */
.nav-link:nth-child(1) { animation-delay: 0.2s; }
.nav-link:nth-child(2) { animation-delay: 0.3s; }
.nav-link:nth-child(3) { animation-delay: 0.4s; }
.nav-link:nth-child(4) { animation-delay: 0.5s; }
.nav-link:nth-child(5) { animation-delay: 0.6s; }
.nav-link:nth-child(6) { animation-delay: 0.7s; }

/* Hover Effect */
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, #ff6b6b, #ff8e53);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-link:hover::after {
  transform: scaleX(1);
}

/* Gradient Buttons */
.btn-book{
  padding: 10px 20px;
  border: none;
  border-radius: 25px;
  font-size: 1.0rem;
  font-weight: 600;
  cursor: pointer;
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  transition: all 0.3s ease;
}

.btn-book:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: #333;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 5px 10px rgba(0,0,0,0.05);
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .menu-toggle {
    display: flex;
  }

  .btn-book {
    font-size: 0.85rem;
    padding: 8px 16px;
  }
}
.btn-signin{
  background-color: white;
  color: #ea1538;
  text-decoration: none;
  border: 2px solid transparent;
  font-weight: bold;
  padding: 13px 30px;
  border-radius: 25px;
  transition: .4s;
}
.btn-signin a{
color: #ea1538;
}
.btn-signin:hover{
  background-color:  #ea1538;
  color: white;
  border: 1px solid white;
} 
 /* Hero Section */
.hero {
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
              url('https://images.unsplash.com/photo-1515525428862-9f0a2c7dd912?ixlib=rb-4.0.3&auto=format&fit=crop&w=1950&q=80') no-repeat center center/cover;
  color: white;
  background-image: url(image/Booking\ Img.png);
  background-attachment: fixed;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  justify-content: center;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  color: rgb(199, 199, 199);
  opacity: 0;
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.5s;
}
/* WhatsApp Chat Button */
.whatsapp-chat {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  display: flex;
  align-items: center;
  text-decoration: none; /* removes underline */
  gap: 10px;
  background: #25D366; /* WhatsApp Green */
  color: white;
  padding: 12px 20px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

.whatsapp-chat:hover {
  background: #128C7E;
  transform: translateY(-5px) scale(1.05);
}
.whatsapp-chat .chat-text {
  text-decoration: none;
}
.whatsapp-icon {
  font-size: 24px;
}

.chat-text {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  color: white;
}
.button a {
  text-decoration: none;
  color: white; /* or your desired color */
}


/* Tooltip */
.whatsapp-chat::before {
  content: "Chat with us!";
  position: absolute;
  top: -40px;
  right: 0;
  background: #333;
  color: #fff;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.whatsapp-chat:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Animation */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 480px) {
  .chat-text {
    display: none;
  }

  .whatsapp-chat {
    padding: 12px;
    bottom: 15px;
    right: 15px;
  }
}
/*Booking section*/
 /* Global Styles */
 * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f4f4f4;
  overflow-x: hidden;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #ff6700;
  margin-bottom: 2rem;
  text-align: center;
}
p {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #555;
}

/* Form Styles */
.booking-form {
  background-color: white;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}
.form-control:focus {
  outline: none;
  border-color: #ff6700;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}
textarea.form-control {
  resize: vertical;
  height: 150px;
}
.btn {
  display: inline-block;
  padding: 12px 25px;
  background-color: #ff6700;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn:hover {
  background-color: #e55d00;
}
.btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
  opacity: 0.7;
}

/* Select2 Styles (Simplified) */
.select2-container {
  width: 100% !important;
  margin-bottom: 0.5rem;
}
.select2-selection {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 8px;
  font-size: 1rem;
  height: auto;
  display: flex;
  align-items: center;
  transition: border-color 0.3s ease;
}
.select2-selection:focus, .select2-selection.select2-selection--focus {
  outline: none;
  border-color: #ff6700;
  box-shadow: 0 0 0 3px rgba(255, 103, 0, 0.1);
}
.select2-selection__rendered {
  line-height: 1.5;
  color: #333;
}
.select2-selection__arrow {
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #666 transparent transparent transparent;
  margin-left: 10px;
}
.select2-dropdown {
  background-color: white;
  border: 1px solid #ddd;
  border-radius: 5px;
  margin-top: -2px;
  overflow: auto;
  max-height: 200px;
  z-index: 1000;
  position: absolute;
  left: 0;
  right: auto;
}
.select2-results__options {
  list-style: none;
  padding: 0;
  margin: 0;
}
.select2-results__option {
  padding: 10px;
  font-size: 1rem;
  color: #333;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  white-space: nowrap;
}
.select2-results__option:hover,
.select2-results__option.select2-results__option--highlighted {
  background-color: #ff6700;
  color: white;
}
.select2-results__option.select2-results__option--selected {
  background-color: #e55d00;
  color: white;
}

/* Error Message Styles */
.error-message {
  color: red;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  display: none;
}
.error-message.show {
  display: block;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .booking-form {
      padding: 30px;
  }
  h2 {
      font-size: 2rem;
  }
  .form-group label {
      font-size: 1rem;
  }
  .form-control, .select2-selection {
      font-size: 0.9rem;
      padding: 10px;
  }
  .btn {
      font-size: 1rem;
      padding: 10px 20px;
  }
}
/* ======= MOBILE FIRST BASE STYLES ======= */
body, html {
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

/* ======= COMMON SECTION PADDING ======= */
section {
  padding: 60px 0;
}

/* ======= NAVBAR RESPONSIVE FIX ======= */
@media (max-width: 768px) {
  .nav-links {
    flex-direction: column;
    background-color: #fffaf8;
    width: 100%;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-link {
    padding: 10px 0;
  }
}

/* ======= HERO SECTION ======= */
@media (max-width: 768px) {
  .hero {
    height: 70vh;
    padding: 0 5%;
    background-attachment: scroll;
  }

  .animated-text {
    font-size: 2rem;
  }
}

/* ======= ABOUT SECTION ======= */
@media (max-width: 768px) {
  .about-section {
    flex-direction: column;
    text-align: center;
  }

  .about-image {
    margin-left: 0;
    justify-content: center;
  }

  .about-image img {
    width: 90%;
    margin: 0 auto;
  }

  .about-content {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    align-items: center;
  }
}

/* ======= GALLERY SECTION ======= */
@media (max-width: 600px) {
  .gallery-item {
    flex: 1 1 100%;
  }
}

@media (min-width: 601px) and (max-width: 1024px) {
  .gallery-item {
    flex: 1 1 48%;
  }
}

@media (min-width: 1025px) {
  .gallery-item {
    flex: 1 1 31%;
  }
}

/* ======= SERVICE SECTION ======= */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-title {
    font-size: 1rem;
  }

  .service-description {
    font-size: 0.9rem;
  }
}

/* ======= WHATSAPP BUTTON ======= */
@media (max-width: 480px) {
  .whatsapp-chat {
    right: 20px;
    bottom: 20px;
    padding: 10px;
  }

  .chat-text {
    display: none;
  }
}
/*Footer Section*/
.footer {
  background: linear-gradient(135deg, #e2dad6, #fae4e4);
  padding: 80px 5% 40px;
  color: #333;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

/* Footer Columns */
.footer-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-column h2{
  color: #ff0000;
  font-size: 35px;
}
span{
  color: rgb(255, 0, 0);
}
.footer-logo{
margin-top: -80px;
}
.footer-logo img{
width: 200px;
}
.footer-logo-text{
font-size: 30px;
}
.footer-text {
  font-size: 0.95rem;
  line-height: 1.6;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

/* Social Media Links */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 10px;
  
}

.social-icons a {
  width: 40px;
  height: 40px;
  background: white;
  text-decoration: none; /* removes underline */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-icons a:hover {
  background: linear-gradient(45deg, #ff6b6b, #ff8e53);
  color: white;
  transform: translateY(-5px);
}

/* Contact Info */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-info a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.contact-info a:hover {
  color: #ff6b6b;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.newsletter-form input[type="email"] {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  width: 100%;
}

.newsletter-form button {
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;

  display: block;

  background-color: rgb(255, 255, 255);
  color: #ff1919;
  text-decoration: none;
  transition: .4s;
  
}

.newsletter-form button:hover {
  background-color:  #ff2a2a;
  color: rgb(255, 255, 255);
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

/* CTA Text */
.cta-subscribe {
  font-weight: 600;
  font-size: 1rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

/* Footer Bottom */
.footer-bottom {
  margin-top: 60px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  font-size: 0.85rem;
  color: #666;
}

/* Animations */
@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-column:nth-child(1) {
    order: -1;
  }
}



/* Error messages */
.error-message {
  display: none;
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}
.error-message.show {
  display: block;
}

/* Optional: Customize toast appearance */
.toast {
  max-width: 350px;
}
.text-bg-success {
  background-color: #28a745 !important;
  color: white !important;
}
.text-bg-danger {
  background-color: #dc3545 !important;
  color: white !important;
}
