:root {
  --primary-color:#03b4c7;
}

* {
  font-family: "Roboto", sans-serif;
  box-sizing: border-box;
  margin: 0;
}

/* Global Link Styles */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #000;
  opacity: 1;
}

/* Keep white links in white text areas */
.text-white a,
.banner-cta a,
.header a,
.header-items li a,
.footer-main a,
.testimonial-banner a {
  color: white;
}

.text-white a:hover,
.banner-cta a:hover,
.header a:hover,
.header-items li a:hover,
.footer-main a:hover,
.testimonial-banner a:hover {
  color: white;
  opacity: 0.9;
}

html, body {
  height: 100%;
  margin: 0;
}

.page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.main-content {
  flex: 1; /* pushes footer to bottom */
}

.heading {
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
}

.sub-heading1 {
  font-size: 2.5rem;
  font-weight: bold;
  text-align: center;
}

.sub-heading2 {
  font-size: 1.75rem;
  font-weight: 300;
  text-align: center;
}

.extra-heading {
  font-size: 2.25rem;
  font-weight: 300;
  text-align: center;
}

.section_container{
  margin-bottom: 100px;
}

.blue-text {
  color: var(--primary-color);
}

.hero-logo {
  position: absolute;
  top: 175px;
  left: 10%;
  z-index: 10;
  max-width: 175px;
}

.slider-image {
  height: 100vh;
}

.banner-bg {
  background-image: url("../../assets/images/banner.jpg?v=2");
  background-size: cover;
  background-position: center;
  min-height: 200px;
}

.banner-cta {
  background-color: var(--primary-color);
}

.offer-text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5), 0 0 10px rgba(0, 0, 0, 0.3);
}

.feature-card img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.feature-card p {
  background-color: rgb(13 202 240 / 5%);
  padding: 30px;
  height: 250px;
  margin: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

.testimonial-banner {
  background-color: #5ad7f1b2;
}

/* Room Cards Styles */
.room-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 25px rgba(3, 180, 199, 0.2);
}

.room-image-wrapper {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.room-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover .room-image {
  transform: scale(1.1);
}

.room-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(1, 17, 31, 0.9), transparent);
  padding: 30px 20px 20px;
  transform: translateY(0);
  transition: opacity 0.3s ease;
}

