/* Base Styles */

:root {
    --primary-color: #FFD900; /* Vibrant Gold */
    --secondary-color: #009B77; /* Calming Teal */
    --accent-color: #A8DADC; /* Soft Blue */
    --dark-color: #457B9D; /* Deep Blue */
    --light-color: #F1FAEE; /* Light Cream */
    --text-color: #1D3557; /* Strong contrast text */
    --text-light: #6C757D;
    --highlight-cream: #FFF8E1;
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    --transition: all 0.3s ease;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;    
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
    margin-bottom: 15px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--primary-color);
}

.section-header .subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
}

.frangipani {
    color: var(--primary-color);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 5px 0;
    background-color:var(--dark-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    padding: 5px 0;
    background-color: rgb(69, 123, 157,0.8);
}
.header-container {
        display: flex;
        justify-content: space-between;
        align-items: center;
      }
.header-container img{
    height: 80px;
    width: auto;    
}

.logo-container {
    display: flex;
    flex-direction: column;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0px;
    
}

.logo img {
    filter: drop-shadow(0 1px 1px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.logo h1 {
    font-size: 1.8rem;
    margin: 0;
    color: var(--dark-color);
}

.slogan {
    font-size: 0.9rem;
    color: var(--primary-color);
    font-style: italic;
    text-align: center;
    /* margin-left: 28px; */
}

.nav ul {
    display: flex;
    gap: 30px;
}

.nav a {
    font-weight: 500;
    position: relative;
    color: white;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: url('assets/hero-bg-pc.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-top: 80px;
}

.hero .hero-logo {
    width: 500px;
    height: auto;
}



.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgba(0, 0, 0, 0.2); */
    background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6));
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin: 0 auto;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: white;
}

.hero-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Welcome Section */
.welcome {
    padding: 50px 0;
    background-color: var(--light-color);
}



.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(90, 232, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
}

.feature-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

/* Rooms Section */
.rooms {
    padding: 50px 0;
    background-color: white;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.room-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.room-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.room-image {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.room-price {
    position: absolute;
    top: 5px;
    right: 30px;
    background-color:rgba(255, 255, 255, 0.8);
    /* color: white; */
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 1.2rem;    
    color: var(--primary-color);      
   
}
.room-price h2{
    font-family: var(--font-primary);
    font-weight: 700;
}

.room-details {
    padding: 25px;
}

.room-details h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.room-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin: 15px 0 20px;
}

.room-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
}

.room-features i {
    color: var(--secondary-color );
}

.view-room-btn {
    width: 100%;
    text-align: center;
}

/* Amenities Section */
.amenities {
    padding: 50px 0;
    background-color: var(--light-color);
}

.amenities-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.amenities-column h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.amenities-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.amenities-column ul {
    display: grid;
    gap: 10px;
}

.amenities-column li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.amenities-column i {
    color: var(--primary-color);
    margin-top: 3px;
}


/* Location Section */
.location {
    padding: 50px 0;
    background-color: var(--light-color);
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.location-map {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.location-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.location-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.location-info ul {
    margin-bottom: 30px;
}

.location-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.location-info i {
    color: var(--secondary-color);
    margin-top: 3px;
}

/* Contact Section */
.contact {
    padding: 50px 0;
    background-color: white;
}

@media (max-width: 768px) {
    .contact {
        padding: 30px 0;
    }
}
@media (max-width: 576px) {
    .contact {
        padding: 20px 0;
    }
}
@media (max-width: 480px) {
    .contact {
        padding: 15px 0;
    }
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* Contact form styles */
.contact-form {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.contact-form h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}
.contact-form h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/* Enhanced Contact Form Responsiveness */
@media (max-width: 576px) {
    .contact-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form {
        padding: 15px;
        width: 100%;
        min-width: 0;
    }
    .form-group {
        width: 100%;
        margin-bottom: 15px;
    }
    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px 12px;
        font-size: 14px;
        box-sizing: border-box;
    }
    .form-group textarea {
        min-height: 120px;
    }
    .submit-btn {
        width: 100%;
        padding: 10px 15px;
        font-size: 14px;
    }
    .contact-info {
        padding: 20px 15px;
        width: 100%;
        min-width: 0;
        box-sizing: border-box;
    }
    .contact-info li {
        font-size: 12px;
        margin-bottom: 10px;
    }
    .contact-info p{
        font-size: 10px;
        margin-bottom: 0;
      
    }
    /* Replace the email-specific rules with this */
.contact-info li:nth-child(3) {
    overflow-wrap: anywhere;
    word-break: keep-all;
    hyphens: auto;
}
}

/* Prevent zooming on input focus on mobile */
/* @media (max-width: 480px) 
{ .contact-form input, .contact-form textarea, .contact-form select { 
        font-size: 16px !important; 
    } 
    .contact-form input[type="number"] { 
        font-size: 16px !important; 
    }
    .contact-form input[type="email"] { 
        font-size: 16px !important; 
    }
    .contact-form input[type="tel"] { 
        font-size: 16px !important; 
    }
    .contact-form input[type="text"] { 
        font-size: 16px !important; 
    }
    .contact-form textarea { 
        font-size: 16px !important; 
    }
    .contact-form select { 
        font-size: 16px !important; 
    }
    .contact-form input, .contact-form textarea {
        padding: 12px 15px;
    }
    .contact-form .submit-btn {
        padding: 12px 20px;
        font-size: 16px;
    }
    .contact-form h3 {
        font-size: 1.5rem;
    }
    .contact-form p {
        font-size: 0.9rem;
    }
    .contact-form label {
        font-size: 0.9rem;
    }
    .contact-form .form-group {
        margin-bottom: 15px;
    }
} */
/* Contact form input styles */


/* Form input styles */
input, textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: var(--transition);
}
input:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(62, 232, 164, 0.2);
}
/* Submit button styles */
.submit-btn {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    padding: 12px 20px;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
}
.submit-btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
/* Responsive styles */
@media (max-width: 768px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-form {
        padding: 20px;
    }
}   
/*New change end*/

/* Form error styles */
.error-message {
    color: #e74c3c;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Input error state */
input.error, textarea.error {
    border-color: #e74c3c !important;
}

/* Spinner */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255,255,255,.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    margin-left: 10px;
    vertical-align: middle;
}

.spinner.hidden {
    display: none;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Form message */
.form-message {
    margin-top: 1rem;
    padding: 0.75rem;
    border-radius: 4px;
    display: none;
}

.form-message.show {
    display: block;
}

.form-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(62, 232, 164, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    padding: 30px;
    background-color: var(--light-color);
    border-radius: 8px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 10px;
}

.contact-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
}

.contact-info ul {
    margin-bottom: 30px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: var(--secondary-color);
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links i{
    font-size: 1.5rem;
    color: whitesmoke;
}
.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--dark-color);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 70px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul i {
    margin-right: 8px;
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a:hover {
    color: var(--primary-color);
}

/* === MODAL STYLES === */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 2000;
  overflow-y: auto;
  padding: 20px;
}

/* Main modal box */
.modal-content {
  background-color: white;
  margin: 40px auto;
  max-width: 900px;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  animation: modalFadeIn 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Flex container */
.modal-body {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 30px;
}

/* Image slider (left) */
.room-slider {
  flex: 1 1 100%;
  min-width: 280px;
}

.slider-main {
  height: 500px;
  overflow: hidden;
  border-radius: 6px;
}

.slider-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbnail scroller (touch-enabled) */
.slider-thumbnails {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  margin-top: 10px;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.slider-thumbnails img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  transition: 0.3s;
  flex-shrink: 0;
}

.slider-thumbnails img:hover,
.slider-thumbnails img.active {
  border-color: var(--primary-color);
}

/* Right content */
.room-info {
  flex: 1 1 100%;
  padding-top: 20px;
}

.room-info h2 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--dark-color);
}

