:root {
    --bg-color: #f7f6f2; /* Warm earthy white */
    --text-main: #2a3b2c; /* Deep forest green */
    --text-light: #5c6c5d;
    --accent-green: #7d9673; /* Sage/moss green */
    --accent-gold: #b38b59; /* Warm earthy gold */
    --font-heading: 'Lora', serif;
    --font-body: 'Nunito', sans-serif;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
}

h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    letter-spacing: -1px;
}

h1 span {
    color: var(--accent-green);
    font-style: italic;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    margin-bottom: 1.5rem;
}

p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
}

/* Buttons */
.btn-primary, .btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--accent-green);
    color: #fff;
    box-shadow: 0 10px 30px rgba(125, 150, 115, 0.3);
}

.btn-primary:hover {
    background-color: var(--text-main);
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(42, 59, 44, 0.4);
}

.btn-outline {
    border: 1px solid var(--accent-green);
    color: var(--accent-green);
}

.btn-outline:hover {
    background-color: var(--accent-green);
    color: #fff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(247, 246, 242, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 5%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

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

.logo span {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-main);
}

.logo small {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-gold);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 3rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 0 5%;
    gap: 4rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    z-index: 2;
    padding-top: 5rem;
}

.hero-visual {
    position: relative;
    height: 80vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Organic Image Blob */
.image-blob {
    width: 90%;
    height: 85%;
    overflow: hidden;
    /* Organic, non-perfect shape */
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: morph 8s ease-in-out infinite;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    position: relative;
}

.image-blob img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hero-visual:hover .image-blob img {
    transform: scale(1.15);
}

@keyframes morph {
    0%, 100% { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; }
    34% { border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%; }
    67% { border-radius: 100% 60% 60% 100% / 100% 100% 60% 60%; }
}

/* About Section */
.about-section {
    padding: 8rem 5%;
    background-color: #fff;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-images {
    position: relative;
    height: 600px;
}

.img-main {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 200px 20px 20px 20px;
    position: absolute;
    top: 0;
    right: 0;
    box-shadow: 20px 20px 0 var(--bg-color);
}

.img-overlay {
    width: 50%;
    height: 50%;
    object-fit: cover;
    position: absolute;
    bottom: -5%;
    left: -10%;
    border-radius: 20px 100px 20px 100px;
    border: 10px solid #fff;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.features-list {
    list-style: none;
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.features-list .icon {
    font-size: 2rem;
    background: var(--bg-color);
    padding: 15px;
    border-radius: 50%;
    color: var(--accent-green);
}

.features-list strong {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--text-main);
}

.features-list span {
    font-size: 0.95rem;
}

/* Rooms Section */
.rooms-section {
    padding: 8rem 5%;
    background-color: var(--bg-color);
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.room-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.room-img-wrapper {
    height: 250px;
    overflow: hidden;
}

.room-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.room-card:hover .room-img-wrapper img {
    transform: scale(1.1);
}

.room-info {
    padding: 2rem;
}

.room-info h3 {
    font-size: 1.5rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.room-info p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.room-amenities {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--accent-green);
    font-weight: 600;
}

/* Amenities Section */
.amenities-section {
    padding: 6rem 5%;
    background-color: var(--text-main);
    color: #fff;
}

.amenities-section .section-header h2, 
.amenities-section .section-header p {
    color: #fff;
}

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

.amenity-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.amenity-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.1);
}

.amenity-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1.5rem;
}

.amenity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.amenity-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Dining Section */
.dining-section {
    padding: 8rem 5%;
    background-color: #fff;
}

.dining-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.dining-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.dining-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.dining-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.5rem;
}

.dining-content p {
    margin-bottom: 2rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.dining-highlights {
    list-style: none;
    margin-bottom: 2.5rem;
}

.dining-highlights li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 5%;
    background-color: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #fff;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.stars {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.review-text {
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.reviewer {
    font-weight: 600;
    color: var(--text-main);
    font-size: 1.1rem;
}

/* Gallery Section */
.gallery-section {
    padding: 8rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header p {
    margin: 0 auto;
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 1.5rem;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.grid-item:hover img {
    transform: scale(1.1);
}

.grid-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(42,59,44,0.4), transparent);
    opacity: 0;
    transition: var(--transition);
}

.grid-item:hover::after {
    opacity: 1;
}

.tall {
    grid-row: span 2;
}
.wide {
    grid-column: span 2;
}

/* Location Section */
.location-section {
    padding: 6rem 5%;
    background-color: #fff;
}

.location-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    background: var(--bg-color);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05);
}

.contact-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.address-card h3 {
    font-size: 1.8rem;
    margin-bottom: 0.2rem;
}

.address-card .subtitle {
    color: var(--accent-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
}

.address-card p {
    margin-bottom: 2rem;
}

.map-wrapper {
    min-height: 400px;
}

/* Modern Footer */
.main-footer {
    background-color: var(--text-main);
    color: #fff;
    padding: 6rem 5% 2rem;
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.about-col .footer-logo h3 {
    font-size: 2rem;
    color: #fff;
    margin-bottom: 0.2rem;
}

.about-col .footer-logo p {
    color: var(--accent-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    margin: 0;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 1.5rem 0;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.9rem;
}

.social-links a:hover {
    background: var(--accent-gold);
    color: var(--text-main);
    transform: translateY(-3px);
}

.links-col ul, .contact-col .contact-list {
    list-style: none;
    padding: 0;
}

.links-col ul li {
    margin-bottom: 1rem;
}

.links-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.links-col ul li a:hover {
    color: var(--accent-gold);
    padding-left: 5px;
}

.contact-list li {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.2rem;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin: 0;
}

/* Floating Contact Buttons */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.float-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: white;
}

.float-btn svg {
    width: 30px;
    height: 30px;
}

.call-btn {
    background-color: #007bff;
}

.whatsapp-btn {
    background-color: #25d366;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-section {
        gap: 2rem;
    }
    
    .about-grid {
        gap: 3rem;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(247, 246, 242, 0.95);
        backdrop-filter: blur(10px);
        padding: 2rem 0;
        text-align: center;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    
    .nav-links.active a {
        padding: 1rem 0;
        display: block;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        z-index: 999;
        position: relative;
    }
    
    .hamburger span {
        width: 25px;
        height: 2px;
        background: var(--text-main);
    }
    
    .hero-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 8rem;
    }
    
    .hero-content p {
        margin: 0 auto;
    }
    
    .hero-visual {
        height: 50vh;
        order: -1;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        height: 350px;
        margin-bottom: 2rem;
    }
    
    .img-main {
        width: 100%;
        height: 100%;
        border-radius: 20px 100px 20px 20px;
    }
    
    .img-overlay {
        display: none; /* Hide overlay image on small screens for cleaner look */
    }
    
    .about-text {
        text-align: center;
    }
    .features-list li {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location-container {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding: 2rem;
        text-align: center;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
    }
    
    .tall, .wide {
        grid-row: span 1;
        grid-column: span 1;
    }
    
    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 10px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
    
    .float-btn svg {
        width: 25px;
        height: 25px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .contact-list li {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .dining-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .dining-highlights li {
        justify-content: center;
    }
}
