/* Remove duplicate font import since it's now in fonts.css */
/* Basic styling starts here */
body {
    padding-top: 120px;
    /* Font is now defined in fonts.css */
  }
  
  footer {
    margin-top: 40px;
    padding: 20px 0;
    background-color: #ffd21f; /* Updated to match the button color */
    color: #333; /* Dark text for better contrast */
  }
  
  footer p {
    margin-bottom: 0;
    font-weight: 500;
  }

  footer a:hover {
    color: #000;
    text-decoration: underline;
  }

  .navbar {
    padding: 0;
    margin: 0;
    height: 120px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background-color: white;
  }
  
  .navbar .container {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 15px;
  }
  
  .navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
    height: 100%;
    margin: 0;
  }
  
  .navbar-brand img {
    max-height: 220px;
    margin-top: -50px;
    margin-bottom: -50px;
    display: block;
  }

  .navbar-collapse {
    height: 100%;
    display: flex;
    align-items: center;
  }

  .navbar-nav {
    display: flex;
    align-items: center;
    height: 100%;
    margin: 0;
  }

  .navbar-nav .nav-link {
    font-weight: bold;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
  }

  .navbar-nav .nav-link:hover {
    color: #ffc107 !important; /* Bootstrap yellow color */
    transition: color 0.3s ease; /* Smooth transition effect for text color only */
  }

  /* Auth buttons styling to match the image */
  .auth-buttons {
    display: flex;
    align-items: center;
  }
  
  .btn-signup {
    background: none;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 16px;
    text-decoration: none;
  }
  
  .btn-login {
    
    background: none;
    border: none;
    color: #000;
    font-weight: 600;
    padding: 8px 16px;
    font-size: 16px;
    text-decoration: none;
   
  }

  /* Optional hover effect */
  .btn-login:hover {
    color: #ffc300;
  }
  
  .btn-signup:hover {
    color: #ffc300;
  }

  /* Dropdown styling */
  .dropdown-menu {
    border-radius: 0;
    border-top: 2px solid #ffc300;
    margin-top: 0;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  }

  .dropdown-item {
    font-weight: 500;
    padding: 8px 16px;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
  }

  /* Carousel styling */
  .carousel {
    margin-top: 0;
  }
  
  .carousel-item {
    height: 70vh;
    min-height: 400px;
    position: relative;
  }
  
  /* Carousel overlay styles - only for main carousel */
  #mainCarousel .carousel-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* 40% opacity black overlay */
    z-index: 1;
  }
  
  .carousel-item img {
    object-fit: cover;
    height: 100%;
    width: 100%;
  }
  
  .carousel-caption {
    bottom: 20%;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  }
  
  #mainCarousel .carousel-caption {
    z-index: 10;
  }
  
  .carousel-caption h1 {
    font-size: var(--size-5xl);
    font-weight: var(--weight-bold);
    letter-spacing: 1px;
    font-family: var(--font-secondary);
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: #ffffff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
  }
  
  .carousel-caption p {
    font-size: var(--size-lg);
    margin-bottom: 1.5rem;
    font-family: var(--font-primary);
    font-weight: var(--weight-regular);
  }
  
  .carousel-control-prev,
  .carousel-control-next {
    width: 5%;
    opacity: 0.8;
  }
  
  .carousel-control-prev-icon,
  .carousel-control-next-icon {
    width: 3rem;
    height: 3rem;
  }

  /* Booking form styling - adjusted size */
  .booking-container {
    position: relative;
    margin-top: -30px;
    margin-bottom: 30px;
    z-index: 100;
  }
  
  .booking-form {
    background-color: white;
    padding: 20px 25px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
  }
  
  .booking-title {
    text-align: center;
    color: #333;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 1px;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    text-transform: uppercase;
  }
  
  .booking-form label {
    font-weight: 500;
    color: #666;
    margin-bottom: 5px;
    font-size: 14px;
  }
  
  .booking-form .form-control {
    height: 45px;
    border-radius: 0;
    border: 1px solid #ddd;
    padding-left: 15px;
    font-size: 14px;
  }
  
  .booking-form .input-group-text {
    background-color: transparent;
    border-radius: 0;
    border-left: none;
  }
  
  .booking-form .btn-book {
    height: 45px;
    border-radius: 0;
    background-color: #ffde59; /* Changed from blue to yellow */
    border: none;
    color: #333; /* Changed text color to dark for better contrast on yellow */
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0 20px;
    transition: all 0.3s ease;
    font-size: 14px;
  }
  
  .booking-form .btn-book:hover {
    background-color: #ffc300; /* Darker yellow on hover */
    color: #000;
  }

  /* Resort Showcase Styling */
  .showcase-section {
    background-color: #fafafa;
    padding: 40px 0;
    margin: 20px 0;
    
  }
  
  .showcase-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px;
    line-height: 1.7;
    color: #444;
  }
  
  .showcase-description p {
    margin-bottom: 20px;
  }
  
  .showcase-gallery {
    text-align: center;
    display: grid;
    height: 700x;       /* fixed height */
    height: 50vh;        /* 50% of the viewport height */
    max-height: 700px;   /* optional max limit */
    min-height: 200px; 
    position: relative;
    right: 200px;

    background-color: #ffffff;
  }
  
  .gallery-item {
    overflow: hidden;
    border-radius: 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
  }
  
  .gallery-item:hover {
    transform: translateY(-5px);
  }
  
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .item-1 {
    grid-column: 1 / span 4;
    grid-row: 1 / span 2;
    height: 500px;
  }
  
  .item-2 {
    grid-column: 5 / span 4;
    grid-row: 1;
    height: 240px;
  }
  
  .item-3 {
    grid-column: 9 / span 4;
    grid-row: 1 / span 2;
    height: 500px;
  }
  
  .item-4 {
    grid-column: 5 / span 2;
    grid-row: 2;
    height: 240px;
  }
  
  .item-5 {
    grid-column: 7 / span 2;
    grid-row: 2;
    height: 240px;
  }

  @media (max-width: 991.98px) {
    body {
      padding-top: 100px;
    }
    
    .navbar {
      height: 100px;
    }
    
    .navbar-brand img {
      max-height: 180px;
      margin-top: -40px;
      margin-bottom: -40px;
    }
    
    .auth-buttons {
      margin-top: 15px;
      justify-content: center;
      
    }
    
    .navbar-collapse {
      background-color: white;
      padding: 1rem;
      box-shadow: 0 4px 6px rgba(0,0,0,0.1);
      z-index: 1000;
    }
    
    .carousel-item {
      height: 50vh;
    }
    
    .carousel-caption h1 {
      font-size: 2.5rem;
      font-weight: 700;
    }
    
    .carousel-caption p {
      font-size: 1.1rem;
    }
    
    .booking-container {
      margin-top: 20px;
    }
    
    .booking-form {
      padding: 15px;
    }

    .showcase-gallery {
      grid-template-columns: repeat(2, 1fr);
      grid-template-rows: auto;
    }
    
    .item-1, .item-2, .item-3, .item-4, .item-5 {
      grid-column: auto;
      grid-row: auto;
      height: 300px;
    }
    
    .item-3 {
      grid-column: 1 / span 2;
    }
    
    .bg-white h1 {
      font-size: 2.2rem;
    }
  }
  
  @media (max-width: 576px) {
    body {
      padding-top: 80px;
    }
    
    .navbar {
      height: 80px;
    }
    
    .navbar-brand img {
      max-height: 100px;
      margin-top: -15px;
      margin-bottom: -15px;
    }
    
    .showcase-gallery {
      grid-template-columns: 1fr;
    }
    
    .item-1, .item-2, .item-3, .item-4, .item-5 {
      grid-column: 1;
      height: 250px;
    }

    .amenitiesbutton {
      margin-top: 20px;
      text-align: center;
    }
    
    .carousel-caption h1 {
      font-size: 2rem;
    }
    
    .carousel-caption p {
      font-size: 1rem;
    }
    
    .bg-white h1 {
      font-size: 1.8rem;
    }
  }

  /* Main Section Heading Styling */
  .bg-white h1 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .bg-white .lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
  }

  /* Feature Cards Styling */
  .card-img-top {
    height: 200px;
    object-fit: cover;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
  }

  .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 15px;
    border: none;
    border-radius: 4px;
    overflow: hidden;
  }

  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  }

  .card-body {
    padding: 1.25rem;
  }

  .card-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.75rem;
  }

  .card-text {
    font-family: 'Montserrat', sans-serif;
    color: #666;
    margin-bottom: 1.25rem;
  }

  .card .btn-primary {
    background-color: #ffde59;
    border-color: #ffc300;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 1.5rem;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .card .btn-primary:hover {
    background-color: #ffc300;
    border-color: #ffc300;
    color: #000;
  }

  /* Rooms Section Styling */
  .rooms-header {
    position: relative;
    padding: 22px 0 18px;
    background-color: transparent;
    margin: 20px 0;
    text-align: center;
  }

  .subtitle {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    font-size: 1.3rem;
    color: #ffde59;
    letter-spacing: 1px;
    margin-bottom: 8px;
  }

  .section-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300; /* Light weight */
    font-size: 3.2rem;
    color: #333333;
    letter-spacing: -0.5px;
    margin-top: 0;
    margin-bottom: 15px;
    text-transform: none;
  }

  .section-divider {
    height: 1px;
    width: 80px;
    background-color: #ffde59;
    margin: 0 auto;
  }

  /* For mobile devices */
  @media (max-width: 768px) {
    .subtitle {
      font-size: 1rem;
    }
    .section-title {
      font-size: 2.5rem;
      letter-spacing: -0.3px;
      font-weight: 300; /* Light weight */
    }
  }

  /* View All Rooms Button */
  .btn-outline-primary {
    color: #ffc300;
    border-color: #ffc300;
    background-color: transparent;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 0.75rem 2rem;
    border-radius: 0;
    transition: all 0.3s ease;
  }

  .btn-outline-primary:hover {
    background-color: #ffc300;
    color: white;
    border-color: #ffde59;
  }

  /* Services/Amenities Section Media Queries */
  @media (max-width: 768px) {
    .services-section {
      padding: 50px 0;
    }
    
    .service-section-subtitle {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }
    
    .service-card {
      margin-bottom: 15px;
    }
  }

  @media (max-width: 576px) {
    .service-section-subtitle {
      font-size: 1.6rem;
    }
    
    .service-card {
      margin-bottom: 20px;
    }
    
    .view-all-btn {
      font-size: 14px;
      padding: 8px 16px;
    }
  }

  /* Gallery Glimpse Section Styling */
  .gallery-glimpse-section {
    padding: 60px 0;
  }

  .gallery-glimpse-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .gallery-glimpse-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
    transform-origin: center center;
  }

  .gallery-overlay {
    display: none; /* Hide the overlay completely */
  }

  .gallery-icon {
    display: none; /* Hide the icon completely */
  }

  .gallery-glimpse-item:hover img {
    transform: scale(1.15); /* Increase zoom effect */
  }

  /* Add cursor-following effect */
  .gallery-glimpse-item {
    overflow: hidden;
  }

  .gallery-glimpse-item img {
    transition: transform 0.3s ease;
  }

  /* JavaScript will handle the cursor-following transformation */

  /* Responsive adjustments for gallery glimpse */
  @media (max-width: 768px) {
    .gallery-glimpse-item img {
      height: 200px;
    }
  }

  @media (max-width: 576px) {
    .gallery-glimpse-item img {
      height: 180px;
    }
  }

  /* Reviews Section Styling */
  .reviews-section {
    padding: 80px 0;
  }

  .review-card {
    background-color: white;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    margin: 15px 0;
    text-align: center;
    transition: transform 0.3s ease;
  }

  .review-card:hover {
    transform: translateY(-5px);
  }

  .review-stars {
    color: #f0b429;
    font-size: 1.2rem;
    letter-spacing: 2px;
  }

  .review-text {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
  }

  .reviewer-info {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .reviewer-profile {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    border: 2px solid #f0b429;
  }

  .reviewer-profile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .reviewer-details h5 {
    margin: 0;
    font-weight: 600;
    font-size: 1.1rem;
    color: #333;
  }

  .reviewer-details p {
    margin: 0;
    color: #777;
    font-size: 0.9rem;
  }

  /* Reviews Carousel Controls */
  .review-control-icon {
    background-color: rgba(240, 180, 41, 0.8);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    background-size: 50%;
  }

  .review-indicators {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
  }

  .review-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(240, 180, 41, 0.3);
    border: none;
  }

  .review-indicators button.active {
    background-color: #f0b429;
  }

  /* Responsive adjustments for reviews */
  @media (max-width: 991px) {
    .reviews-section {
      padding: 60px 0;
    }
    
    .review-card {
      padding: 25px;
    }
    
    .review-text {
      font-size: 1rem;
    }
  }

  @media (max-width: 576px) {
    .reviews-section {
      padding: 40px 0;
    }
    
    .review-card {
      padding: 20px;
    }
    
    .review-text {
      font-size: 0.9rem;
      line-height: 1.6;
    }
    
    .reviewer-profile {
      width: 50px;
      height: 50px;
    }
  }