.room-info p {
  margin-bottom: 15px;
  color: var(--text-color);
  line-height: 1.6;
}

.room-price {
  font-size: 1.4rem;
  color: var(--secondary-color);
  font-weight: bold;
  margin-top: 10px;
}

.book-now-btn {
  margin-top: 20px;
  width: 100%;
}

/* Close button */
.close-modal {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 1.8rem;
  color: var(--text-light);
  cursor: pointer;
  z-index: 1;
}

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

/* === ANIMATION === */
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 992px) {
  .modal-body {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .room-slider {
    height: 250px;
  }

  .slider-thumbnails img {
    width: 70px;
    height: 50px;
  }

  .room-info {
    padding-top: 0;
  }
}

@media (max-width: 576px) {
  .modal-content {
    margin: 20px auto;
    border-radius: 0;
  }

  .slider-main {
    height: 200px;
  }

  .slider-thumbnails img {
    width: 60px;
    height: 45px;
  }

  .close-modal {
    top: 10px;
    right: 15px;
    font-size: 1.5rem;
  }

  .room-info h2 {
    font-size: 1.2rem;
  }

  .room-price {
    font-size: 1.0rem;
  }
}


@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content h3 {
        font-size: 1.5rem;
    }
    
    .location-container,
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .location-map {
        height: 300px;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--dark-color);
        opacity: 0.9;
        flex-direction: column;
        padding: 30px;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transition: var(--transition);
    }
    
    .nav.active {
        left: 0;
        color: var(--dark-color);
    }
    
    .nav ul {
        flex-direction: column;
        gap: 20px;
    }
    
    .mobile-menu-btn {
        display: block;
        margin: auto;
    }
    
    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .logo img{
        height: 60px;
        display: block;
        margin: 0 auto;
    }
    
    .hero {
        min-height: 500px;
        background-image: url('assets/hero-bg-mobile.jpg');
    }
    
    .hero-content h2 {
        font-size: 2rem;
    }
    
    .hero-content h3 {
        font-size: 1.3rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 60px;
    right: 60px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    background-color: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 25px;
        bottom: 20px;
        right: 20px;
    }
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
/* Image Bullets Styles */