.room-title {
  color: white;
  font-size: 2.0rem;
  font-weight: 600;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.room-details {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.room-beds {
  color: var(--primary-color);
  font-size: 1.125rem;
  font-weight: 500;
  display: flex;
  align-items: center;
}

.room-beds i {
  font-size: 1.25rem;
}

.room-description {
  color: #555;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

@media (max-width: 992px) {
  .heading {
    font-size: 2.5rem;
  }

  .sub-heading1 {
    font-size: 1.75rem;
  }

  .hero-logo {
    max-width: 125px;
  }

  .feature-card-text {
    height: auto;
  }

  .room-image-wrapper {
    height: 250px;
  }

  .room-title {
    font-size: 1.5rem;
  }

  .room-details {
    padding: 20px;
  }
}

/* Room Category Slider Styles - Mobile First */
.room-category-section {
  margin-bottom: 60px;
}

.room-slider-wrapper {
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  background: white;
}

.room-slider-wrapper .carousel {
  width: 100%;
}

.room-slider-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.room-category-description {
  padding: 0 15px;
}

.room-category-description p {
  color: #555;
  line-height: 1.6;
  margin: 0;
  font-size: 0.95rem;
}

/* Carousel Controls Styling */
.room-slider-wrapper .carousel-control-prev,
.room-slider-wrapper .carousel-control-next {
  width: 40px;
  height: 40px;
  background-color: rgba(3, 180, 199, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.room-slider-wrapper .carousel-control-prev {
  left: 10px;
}

.room-slider-wrapper .carousel-control-next {
  right: 10px;
}

.room-slider-wrapper .carousel-control-prev:hover,
.room-slider-wrapper .carousel-control-next:hover {
  opacity: 1;
  background-color: var(--primary-color);
}

.room-slider-wrapper .carousel-control-prev-icon,
.room-slider-wrapper .carousel-control-next-icon {
  width: 20px;
  height: 20px;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .room-slider-image {
    height: 400px;
  }

  .room-slider-wrapper .carousel-control-prev,
  .room-slider-wrapper .carousel-control-next {
    width: 50px;
    height: 50px;
  }

  .room-slider-wrapper .carousel-control-prev {
    left: 20px;
  }

  .room-slider-wrapper .carousel-control-next {
    right: 20px;
  }

  .room-slider-wrapper .carousel-control-prev-icon,
  .room-slider-wrapper .carousel-control-next-icon {
    width: 24px;
    height: 24px;
  }

  .room-category-description {
    padding: 0 30px;
  }

  .room-category-description p {
    font-size: 1rem;
  }
}

@media (min-width: 992px) {
  .room-slider-image {
    height: 500px;
  }

  .room-category-section {
    margin-bottom: 80px;
  }
}

/* Reservation Form Styles */
.reservation-form {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.reservation-form h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(3, 180, 199, 0.2);
}

.reservation-form .form-label {
  font-weight: 500;
  color: #333;
  margin-bottom: 8px;
}

.reservation-form .form-control,
.reservation-form .form-select {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 15px;
  font-size: 1rem;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.reservation-form .form-control:focus,
.reservation-form .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(3, 180, 199, 0.25);
  outline: 0;
}

.reservation-form textarea.form-control {
  resize: vertical;
}

@media (max-width: 768px) {
  .reservation-form {
    padding: 25px 20px;
  }

  .reservation-form h3 {
    font-size: 1.25rem;
  }
}

/* Gallery Styles */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  aspect-ratio: 1;
  min-height: 280px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: #f0f0f0;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(3, 180, 199, 0.3);
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
  background-color: #f0f0f0;
}

.gallery-item:hover .gallery-image {
  transform: scale(1.1);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(3, 180, 199, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay i {
  font-size: 3rem;
  color: white;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  animation: fadeIn 0.3s ease;
}

.lightbox.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
  z-index: 10000;
}

.lightbox-close:hover {
  color: var(--primary-color);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  padding: 20px;
  transition: color 0.3s ease;
  user-select: none;
  z-index: 10000;
}

.lightbox-prev {
  left: 30px;
}

.lightbox-next {
  right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--primary-color);
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
  }

  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 2rem;
  }

  .lightbox-prev,
  .lightbox-next {
    font-size: 2rem;
    padding: 10px;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }

  .gallery-overlay i {
    font-size: 2rem;
  }
}

/* Treatment Cards Styles */
.treatment-card {
  background: white;
  border-radius: 12px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-top: 4px solid var(--primary-color);
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(3, 180, 199, 0.3);
}

.treatment-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 15px;
  flex: 1;
}

.treatment-name {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin: 0;
  line-height: 1.4;
  flex: 1;
}

.treatment-duration {
  font-size: 0.9rem;
  color: var(--primary-color);
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 12px;
  background-color: rgba(3, 180, 199, 0.1);
  border-radius: 20px;
}

.treatment-price {
  font-size: 1.75rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
}

@media (max-width: 768px) {
  .treatment-name {
    font-size: 1.1rem;
  }

  .treatment-price {
    font-size: 1.5rem;
  }

  .treatment-duration {
    font-size: 0.8rem;
    padding: 3px 10px;
  }
}

/* Spa Feature Cards */
.spa-feature-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
}

.spa-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(3, 180, 199, 0.3);
}

.spa-feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #5ad7f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2.5rem;
}

.spa-feature-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.spa-feature-text {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Spa Booking Card */
.spa-booking-card {
  background: linear-gradient(135deg, rgba(3, 180, 199, 0.05), rgba(90, 215, 241, 0.05));
  border-radius: 12px;
  padding: 40px;
  border: 2px solid var(--primary-color);
  text-align: center;
}

.spa-booking-card h3 {
  font-size: 2rem;
  font-weight: 600;
  color: #333;
}

.spa-booking-card p {
  color: #555;
  line-height: 1.6;
}

@media (max-width: 768px) {
  .spa-feature-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .spa-feature-title {
    font-size: 1.25rem;
  }

  .spa-booking-card {
    padding: 30px 20px;
  }

  .spa-booking-card h3 {
    font-size: 1.5rem;
  }
}

/* Facility Cards */
.facility-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  height: 100%;
  border-top: 4px solid var(--primary-color);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(3, 180, 199, 0.3);
}

