 /* 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;
}


/*Header Section*/
.navbar {
  position: sticky;
  top: 0;
  background: linear-gradient(90deg, #fffaf8, #fff0f0);
  padding: 15px 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: 500;
  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;
} 
/* 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: scale(1.05);
}

.whatsapp-icon {
  font-size: 24px;
}

.chat-text {
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  color: white;
}

/* 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: 20px;
    right: 20px;
  }
}

/*main Section*/
.Contact-section{
  margin-top: -59px;
} 
.Contact-bg {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('image/New\ Contact.png'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  height: 70vh; 
  color: white; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  text-align: center;
  padding: 0 10%; 
  overflow: hidden; 
  border-radius: 0 0 12px 12px; 
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
  flex-direction: column; 
  justify-content: center; 
  position: relative;
}
.Contact-bg h3{
  font-size: 1.3rem;
  font-weight: 400;
}
.Contact-bg h2{
  font-size: 3rem;
  text-transform: uppercase;
  padding: 0.4rem 0;
  letter-spacing: 4px;
}
.line div{
  margin: 0 0.2rem;
}
.line div:nth-child(1),
.line div:nth-child(3){
  height: 3px;
  width: 70px;
  background: #f7327a;
  border-radius: 5px;
}
.line{
  display: flex;
  align-items: center;
}
.line div:nth-child(2){
  width: 10px;
  height: 10px;
  background: #f7327a;
  border-radius: 50%;
}
.text{
  font-weight: 300;
  opacity: 0.9;
}
.Contact-bg .text{
  margin: 1.6rem 0;
}
.Contact-body{
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 1rem;
}
.Contact-info{
  margin: 2rem 0;
  text-align: center;
  padding: 2rem 0;
}
.Contact-info span{
  display: block;
}
.Contact-info div{
  margin: 0.8rem 0;
  padding: 1rem;
}
.Contact-info span .fas{
  font-size: 2rem;
  padding-bottom: 0.9rem;
  color: #f7327a;
}
.Contact-info div span:nth-child(2){
  font-weight: 500;
  font-size: 1.1rem;
}
.Contact-info .text{
  padding-top: 0.4rem;
}
.Contact-form{
  padding: 2rem 0;
  border-top: 1px solid #333333;
}
.Contact-form form{
  padding-bottom: 1rem;
}
.form-control{
  width: 100%;
  border: 1.5px solid #333333;
  border-radius: 5px;
  padding: 0.7rem;
  margin: 0.6rem 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  outline: 0;
}
.form-control:focus{
  box-shadow: 0 0 6px -3px rgba(48, 48, 48, 1);
}
.Contact-form form div{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 0.6rem;
}
.send-btn{
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  text-transform: uppercase;
  color: #fff;
  background: #f7327a;
  border: none;
  border-radius: 5px;
  padding: 0.7rem 1.5rem;
  cursor: pointer;
  transition: all 0.4s ease;
}
.send-btn:hover{
  opacity: 0.8;
}
.Contact-form > div img{
  width: 85%;
}

@media screen and (min-width: 768px){
  .Contact-bg .text{
      width: 70%;
      margin-left: auto;
      margin-right: auto;
  }
  .Contact-info{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (min-width: 992px){
  .Contact-bg .text{
      width: 50%;
  }
  .Contact-form{
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      align-items: center;
  }
}

@media screen and (min-width: 1200px){
  .contact-info{
      grid-template-columns: repeat(4, 1fr);
  }
}
/*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;
}

  /* ======= 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 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;
  }
}