ul.image-bullets {
        list-style: none;
        padding-left: 0;
      }
 ul.image-bullets li {
        background: url("assets/bullet.png") no-repeat left center;
        background-size: 16px 16px;
        padding-left: 24px;
        margin-bottom: 8px;
        box-shadow: black 0px 0px 5px rgba(0, 0, 0, 0.9);
}

/*responsive styles for image bullets*/
@media (max-width: 768px) {
  ul.image-bullets li {
    background: url("assets/bullet.png") no-repeat left center;
    background-size: 16px 16px;
    padding-left: 24px;
    margin-bottom: 8px;
    box-shadow: black 0px 0px 5px rgba(0, 0, 0, 0.9);
    font-size: 14px;
  }
  ul.image-bullets {
    padding-left: 20px;
  }
}



.about-intro {
  padding: 0 0 20px 0 ;
  background-color: var(--light-color);
}

.intro-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.intro-image {
  flex: 1 1 200px;
}

.intro-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}
.intro-logo {
  width: 70%;
  height: auto;
  margin-bottom: 20px;
}

.intro-text {
  flex: 1 1 500px;
}

.intro-text h2 {
  font-size: 2rem;
  color: var(--dark-color);
  margin-bottom: 20px;
}

.intro-text p {
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 15px;
  line-height: 1.8;
}

@media (max-width: 768px) {
  .intro-container {
    flex-direction: column;
    text-align: center;
  }

  .intro-text h2 {
    font-size: 1.6rem;
  }

  .intro-text p {
    font-size: 0.95rem;
  }

  .intro-image {
    order: -1;
  }
}

/* ==============================================
   GALLERY SECTION STYLES
   ============================================== */
