/* style.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-image: linear-gradient(to top, rgb(199, 130, 130), rgb(237, 237, 110), rgb(122, 122, 248));
}
header {
    background: #f9fba1;
    color: #f34040;
    padding: 20px 0;
    text-align: center;
}


/* Header container with overflow hidden */
header {
  position: relative;
  overflow: hidden;
  height: 300px; /* Adjust based on your header height */
}

/* Balloon container */
.balloons-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Individual balloon styling */
.balloon {
  position: absolute;
  top: -150px;
  width: 50px;
  height: 70px;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  opacity: 0.8;
  animation: fall linear infinite;
}

/* Balloon string */
.balloon::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  background: rgba(0, 0, 0, 0.3);
}

/* Falling animation with slight swing */
@keyframes fall {
  0% {
    top: -150px;
    transform: translateX(0) rotate(0deg);
  }
  25% {
    transform: translateX(10px) rotate(5deg);
  }
  50% {
    transform: translateX(-10px) rotate(-5deg);
  }
  75% {
    transform: translateX(5px) rotate(3deg);
  }
  100% {
    top: calc(100% + 150px);
    transform: translateX(0) rotate(0deg);
  }
}

/* Multiple balloons with different colors, positions, and timings */
.balloon:nth-child(1) {
  left: 10%;
  background: linear-gradient(135deg, #ff6b6b, #ee5a52);
  animation-duration: 8s;
  animation-delay: 0s;
}

.balloon:nth-child(2) {
  left: 25%;
  background: linear-gradient(135deg, #4ecdc4, #44a3a0);
  animation-duration: 10s;
  animation-delay: 2s;
}

.balloon:nth-child(3) {
  left: 40%;
  background: linear-gradient(135deg, #ffd93d, #f7c922);
  animation-duration: 9s;
  animation-delay: 4s;
}

.balloon:nth-child(4) {
  left: 55%;
  background: linear-gradient(135deg, #a8e6cf, #87d3b4);
  animation-duration: 11s;
  animation-delay: 1s;
}

.balloon:nth-child(5) {
  left: 70%;
  background: linear-gradient(135deg, #ff8b94, #ff6f7a);
  animation-duration: 7s;
  animation-delay: 3s;
}

.balloon:nth-child(6) {
  left: 85%;
  background: linear-gradient(135deg, #b4a7d6, #9e8ec7);
  animation-duration: 10s;
  animation-delay: 5s;
}

/* Lighter balloons for depth effect */
.balloon:nth-child(odd) {
  opacity: 0.6;
  width: 40px;
  height: 56px;
}

nav ul {
    list-style: none;
    padding: 0;
}
nav ul li {
    display: inline-block;
    margin: 0 15px;  
}
.nav-link {
  color: #8f1111;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: #8f1111;
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  width: 100%;
}
nav ul li a {
    color: #8f1111;
    text-decoration-line: underline;
    font-weight: bold;
    font-size: 1.6rem;
}
section {
    width: 70%;
    margin: 20px auto;
    padding: 20px;
    background: #f8f2f2ec;
    border-radius: 8px;
}
h1 {
    font-size: 4.5rem;
    text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.5);
    opacity: 0;
    animation: fadeIn 3s infinite;
    }

@keyframes fadeIn {
  from {
    opacity: 0; /* Animation starts with full transparency */
  }
  to {
    opacity: 1; /* Animation ends with full opacity */
  }
}    

h2 {
    color:#7445ed;
    text-decoration-line: underline;
    font-size: 1.8rem;
}
footer {
    background: #cae49e;
    text-align: center;
    padding: 15px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}
form label {
    display: block;
    margin: 10px 0 5px;
}
form input, form textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
form button {
    background: #0B6354;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
}
.style-contact{
  background-color: rgb(178, 178, 253);
}
.space{
  margin-left: 20px;
  color: rgba(0, 0, 0, 0.733);
}
#buttonmain{
  margin-bottom: 10px;
  margin-left: 20px;
}
#name, #mobile{
  width: 180px;
  margin-left: 20px;
}
#message{
  width: 220px;
  margin-left: 20px;
}
.contactInfo {
    font-weight: bold;
    font-size: 1.3rem;
    color: rgba(103, 41, 15, 0.849);
    font-family: monospace;
}
.btn {
    font-size: 1.5rem;
    font-weight: bold;
}

.listSize, label, p{
    font-weight: bold;
    font-size: 1.1rem;
    color: rgb(93, 93, 93);
}

.btn-primary:link, .btn-primary:visited, .btn-primary:hover, .btn-primary:active {
    border: 2px solid black;
    box-shadow: 0px 3px 6px grey;
}

@media (max-width: 700px) {
    section {
        max-width: 95vw;
    }
    nav ul li {
        display: block;
        margin: 10px 0;
    }
}

.room-checker {
      background: rgba(255,255,255,0.15);
      padding: 2rem;
      background-color: #b5aec7;
      border-radius: 16px;
      backdrop-filter: blur(15px);
      border: 1px solid rgba(255,255,255,0.25);
    }

    .room-checker {
  width: 70%; 
  margin: auto;
}


    .room-checker label {
      display: block;
      margin-bottom: 0.8rem;
      font-size: 1.1rem;
      font-weight: 600;
    }

    #roomType {
      width: 100%;
      padding: 0.9rem 1.2rem;
      font-size: 1rem;
      border: 2px solid rgba(255,255,255,0.3);
      border-radius: 10px;
      background: rgba(255,255,255,0.9);
      color: #333;
      margin-bottom: 1rem;
      transition: all 0.3s ease;
    }

    #roomType:focus {
      outline: none;
      border-color: #fff;
      box-shadow: 0 0 0 3px rgba(255,255,255,0.3);
      transform: scale(1.02);
    }

    #checkPriceBtn {
      width: 100%;
      padding: 1rem 2rem;
      background: linear-gradient(45deg, #ff6b6b, #feca57);
      color: white;
      border: none;
      border-radius: 12px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s ease;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    #checkPriceBtn:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(254,202,87,0.4);
    }

    #checkPriceBtn:active {
      transform: translateY(-1px);
    }

    #priceResult {
      margin-top: 1.5rem;
      padding: 1.2rem;
      background: rgba(255, 255, 255, 0.966);
      border-radius: 12px;
      text-align: center;
      font-size: 1.2rem;
      font-weight: 600;
      min-height: 20px;
    }


/* Gallery Styles */
.gallery {
    background-color: #fff;
    padding: 40px 20px;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 30px;
}

.gallery-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.image-wrapper {
    flex: 1;
    max-width: 700px;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: block;
}

.image-caption {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1em;
    color: #555;
    font-weight: 500;
}

.arrow-btn {
    background-color: #6b5ce7;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2em;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.arrow-btn:hover {
    background-color: #5a4bc4;
    transform: scale(1.1);
}

.arrow-btn:active {
    transform: scale(0.95);
}

/* Dots Navigation */
.dots-container {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background-color: #6b5ce7;
    transform: scale(1.3);
}

.dot:hover {
    background-color: #9b8ce7;
}

/* Responsive Design */
@media (max-width: 768px) {
    .banner h1 {
        font-size: 2em;
    }

    h2 {
        font-size: 1.5em;
    }

    .image-wrapper img {
        height: 300px;
    }

    .arrow-btn {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .gallery-container {
        gap: 10px;
    }
}
