

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
    list-style: none;
    font-family: "Jost", sans-serif;
}
/* 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%;
  }
}


html {
    background: #fbf9f9;
    font-family: "Poppins", sans-serif;}

body{
    position: relative;

}

p {
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.75em;
    color: #999;
    margin-bottom: 20px;
}

h1 {
    font-size: 45px;
}

h2 {
    font-size: 40px;
}

h4 {
    font-size: 27px;
}
h1,
h2,
h4 {
    font-family: 'Jost', sans-serif;
    font-weight: 600;
    line-height: 1.25em;
    margin: 0 0 20px 0;
    color: #fff;
}

/*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: 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;
  }
}


/* Hero */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
  url('image/New\ Home.png'); 
  background-size: cover; 
  background-position: center center; 
  background-repeat: no-repeat; 
  background-attachment: fixed; 
  height: 80vh; 
  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);
}

.hero-content {
    max-width: 800px;
}

.animated-text {
    font-size: 3.2rem;
    font-weight: 300;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1.5s ease-out forwards;
    color: #ffffff;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.animated-text span {
    display: block;
}

.animated-text span:nth-child(1) {
    animation-delay: 0.3s;
}

.animated-text span:nth-child(2) {
    animation-delay: 1s;
}

.animated-text span:nth-child(3) {
    animation-delay: 1.7s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

button{
    background-color: white;
    color: #ea1538;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 25px;
    transition: .4s;
}
button a{
  color: #ea1538;
}
button:hover{
    background-color:  #ea1538;
    color: white;
    border: 1px solid white;
}


/* Subtle scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scroll-indicator::before {
    content: '';
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: scrollIndicator 2s infinite ease-in-out;
}

@keyframes scrollIndicator {
    0% { transform: translateY(-10px); opacity: 0.4; }
    50% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(10px); opacity: 0.4; }
}

/* WhatsApp Chat Button */
.whatsapp-chat {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    align-items: center;
    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;
  }
  .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: 20px;
      right: 20px;
    }
  }
/* About Section */
.about-section {
  padding: 100px 5%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 60px;
  background: linear-gradient(135deg, #f0e9e6, #fff0f0);
}

.about-content {
  flex: 1 1 45%;
  max-width: 600px;
}

.About-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ea1538;
}

.about-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
}



.about-image {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.about-image img {
  width: 300;
  max-width: 700px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  transition: transform 0.5s ease;
  margin-left: 300px;
}

.about-image:hover img {
  transform: scale(1.03);
}


  /* Stats Section */
  .stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
  }

  .stat-item {
    flex: 1;
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
  }

  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(45deg, #ff6b6b, #ff8e53);
    
    -webkit-text-fill-color: transparent;
    counter-increment: stats;
  }

  .stat-label {
    font-size: 1rem;
    color: #555;
  }

  /* CTA Button */
  .about-button{
    background-color: rgb(255, 255, 255);
    color: #ea1538;
    text-decoration: none;
    border: 2px solid  rgba(0, 0, 0, 0.05);
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 25px;
    transition: .4s;
}
.about-button:hover{
    background-color:  #ea1538;
    color: white;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
}

  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .about-section {
      flex-direction: column-reverse;
      text-align: center;
    }

    .about-content {
      max-width: 100%;
    }

    .stats {
      flex-direction: column;
      gap: 20px;
    }
  }

/*Service Section*/
.services-section {
    padding: 100px 5%;
    background: linear-gradient(135deg, #fffaf8, #fff0f0);
  }

  .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 70px;
    color: #ea1538;

    
  }

  /* Grid Layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
  }

  /* Service Card */
  .service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s ease-out forwards;
  }

  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0,0,0,0.1);
  }

  .service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }

  .service-content {
    padding: 25px;
  }

  .service-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #383535;
    padding-right: 60px;
  }

  .service-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
  }

  /* Animations */
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Staggered Animation Delays */
  .service-card:nth-child(1) { animation-delay: 0.2s; }
  .service-card:nth-child(2) { animation-delay: 0.4s; }
  .service-card:nth-child(3) { animation-delay: 0.6s; }
  .service-card:nth-child(4) { animation-delay: 0.8s; }
  .service-card:nth-child(5) { animation-delay: 1s; }
  .service-card:nth-child(6) { animation-delay: 1.2s; }
  .service-card:nth-child(7) { animation-delay: 1.4s; }
  .service-card:nth-child(8) { animation-delay: 1.6s; }

  /* CTA Button */
  .cta-button {
    display: block;
    margin: 70px auto 0;
    background-color: rgb(255, 0, 0);
    color: #ffffff;
    text-decoration: none;
    border: 2px solid transparent;
    font-weight: bold;
    padding: 13px 30px;
    border-radius: 25px;
    transition: .4s;

    
  }

  .cta-button:hover {
    background-color:  #ffffff;
    color: rgb(255, 0, 0);
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(255, 107, 107, 0.4);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
      margin-bottom: 50px;
    }
  }

  /* ======= 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;
  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);
}
.flash-message {
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* 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;
  }
}