.facility-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #5ad7f1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 2.5rem;
}

.facility-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.facility-description {
  color: #555;
  line-height: 1.6;
  margin: 0;
}

/* Amenity List Cards */
.amenity-list-card {
  background: white;
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  height: 100%;
  border-left: 4px solid var(--primary-color);
}

.amenity-category {
  font-size: 1.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(3, 180, 199, 0.2);
}

.amenity-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenity-list li {
  padding: 10px 0;
  color: #555;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.amenity-list li i {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.badge-text {
  font-size: 0.85rem;
  color: #888;
  font-style: italic;
  margin-left: 5px;
}

@media (max-width: 768px) {
  .facility-icon {
    width: 60px;
    height: 60px;
    font-size: 2rem;
  }

  .facility-title {
    font-size: 1.25rem;
  }

  .amenity-category {
    font-size: 1.25rem;
  }

  .amenity-list-card {
    padding: 20px;
  }
}

/* Menu Category Styles */
.menu-category {
  margin-bottom: 80px;
}

.menu-subcategory {
  font-size: 1.75rem;
  font-weight: 600;
  color: #e18e23;
  margin-top: 30px;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(3, 180, 199, 0.2);
}

@media (max-width: 768px) {
  .menu-subcategory {
    font-size: 1.5rem;
  }
}

/* Restaurant Menu Item Styles */
.menu-item-badge {
  font-size: 0.85rem;
  color: var(--primary-color);
  font-weight: 500;
  white-space: nowrap;
  padding: 4px 12px;
  background-color: rgba(3, 180, 199, 0.1);
  border-radius: 20px;
  display: inline-block;
  margin-left: auto;
  flex-shrink: 0;
}

.menu-item-description {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 15px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Update treatment-header for restaurant cards to allow wrapping */
.treatment-card .treatment-header {
  flex-wrap: wrap;
  width: 100%;
  box-sizing: border-box;
}

.treatment-card .treatment-header .treatment-name {
  flex: 1;
  min-width: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  box-sizing: border-box;
}

/* Ensure treatment-card content doesn't overflow */
.treatment-card {
  overflow: hidden;
  word-wrap: break-word;
}

/* Menu Navigation Styles */
.menu-navigation {
  padding: 30px 20px;
  background-color: rgba(3, 180, 199, 0.05);
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1200px;
}

.menu-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 15px 10px;
  background: white;
  border-radius: 8px;
  text-decoration: none;
  color: #333;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  height: 100%;
  min-height: 100px;
  border: 2px solid transparent;
}

.menu-nav-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(3, 180, 199, 0.2);
  border-color: var(--primary-color);
  color: var(--primary-color);
  text-decoration: none;
}

.menu-nav-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--primary-color), #5ad7f1);
  color: white;
  border-radius: 50%;
  font-size: 1.25rem;
  font-weight: bold;
  margin-bottom: 10px;
  transition: all 0.3s ease;
}

.menu-nav-item:hover .menu-nav-number {
  transform: scale(1.1);
  box-shadow: 0 4px 12px rgba(3, 180, 199, 0.4);
}

.menu-nav-text {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.3;
  transition: color 0.3s ease;
}

@media (max-width: 768px) {
  .menu-item-badge {
    font-size: 0.75rem;
    padding: 3px 10px;
  }

  .menu-item-description {
    font-size: 0.85rem;
  }

  .menu-navigation {
    padding: 20px 15px;
    margin: 30px auto;
  }

  .menu-nav-item {
    padding: 12px 8px;
    min-height: 90px;
  }

  .menu-nav-number {
    width: 35px;
    height: 35px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .menu-nav-text {
    font-size: 0.8rem;
  }
}

/* Smooth scroll behavior for anchor links */
html {
  scroll-behavior: smooth;
}

/* Add offset for fixed header when scrolling */
.menu-category {
  scroll-margin-top: 100px;
}