/* Gallery Section - Fixed Styles */
.gallery {
  padding: 80px 0;
  background-color: white;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.gallery-item {
  position: relative;
  height: 250px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  /* transform: translateY(0); */
  /* transition: transform 0.3s ease; */
  transition: box-shadow 0.3s ease;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover {
  /* transform: translateY(-5px); */
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.gallery-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.gallery-item::after {
  content: attr(data-category);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding-bottom: 15px; 
  color: white;
  font-weight: 500;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  text-align: center;
  font-family: var(--font-primary);
}

.gallery-item:hover::after {
  transform: translateY(0);
}

/* Lightbox Styles */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 90%;
  max-height: 90%;
  text-align: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 80vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: opacity 0.3s ease;
}

.lightbox-content img.loading {
  opacity: 0.5;
}

.lightbox-caption {
  color: white;
  margin-top: 15px;
  font-size: 1.2rem;
  font-family: var(--font-primary);
}

.close-lightbox {
  position: absolute;
  top: 20px;
  right: 20px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  z-index: 10;
}

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

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
  transform: translateY(-50%);
  z-index: 10;
}

.lightbox-nav button {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav button:hover {
  background: var(--primary-color);
  transform: scale(1.1);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .gallery {
    padding: 60px 0;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 10px;
  }
  
  .gallery-item {
    height: 150px;
  }
  
  .gallery-item::after {
    font-size: 0.9rem;
    padding: 10px;
  }
  
  .lightbox-content img {
    max-height: 60vh;
  }
  
  .lightbox-caption {
    font-size: 1rem;
  }
  
  .close-lightbox {
    font-size: 2rem;
    top: 10px;
    right: 10px;
  }
  
  .lightbox-nav button {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
}

/* Enhanced Lightbox Responsiveness */
@media (max-width: 768px) {
    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }
    
    .lightbox-content img {
        max-height: 65vh;
    }
    
    .lightbox-caption {
        font-size: 1rem;
        margin-top: 10px;
        padding: 0 10px;
    }
    
    .close-lightbox {
        top: 10px;
        right: 10px;
        font-size: 2rem;
    }
    
    .lightbox-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .lightbox-content img {
        max-height: 50vh;
    }
    
    .lightbox-caption {
        font-size: 0.9rem;
    }
    
    .lightbox-nav {
        padding: 0 10px;
    }
    
    .lightbox-nav button {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }
  
  .gallery-item {
    height: 120px;
  }
  
  .gallery-item::after {
    font-size: 0.8rem;
    padding: 8px;
  }
}

/* ==============================================
   GALLERY FILTER BUTTON STYLES - CORRECTED VERSION
   ============================================== */

/* Gallery Filter Buttons */
.filter-controls {
  text-align: center;
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.filter-controls .btn {
  margin: 0;
  padding: 8px 20px;
  background-color: transparent;
  color: var(--dark-color);
  border: 2px solid var(--dark-color);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Active state styles */
.filter-controls .btn.active {
  background-color: var(--dark-color);
  color: white;
}

/* Hover state (different from active) */
.filter-controls .btn:not(.active):hover {
  background-color: rgba(69, 123, 157, 0.7);
  color: white;
}

/* Make sure 'All' button is active by default */
.filter-controls .btn[data-filter="all"].active {
  background-color: var(--dark-color);
  color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .filter-controls {
    gap: 8px;
  }
  
  .filter-controls .btn {
    padding: 6px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .filter-controls {
    gap: 6px;
  }
  
  .filter-controls .btn {
    padding: 5px 12px;
    font-size: 0.8rem;
  }
}
/* Fallback styles if MixItUp fails */
.mixitup-container-fallback {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
}


/* Nearby Attractions Section */
.attractions-highlight {
  font-size: 1rem;
  color: var(--text-light);
  margin-bottom: 15px;
  font-style: italic;
}

.nearby-attractions {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.nearby-attractions li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 15px;
  gap: 15px;
}

.nearby-attractions i {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-top: 5px;
}

.attraction-text {
  flex: 1;
}

.attraction-name {
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}

.attraction-desc {
  font-size: 0.9rem;
  color: var(--text-light);
}

.attraction-time {
  font-size: 0.9rem;
  color: var(--text-light);
  white-space: nowrap;
}

/* Responsive */
@media (max-width: 576px) {
  .nearby-attractions li {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .attraction-time {
    margin-top: 0;

  }
  .attraction-text {
    width: 100%;
    margin-bottom: 0;
  }
  .attraction-name {
    font-size: 1.1rem;  
}
  .attraction-desc {
    font-size: 0.9rem;
  }
  .nearby-attractions li i{
    margin-bottom: 0;
  }
} 

@media (max-width: 576px) {
  .transport-options li {
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 20px;
  }

  .transport-options li i {
    margin-bottom: 0;
  }
  .transport-options li span {
    font-size: 0.9rem;
} 
}
