@font-face {
    font-family: '5S Chathamma Resort';
    src: local('5S Chathamma Resort');
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', serif;
    background: white;
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.75rem 2rem;
}

/* Navbar Sections */
.navbar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex: 1;
}

.navbar-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex: 1;
    justify-content: flex-end;
}

/* Hamburger Menu */
.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    transition: transform 0.3s ease;
}

.hamburger:hover {
    transform: scale(1.1);
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Logo */
.logo-img {
    height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.navbar.scrolled .logo-img {
    height: 50px;
}

.logo-img:hover {
    transform: scale(1.05);
}

/* Buttons */
.location-btn, .book-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-family: 'Georgia', serif;
}

.location-btn {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.location-btn:hover {
    background: #ffffff;
    color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.book-btn {
    background: linear-gradient(135deg, #ffffff 0%, #cccccc 100%);
    color: #000000;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.4);
}

.book-btn:hover {
    background: linear-gradient(135deg, #dddddd 0%, #aaaaaa 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.6);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: white;
    padding: 6rem 2rem 2rem;
    transition: left 0.4s ease;
    box-shadow: 5px 0 20px rgba(0, 0, 0, 0.3);
    z-index: 999;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu nav ul li a {
    display: block;
    color: #1a1a1a;
    text-decoration: none;
    padding: 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 1rem;
    letter-spacing: 0.5px;
    font-family: 'Georgia', serif;
}

.mobile-menu nav ul li a:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000000;
    padding-left: 1.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
}

.hero-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/images/about/resort-view.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: none;
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.hero-heading {
    position: absolute;
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Cinzel', serif;
    font-size: 5rem;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    z-index: 10;
    width: 100%;
    padding: 0 2rem;
}

/* Common Section Styles */
.about-section,
.property-amenities-section,
.celebrations-section,
.things-section,
.gallery-section,
.map-section,
.contact-section {
    padding: 5rem 0;
    overflow: hidden;
}

.about-section,
.property-amenities-section,
.celebrations-section,
.gallery-section,
.map-section {
    background: linear-gradient(135deg, #f5f5dc 0%, #ffffff 100%);
}



.contact-section {
    background: white;
}

/* Section Headings */
.about-text h2,
.property-subsection h2,
.amenities-subsection h2,
.celebrations-text h2,
.things-section h2,
.gallery-section h2,
.map-section h2,
.contact-section h2 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after,
.property-subsection h2::after,
.amenities-subsection h2::after,
.celebrations-text h2::after,
.things-section h2::after,
.gallery-section h2::after,
.map-section h2::after,
.contact-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #daa520 0%, #b8860b 100%);
}

/* Center aligned headings */
.property-subsection h2,
.amenities-subsection h2,
.things-section h2,
.gallery-section h2,
.map-section h2,
.contact-section h2 {
    text-align: center;
}

.property-subsection h2::after,
.amenities-subsection h2::after,
.things-section h2::after,
.gallery-section h2::after,
.map-section h2::after,
.contact-section h2::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Section Paragraphs */
.about-text p,
.property-subsection p,
.celebrations-text p,
.things-section p,
.gallery-section p,
.map-section p,
.contact-section > p {
    font-family: 'Georgia', serif;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.property-subsection p,
.things-section p,
.gallery-section p,
.map-section p,
.contact-section > p {
    text-align: center;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

/* Property Grid */
.property-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.property-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 1;
}

.property-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.property-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.property-item:hover img {
    transform: scale(1.05);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 70%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    padding: 1rem;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.overlay h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.overlay p {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #cccccc;
    margin-bottom: 1.5rem;
}

/* Read More Button */
.read-more-btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1rem;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.read-more-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
}

/* Amenities Grid */
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.amenity-item {
    text-align: center;
    padding: 2rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.amenity-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.amenity-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.amenity-item h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.amenity-item p {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    color: #4a4a4a;
}

/* Celebrations Section */
.celebrations-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.celebrations-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.celebrations-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.celebrations-image img:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.celebrations-text {
    flex: 1;
}

.celebration-types {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.celebration-types li {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.celebration-types li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #daa520;
    font-size: 1.5rem;
    line-height: 1;
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
    cursor: pointer;
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    filter: brightness(1.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Map Section */
.map-container {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.info-item .icon {
    font-size: 2rem;
}

.info-item .icon img {
    width: 1rem;
    height: 1rem;
    object-fit: contain;
}

.info-item a {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #008080;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-item a:hover {
    color: #daa520;
}
/* Things Section Styles */
.things-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.things-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.things-section h2 {
  text-align: center;
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
}

.things-section > .container > p {
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

/* Things Grid Layout */
.things-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

@media (min-width: 1025px) {
  .things-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Individual Thing Items */
.thing-item {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.thing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.thing-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.thing-item:hover img {
  transform: scale(1.05);
}

.thing-item h3 {
  font-size: 1.5rem;
  color: #2c3e50;
  margin: 20px 20px 10px;
  font-weight: 600;
}

.thing-item p {
  color: #6c757d;
  margin: 0 20px 20px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Explore More Button */
.explore-more-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
  color: #ffffff;
  border: none;
  border-radius: 30px;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
  margin: 0 20px 25px;
}

.explore-more-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(218, 165, 32, 0.5);
}

/* Animation Classes (if using the intersection observer) */
.thing-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.thing-item.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .things-section {
    padding: 60px 0;
  }
  
  .things-section h2 {
    font-size: 2rem;
  }
  
  .things-section > .container > p {
    font-size: 1.1rem;
    margin-bottom: 40px;
  }
  
  .things-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .thing-item {
    margin: 0 10px;
  }
}

@media (max-width: 480px) {
  .things-section h2 {
    font-size: 1.8rem;
  }
  
  .thing-item h3 {
    font-size: 1.3rem;
  }
  
  .explore-more-btn {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}
/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #daa520;
    box-shadow: 0 0 10px rgba(218, 165, 32, 0.3);
}

.btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #ffffff;
    border: none;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.5);
}

.contact-info h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.8rem;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #008080;
    color: #ffffff;
    text-decoration: none;
    border-radius: 20px;
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #daa520;
}

/* Footer Section */
.footer-section {
    background: linear-gradient(135deg, #f5f5dc 0%, #ffffff 100%);
    color: #1a1a1a;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    text-align: center;
}

.footer-logo img {
    height: 80px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    color: #1a1a1a;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    color: #daa520;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-family: 'Georgia', serif;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #daa520;
}

.footer-contact p {
    font-family: 'Georgia', serif;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: inline-block;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.1);
}

.social-icon img {
    width: 32px;
    height: 32px;
    object-fit: cover;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 1rem;
}

.footer-bottom p {
    font-family: 'Georgia', serif;
    font-size: 0.9rem;
    margin: 0;
    color: #4a4a4a;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #daa520 0%, #b8860b 100%);
    color: #ffffff;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.3);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.5);
}

/* Animations */
.about-content,
.amenity-item,
.celebrations-content,
.thing-item,
.gallery-item,
.map-section,
.contact-section,
.footer-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.about-content.animate,
.amenity-item.animate,
.celebrations-content.animate,
.thing-item.animate,
.gallery-item.animate,
.map-section.animate,
.contact-section.animate,
.footer-section.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 1000;
    text-decoration: none;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.whatsapp-float img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

/* Property Detail Pages */
.property-detail {
    padding: 8rem 2rem 4rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.property-detail h1 {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.property-detail p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    text-align: left;
}

/* Infinite Image Slider */
.image-slider {
    width: 100%;
    overflow: hidden;
    margin-bottom: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.slider-track {
    display: flex;
    width: fit-content;
    animation: scroll 20s linear infinite;
}

.slider-track img {
    height: 450px;
    width: auto;
    margin-right: 1rem;
    border-radius: 15px;
    object-fit: cover;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Responsive Design */

/* Tablet Styles (768px - 1024px) */
@media (max-width: 1024px) {
    .hero-heading {
        font-size: 4rem;
        bottom: 12%;
    }

    .about-text h2,
    .property-subsection h2,
    .amenities-subsection h2,
    .celebrations-text h2,
    .things-section h2,
    .gallery-section h2,
    .map-section h2,
    .contact-section h2 {
        font-size: 2.8rem;
    }

    .property-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
        gap: 1.5rem;
    }

    .things-grid {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

/* Mobile Styles (768px and below) */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem;
    }

    .logo-img {
        height: 45px;
    }

    .navbar.scrolled .logo-img {
        height: 40px;
    }

    .location-btn {
        display: none;
    }

    .book-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .hero-heading {
        font-size: 3rem;
        bottom: 8%;
    }

    .about-section,
    .property-amenities-section,
    .celebrations-section,
    .things-section,
    .gallery-section,
    .map-section,
    .contact-section {
        padding: 3rem 0;
    }

    .about-text h2,
    .property-subsection h2,
    .amenities-subsection h2,
    .celebrations-text h2,
    .things-section h2,
    .gallery-section h2,
    .map-section h2,
    .contact-section h2 {
        font-size: 2.5rem;
    }

    .about-text p,
    .property-subsection p,
    .celebrations-text p,
    .things-section p,
    .gallery-section p,
    .map-section p,
    .contact-section > p {
        font-size: 1.1rem;
    }

    .about-content,
    .celebrations-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .about-text h2::after,
    .celebrations-text h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .property-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1.5rem;
    }



    .amenities-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1.5rem;
    }

    .amenity-item {
        padding: 1.5rem;
    }

    .amenity-item h3 {
        font-size: 1.1rem;
    }

    .amenity-item p {
        font-size: 0.85rem;
    }

    .things-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }

    .thing-item img {
        height: 150px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
    }

    .gallery-item {
        height: 200px;
    }

    .gallery-item img {
        height: 100%;
    }

    .map-container {
        height: 300px;
        margin-bottom: 2rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .btn,
    .cta-button {
        padding: 1rem 2rem;
        font-size: 1.1rem;
        min-height: 48px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-icons {
        justify-content: center;
    }

    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-float img {
        width: 25px;
        height: 25px;
    }

    .property-detail {
        padding-top: 6rem;
    }

    .property-detail h1 {
        font-size: 2.5rem;
    }

    .slider-track img {
        height: 300px;
    }
}

/* Small Mobile Styles (480px and below) */
@media (max-width: 480px) {
    .navbar-center {
        position: static;
        transform: none;
        flex: 1;
        display: flex;
        justify-content: center;
    }

    .navbar-left {
        flex: 0;
    }

    .navbar-right {
        flex: 0;
    }

    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
        min-height: 44px;
    }

    .hero-heading {
        font-size: 2rem;
        max-width: 90vw;
        bottom: 5%;
        padding: 0 1rem;
    }

    .about-section,
    .property-amenities-section,
    .celebrations-section,
    .things-section,
    .gallery-section,
    .map-section,
    .contact-section {
        padding: 2rem 0;
    }

    .container {
        padding: 0 1rem;
    }

    .about-text h2,
    .property-subsection h2,
    .amenities-subsection h2,
    .celebrations-text h2,
    .things-section h2,
    .gallery-section h2,
    .map-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }

    .about-text p,
    .property-subsection p,
    .celebrations-text p,
    .things-section p,
    .gallery-section p,
    .map-section p,
    .contact-section > p {
        font-size: 1rem;
    }

    .property-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }



    .overlay h3 {
        font-size: 1.3rem;
    }

    .overlay p {
        font-size: 0.9rem;
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .amenity-item {
        padding: 1rem;
    }

    .amenity-item h3 {
        font-size: 1rem;
    }

    .amenity-item p {
        font-size: 0.8rem;
    }

    .things-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .thing-item img {
        height: 140px;
    }

    .thing-item h3 {
        font-size: 1.3rem;
        margin: 0.5rem 1rem 0.5rem;
    }

    .thing-item p {
        font-size: 0.9rem;
        margin: 0 1rem 1rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .gallery-item img {
        height: 100%;
    }

    .map-container {
        height: 250px;
        margin-bottom: 1.5rem;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .info-item {
        padding: 0.75rem;
    }

    .contact-form {
        padding: 1rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 0.8rem;
        font-size: 1rem;
    }

    .btn,
    .cta-button {
        padding: 0.9rem 1.5rem;
        font-size: 1rem;
        min-height: 44px;
    }

    .footer-logo img {
        height: 60px;
    }

    .footer-links h4,
    .footer-contact h4,
    .footer-social h4 {
        font-size: 1.3rem;
    }

    .whatsapp-float {
        bottom: 10px;
        right: 10px;
        width: 48px;
        height: 48px;
    }

    .whatsapp-float img {
        width: 24px;
        height: 24px;
    }

    .property-detail h1 {
        font-size: 2rem;
    }

    .slider-track img {
        height: 200px;
    }
}

/* Disable slide-up animation for mobile view */
@media (max-width: 768px) {
    .about-content,
    .property-item,
    .amenity-item,
    .celebrations-content,
    .thing-item,
    .gallery-item,
    .map-section,
    .contact-section,
    .footer-section {
        opacity: 1;
        transform: translateY(0);
        transition: none; /* Remove transition for mobile */
    }

    /* Show overlay permanently on mobile */
    .overlay {
        opacity: 1;
    }
}
