/* style.css */
:root {
    --primary-dark: #5C7650;       /* dark sage */
    --primary-medium: #A3B18A;     /* medium sage */
    --primary-light: #DAD7CD;       /* light sage */
    --forest: #2F5D50;              /* footer background */
    --sand: #886548;                 /* accent from neutral palette */
    --light-sand: #E8E4DF;           /* new page background (light neutral) */
    --white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-light: #5D6D7E;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--light-sand);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-dark);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
    transition: all 0.4s ease;
    top: 0;
    left: 0;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px var(--shadow-hover);
}

body.home-page header,
.index-page header {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

body:not(.home-page):not(.index-page) header {
    background-color: rgba(255, 255, 255, 0.98);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo i {
    color: var(--primary-medium);
    margin-right: 10px;
    font-size: 24px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
    position: relative;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-dark);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--primary-medium);
}

.nav-links a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, var(--primary-medium), var(--primary-dark));
    left: 0;
    bottom: -6px;
    transition: width 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
    border-radius: 2px;
}

.nav-links a:hover:after {
    width: 100%;
}

/* Book Now Button in Navigation */
.book-now-nav {
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    color: white;
    padding: 10px 24px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(92, 118, 80, 0.25);
    display: inline-block;
    border: none;
}

.book-now-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(92, 118, 80, 0.35);
    color: white;
}

.mobile-menu-btn {
    display: none;
    font-size: 26px;
    color: var(--primary-dark);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-btn:hover {
    transform: rotate(90deg);
    color: var(--primary-medium);
}

/* ===== PAGE HERO ===== */
.page-hero {
    height: 70vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), 
                url("images/Hero-Banner-2.png");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 60px;
}
.page-hero-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero p {
    font-size: 20px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== HOME PAGE HERO ===== */
.home-hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.4)), 
                url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: white;
    text-align: center;
    position: relative;
    margin-top: 0;
}

.home-hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.2s ease-out 0.3s both;
}

.home-hero h1 {
    font-size: 68px;
    margin-bottom: 20px;
    color: white;
    line-height: 1.1;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.home-hero p {
    font-size: 22px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
    color: white;
    padding: 18px 45px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    font-size: 18px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(92, 118, 80, 0.25);
    border: none;
    margin: 0 10px;
}

.hero-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(92, 118, 80, 0.35);
    color: white;
}

.hero-btn.secondary {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
}

.hero-btn.secondary:hover {
    box-shadow: 0 12px 25px rgba(92, 118, 80, 0.35);
}

.wave-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.wave-decoration svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
    transform: rotate(180deg);
}

.wave-decoration .shape-fill {
    fill: var(--light-sand);
}

/* ===== COMMON SECTIONS ===== */
.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: 46px;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    color: var(--primary-dark);
}

.section-title h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-light));
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
}

.section-title p {
    color: var(--text-light);
    max-width: 700px;
    margin: 25px auto 0;
    font-size: 18px;
    font-weight: 300;
}

/* ===== ABOUT SECTION ===== */
.about-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px var(--shadow);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 25px 50px var(--shadow-hover);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text h3 {
    font-size: 36px;
    margin-bottom: 25px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 25px;
    color: var(--text-light);
    font-size: 17px;
}

.highlight-box {
    background: linear-gradient(135deg, rgba(92, 118, 80, 0.08), rgba(218, 215, 205, 0.08));
    border-left: 4px solid var(--primary-dark);
    padding: 25px;
    border-radius: 0 10px 10px 0;
    margin-top: 30px;
}
.page-hero {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Center the text */
.page-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
}

/* Dark overlay */
.page-hero::after{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    top: 0;
    left: 0;
}

.page-hero-content{
    position: relative;
    z-index: 2;
    color: #fff;
    text-align: center;
}
/* ===== AMENITIES SECTION ===== */
.amenities-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.amenity-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(92, 118, 80, 0.1);
    transform-style: preserve-3d;
    transform: translateZ(0);
}

.amenity-card:hover {
    transform: translateY(-15px) translateZ(20px);
    box-shadow: 0 25px 50px rgba(92, 118, 80, 0.15);
    border-color: rgba(92, 118, 80, 0.3);
}

.amenity-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
    transition: all 0.4s ease;
}

.amenity-card:hover .amenity-icon-wrapper {
    transform: rotate(15deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary-medium), var(--primary-dark));
}

.amenity-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.amenity-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
    color: var(--primary-dark);
}

.amenity-card p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.7;
    position: relative;
    z-index: 2;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.why-choose-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.why-choose-icon {
    font-size: 50px;
    color: var(--primary-medium);
    margin-bottom: 25px;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: 0 10px 20px var(--shadow);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-hover);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

/* ===== BLOG ===== */
.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
}

.blog-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
}

.blog-image {
    height: 250px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 14px;
    color: var(--text-light);
}

