/* styles.css */

/* Global Colors & Typography */
* {
    box-sizing: border-box;
  }
  body {
    background-color: #000;
    color: #d4af37;
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    line-height: 1.6;
  }
  h2, h3, h4, h5, p, span, a {
    color: #d4af37;
  }
  a {
    text-decoration: none;
    transition: color 0.3s ease;
  }
  a:hover {
    color: #fff;
  }
  
  /* Navbar Styles */
  .header-area {
    background-color: #000;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding: 15px 0;
  }
  .classynav ul li a {
    color: #d4af37;
    font-weight: 500;
  }
  .classynav ul li a:hover,
  .classynav ul li a.active {
    color: #fff;
  }
  .menu-btn .btn.palatin-btn {
    background-color: #d4af37;
    color: #000;
    border: 1px solid #d4af37;
    padding: 8px 20px;
    border-radius: 3px;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  .menu-btn .btn.palatin-btn:hover {
    background-color: transparent;
    color: #d4af37;
  }
  
  /* Hero Section */
  .hero-area {
    position: relative;
    height: 100vh;
    overflow: hidden;
  }
  .hero-slides {
    position: relative;
  }
  .single-hero-slide {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .slide-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    filter: brightness(0.7);
  }
  .hero-slides-content {
    text-align: center;
    max-width: 800px;
    margin: auto;
    padding: 20px;
  }
  .hero-slides-content .line {
    display: block;
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
  }
  .hero-slides-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 20px;
    color: #d4af37;
  }
  .hero-slides-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #d4af37;
  }
  .btn.palatin-btn {
    background-color: #d4af37;
    color: #000;
    border: 1px solid #d4af37;
    padding: 12px 30px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }
  .btn.palatin-btn:hover {
    background-color: transparent;
    color: #d4af37;
  }
  
  /* Responsive Enhancements for Hero Section */
  @media only screen and (max-width: 768px) {
    .hero-slides-content h2 {
      font-size: 2rem;
    }
    .hero-slides-content p {
      font-size: 1rem;
    }
    .btn.palatin-btn {
      padding: 10px 20px;
    }
  }
  
  /* About Us Section */
  .about-us-area {
    padding: 80px 0;
    background-color: #111;
  }
  .about-us-area .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .about-us-area .section-heading .line- {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
  }
  .about-us-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  .about-us-area p {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
  .about-us-area .about-key-text h6 {
    font-weight: 500;
    margin: 10px 0;
  }
  .about-us-area .about-key-text h6 span {
    margin-right: 10px;
    color: #d4af37;
  }
  .about-us-area .btn.palatin-btn {
    margin-top: 30px;
  }
  
  /* Featured Event (Signature Celebration) Section */
  .pool-area {
    padding: 80px 0;
    background: url('img/bg-img/4.png') no-repeat center center/cover;
    background-color: #000;
    position: relative;
    z-index: 1;
  }
  .pool-area::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.65);
    z-index: -1;
  }
  .pool-area .section-heading.white {
    text-align: center;
    margin-bottom: 40px;
  }
  .pool-area .section-heading.white .line- {
    background-color: #d4af37;
  }
  .pool-area .pool-content p {
    max-width: 700px;
    margin: 20px auto 30px;
  }
  .pool-area .pool-feature {
    text-align: center;
    margin: 20px 0;
  }
  .pool-area .pool-feature i {
    font-size: 2rem;
    margin-bottom: 10px;
  }
  .pool-area .btn.palatin-btn {
    margin-top: 30px;
  }
  
  /* Packages Section */
  .rooms-area {
    padding: 80px 0;
    background-color: #111;
  }
  .rooms-area .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .rooms-area .section-heading .line- {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
  }
  .rooms-area h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
  }
  .rooms-area p {
    font-size: 1rem;
    margin-top: 10px;
  }
  .single-rooms-area {
    background-color: #000;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 30px;
    border-radius: 5px;
    overflow: hidden;
    transition: transform 0.3s ease;
  }
  .single-rooms-area:hover {
    transform: translateY(-5px);
  }
  .single-rooms-area .bg-thumbnail {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
  }
  .single-rooms-area .price-from {
    text-align: center;
    font-weight: 500;
    padding: 15px 0;
    background-color: #111;
  }
  .rooms-text {
    text-align: center;
    padding: 20px;
  }
  .rooms-text .line {
    width: 50px;
    height: 2px;
    background-color: #d4af37;
    margin: 0 auto 15px;
  }
  .book-room-btn {
    display: block;
    text-align: center;
    margin: 20px auto 30px;
    width: fit-content;
  }
  .book-room-btn.btn.palatin-btn {
    padding: 10px 30px;
    border-radius: 3px;
    transition: background-color 0.3s ease;
  }
  .book-room-btn.btn.palatin-btn:hover {
    background-color: transparent;
    color: #d4af37;
  }
  
  /* Contact Area */
  .contact-area {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 80px 0;
    background-color: #111;
  }
  .home-map-area iframe {
    width: 100%;
    height: 450px;
    border: 0;
  }
  .contact-info {
    padding: 30px;
    flex: 1;
  }
  .contact-info .section-heading {
    margin-bottom: 30px;
  }
  .contact-info .section-heading .line- {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
  }
  .contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    text-align: center;
  }
  .contact-info h4,
  .contact-info h5 {
    text-align: center;
    margin: 10px 0;
  }
  .social-info a i {
    font-size: 1.5rem;
    transition: color 0.3s ease;
  }
  .social-info a:hover i {
    color: #fff;
  }
  
  /* Testimonials Section */
  .testimonials-area {
    padding: 80px 0;
    background-color: #000;
  }
  .testimonials-area .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .testimonials-area .section-heading .line- {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
  }
  .testimonial {
    text-align: center;
    padding: 30px;
    margin: 0 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    background-color: #111;
    transition: transform 0.3s ease;
  }
  .testimonial:hover {
    transform: translateY(-5px);
  }
  .testimonial p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .testimonial h5 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
  }
  
  /* Latest Events Section */
  .latest-events {
    padding: 80px 0;
    background-color: #111;
  }
  .latest-events .section-heading {
    text-align: center;
    margin-bottom: 40px;
  }
  .latest-events .section-heading .line- {
    width: 60px;
    height: 3px;
    background-color: #d4af37;
    margin: 0 auto 20px;
  }
  .event-item {
    margin-bottom: 30px;
    padding: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    background-color: #000;
    transition: transform 0.3s ease;
  }
  .event-item:hover {
    transform: translateY(-5px);
  }
  .event-item h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
  }
  .event-item p {
    font-size: 0.95rem;
    margin: 0;
  }
  
  /* Footer Styles */
  .footer-area {
    background-color: #000;
    padding: 60px 0;
    border-top: 1px solid rgba(212, 175, 55, 0.3);
  }
  .footer-widget-area p {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  .footer-area a {
    color: #d4af37;
    transition: color 0.3s ease;
  }
  .footer-area a:hover {
    color: #fff;
  }
  .copywrite-text p {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
  }
  
  /* Responsive Adjustments for Various Sections */
  @media (max-width: 768px) {
    .hero-slides-content h2 {
      font-size: 2rem;
    }
    .about-us-area, .pool-area, .rooms-area, .contact-area, .testimonials-area, .latest-events {
      padding: 60px 0;
    }
  }
  
  /* General Section Enhancements: Enhanced Rooms and About */
  .enhanced-rooms {
    background-color: #0d0d0d;
    padding: 100px 0;
  }
  .enhanced-heading h2 {
    font-size: 2.5rem;
    color: #d4af37;
  }
  .enhanced-heading p {
    color: #bbb;
    font-size: 1rem;
    margin-top: 10px;
  }
  /* Single Package Card Enhancements */
  .enhanced-room {
    background-color: #1a1a1a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
  }
  .enhanced-room:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 25px rgba(212, 175, 55, 0.3);
  }
  /* Background Thumbnail with Overlay */
  .enhanced-bg {
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
  }
  .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.8));
    transition: opacity 0.3s ease;
  }
  .enhanced-room:hover .img-overlay {
    opacity: 0.2;
  }
  /* Price Tag Styling */
  .price-from {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    z-index: 2;
  }
  /* Text Content Enhancements */
  .enhanced-text {
    padding: 20px;
    background-color: #1a1a1a;
    color: #d4af37;
  }
  .enhanced-text h4 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 1.5rem;
  }
  .enhanced-text p {
    font-size: 0.95rem;
    color: #ccc;
  }
  /* Enhanced Button Styling */
  .enhanced-btn {
    display: inline-block;
    background-color: #d4af37;
    color: #000;
    padding: 12px px;
    border-radius: 30px;
    text-transform: uppercase;
    font-weight: 600;
    margin: 20px;
  }
  .enhanced-btn:hover {
    background-color: #fff;
  }
  /* Enhanced Thumbnail (Images) */
  .enhanced-thumbnail {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }
  .enhanced-thumbnail .enhanced-img {
    border-radius: 10px;
    width: 100%;
    max-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .enhanced-thumbnail .enhanced-img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 15px rgba(212, 175, 55, 0.3);
  }
  /* Responsive Adjustments for Enhanced Sections */
  @media (max-width: 767px) {
    .enhanced-heading h2 {
      font-size: 2rem;
    }
    .enhanced-room {
      margin-bottom: 20px;
    }
    .enhanced-thumbnail {
      flex-direction: column;
      align-items: center;
    }
  }
  /* Enhanced About Section */
  .enhanced-about {
    background: #0d0d0d;
    padding: 80px 0;
    color: #d4af37;
  }
  .enhanced-heading h2 {
    font-size: 2.8rem;
    color: #d4af37;
    margin-bottom: 20px;
  }
  .enhanced-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin: 20px 0;
  }
  .enhanced-key-text h6 {
    font-size: 1rem;
    margin: 10px 0;
    font-weight: 500;
    color: #d4af37;
  }
  .enhanced-key-text h6 span.fa-check {
    margin-right: 8px;
    color: #25D366;
  }
  .enhanced-btn {
    background-color: #d4af37;
    color: #000;
    padding: 12px px;
    border-radius: 50px;
    font-weight: 600;
  }
  .enhanced-btn:hover {
    background-color: #fff;
  }
  
  /* Base Styles for Custom Header & Navigation */
  .custom-header {
    width: 100%;
    background: #000;
    box-shadow: 0 2px 4px rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 1000;
  }
  .custom-nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .custom-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
  }
  .custom-brand img {
    max-height: 50px;
  }
  /* Mobile Toggler */
  .custom-toggler {
    display: none;
    cursor: pointer;
  }
  .toggler-icon span {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px;
    background-color: #fff;
    transition: all 0.3s ease;
  }
  /* Navigation Menu */
  .custom-menu {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }
  .custom-nav {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
  }
  .custom-nav li a {
    text-decoration: none;
    font-size: 16px;
    color: #fff;
    position: relative;
    transition: color 0.3s ease;
  }
  .custom-nav li a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: #f39c12;
    transition: width 0.3s;
    position: absolute;
    left: 0;
    bottom: -5px;
  }
  .custom-nav li a:hover::after {
    width: 100%;
  }
  .custom-btn {
    margin-left: 20px;
  }
  .custom-event-btn {
    background: #f39c12;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    transition: background 0.3s ease;
  }
  .custom-event-btn:hover {
    background: #e67e22;
  }
  
  /* Mobile Styles for Custom Navigation */
  @media only screen and (max-width: 768px) {
    .custom-toggler {
      display: block;
    }
    .custom-menu {
      position: fixed;
      top: 0;
      right: 0;
      width: 80%;
      height: 100%;
      background: #000;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      transform: translateX(100%);
      opacity: 0;
      pointer-events: none;
      z-index: 1100;
    }
    .custom-menu.active {
      transform: translateX(0);
      opacity: 1;
      pointer-events: auto;
    }
    .custom-nav {
      flex-direction: column;
      gap: 20px;
    }
    .custom-nav li a {
      color: #fff;
    }
    .custom-btn {
      margin-top: 30px;
      margin-left: 0;
    }
    .menu-close {
      position: absolute;
      top: 20px;
      right: 20px;
      cursor: pointer;
    }
    .close-icon .line-top,
    .close-icon .line-bottom {
      display: block;
      width: 30px;
      height: 3px;
      background-color: #fff;
      margin: 6px auto;
      transition: transform 0.3s ease;
    }
  }
  
  /* Floating Chat Element */
  .chat-float {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scale(1);
    background-color: #25d366;
    color: #000;
    border-radius: 50px;
    text-decoration: none;
    display: flex;
    align-items: center;
    padding: 8px 15px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: pulse 2s infinite;
  }
  .chat-float img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin-right: 8px;
  }
  .chat-float .chat-text {
    font-size: 14px;
    font-weight: bold;
    color: #000;
  }
  /* Pulsing Animation */
  @keyframes pulse {
    0% {
      transform: translateX(-50%) scale(1);
    }
    50% {
      transform: translateX(-50%) scale(1.1);
    }
    100% {
      transform: translateX(-50%) scale(1);
    }
  }
  
  /* Preloader Styles */
  .preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .cssload-container {
    display: flex;
    flex-direction: row;
    gap: 50px;
  }
  .loader-circle {
    width: 80px;
    height: 80px;
    border: 8px solid #f3f3f3;
    border-top: 8px solid gold;
    border-radius: 50%;
    animation: spin 2s linear infinite;
    margin: 0 auto;
  }
  .preloader-text {
    margin-top: 15px;
    font-size: 1.2em;
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
  }
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  /* Images Grid */
  .images-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
  }
  .image-item {
    background-color: #1a1a1a;
    padding: 20px;
    border-radius: 4px;
  }
  .image-item img {
    width: 100%;
    height: auto;
    display: block;
    border: 3px solid #d4af37;
    border-radius: 4px;
    margin-bottom: 15px;
  }
  .image-item h3 {
    color: #d4af37;
    font-size: 1.4em;
    margin-bottom: 10px;
    text-transform: uppercase;
  }
  .image-item p {
    color: #fff;
    line-height: 1.6;
    margin-bottom: 10px;
  }
  
  /* Responsive Images Grid */
  @media (max-width: 768px) {
    .images-grid {
      grid-template-columns: 1fr;
    }
  }
  
  /* Logo Floating Animation */
  @keyframes floatLogo {
    0% {
      transform: translate(-50%, 0);
    }
    50% {
      transform: translate(-50%, -10px);
    }
    100% {
      transform: translate(-50%, 0);
    }
  }
  