.blog-meta i {
    margin-right: 8px;
    color: var(--primary-medium);
}

.blog-category {
    display: inline-block;
    background: linear-gradient(135deg, rgba(92, 118, 80, 0.1), rgba(218, 215, 205, 0.1));
    color: var(--primary-dark);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 15px;
}

.blog-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.blog-excerpt {
    color: var(--text-light);
    margin-bottom: 20px;
}

.read-more {
    color: var(--primary-medium);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.read-more i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.read-more:hover {
    color: var(--primary-dark);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* ===== CONTACT ===== */
.contact-section {
    background: linear-gradient(135deg, rgba(92, 118, 80, 0.03), rgba(163, 177, 138, 0.03));
}

.contact-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
}

.contact-info {
    background: transparent;
    padding: 50px;
    border-radius: 20px;
    box-shadow: none;
    border: 1px solid rgba(92, 118, 80, 0.2);
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-item i {
    font-size: 24px;
    color: var(--primary-medium);
    margin-right: 20px;
    margin-top: 5px;
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 16px;
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    background-color: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-dark);
    box-shadow: 0 0 0 3px rgba(92, 118, 80, 0.1);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-light));
    color: white;
    border: none;
    padding: 18px 45px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 6px 20px rgba(92, 118, 80, 0.2);
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(92, 118, 80, 0.3);
}

/* ===== MAP ===== */
.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 400px;
    position: relative;
}

.map-iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ===== FOOTER ===== */
footer {
    background-color: var(--forest);
    color: white;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

footer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-dark), var(--primary-medium), var(--primary-light));
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* removed newsletter column */
    gap: 40px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-column h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.contact-info {
    list-style: none;
}

.contact-info li {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
}

.contact-info i {
    color: var(--primary-light);
    margin-right: 15px;
    margin-top: 5px;
    font-size: 18px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icons a:hover {
    background-color: var(--primary-medium);
    color: white;
    transform: translateY(-8px) rotate(10deg);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(92, 118, 80, 0.2); }
    70% { box-shadow: 0 0 0 15px rgba(92, 118, 80, 0); }
    100% { box-shadow: 0 0 0 0 rgba(92, 118, 80, 0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}
/* --- Base Footer Styles --- */
footer {
    background-color: #2b4d3f; /* Deep, elegant green */
    color: #e2e8f0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; /* Replace with your site's font */
    padding: 60px 0 20px;
    line-height: 1.6;
}

footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Layout: CSS Grid for perfect column alignment --- */
.footer-content {
    display: grid;
    /* This automatically stacks columns on mobile and puts them side-by-side on desktop */
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 40px;
    margin-bottom: 50px;
}

/* --- Headings & Paragraphs --- */
.footer-column h3 {
    color: #ffffff;
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

/* Small underline accent beneath headings */
.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #a3b899; 
}

.brand-column p {
    color: #cbd5e1;
    font-size: 15px;
    margin-bottom: 20px;
}

/* --- Social Icons --- */
.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #ffffff;
    color: #2b4d3f;
    transform: translateY(-3px); /* Subtle lift effect */
}

/* --- Quick Links --- */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px); /* Slides right slightly on hover */
}

/* --- Contact Info --- */
.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    display: flex; /* Aligns icons perfectly with multi-line text */
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 15px;
    color: #cbd5e1;
}

.contact-info i {
    margin-top: 5px; /* Pushes the icon down slightly to align with text */
    color: #a3b899;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #a3b899;
}

/* Fix for long phone numbers */
.phone-numbers {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

/* --- Copyright Bar --- */
.copyright {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    font-size: 14px;
    color: #94a3b8;
}

.copyright .fa-heart {
    color: #ef4444; /* Red heart */
    margin: 0 4px;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .amenities-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .home-hero h1 {
        font-size: 54px;
    }
    
    .page-hero h1 {
        font-size: 48px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        flex-direction: column;
        padding: 25px;
        box-shadow: 0 15px 30px var(--shadow);
        border-radius: 0 0 15px 15px;
        z-index: 100;
    }
    
    .nav-links.active {
        display: flex;
        animation: fadeInUp 0.5s ease;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .amenities-container {
        grid-template-columns: 1fr;
    }
    
    .home-hero h1 {
        font-size: 42px;
    }
    
    .page-hero h1 {
        font-size: 36px;
    }
    
    .section-title h2 {
        font-size: 38px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .hero-btn {
        display: block;
        margin: 10px auto;
        width: 80%;
        max-width: 300px;
    }
    
    .contact-info,
    .contact-form {
        padding: 0px;
    }
}

@media (max-width: 576px) {
    .home-hero h1 {
        font-size: 36px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title h2 {
        font-size: 32px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .page-hero {
        height: 60vh;
        margin-top: 60px;
    }
}









