/* Global Variables */
:root {
    --primary: #1A5F4A;
    --primary-light: #2D8A6E;
    --accent: #D4A853;
    --dark: #1A1A1A;
    --light: #FAF9F6;
    --text: #333333;
    --text-light: #666666;
    --wa-green: #25D366;
    --white: #FFFFFF;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    --max-width: 1200px;
    --header-height: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background-color: var(--white);
    line-height: 1.6;
    font-size: 1.05rem;
    padding-top: var(--header-height); /* Offset for fixed header */
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Container */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Section Padding */
section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h1 {
    font-size: 3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: var(--accent);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 20px auto 0;
}

/* Header & Navigation (Glassmorphism) */
.site-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
}

.logo img {
    height: 80px;
    width: auto;
    object-fit: contain;
    transition: all 0.3s ease;
    transform: scale(1.6);
    transform-origin: left center;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark);
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    padding: 14px 28px;
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.2);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(26, 95, 74, 0.3);
}

.btn-wa-large {
    background-color: var(--wa-green);
    color: var(--white);
    padding: 18px 36px;
    font-size: 1.1rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}

.btn-wa-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}

/* Hero Section (Parallax) */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-height));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(26,95,74,0.85), rgba(26,26,26,0.6)), url('images/Image_01.jpeg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    color: var(--white);
    padding: 0 20px;
}

.hero-content {
    max-width: 800px;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 700;
    letter-spacing: 1px;
}

.hero .tagline {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 45px;
}

.hero-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 30px;
    padding: 10px 22px;
    font-size: 0.95rem;
    color: var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.hero-badge:hover {
    transform: translateY(-2px);
    background: rgba(255,255,255,0.2);
}

.hero .cta-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.hero .subtext {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Highlights Section */
.highlights {
    background-color: var(--white);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.highlight-card {
    background-color: var(--white);
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.highlight-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(26,95,74,0.08);
    border-color: rgba(26,95,74,0.1);
}

.highlight-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 25px;
    color: var(--white);
    box-shadow: 0 10px 20px rgba(26,95,74,0.2);
}

.highlight-card h3 {
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.highlight-card p {
    font-size: 1rem;
    color: var(--text-light);
}

/* Standard Content Page Formatting (About) */
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--dark));
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    background-attachment: fixed;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: var(--text-light);
}

.about-image img {
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Gallery Overview (Home page version) */
.gallery-overview-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.gallery-row-1 .img-main {
    height: 450px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.gallery-row-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gallery-row-2 img {
    height: 300px;
    width: 100%;
    object-fit: cover;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.img-container {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.img-container:hover img {
    transform: scale(1.05);
}

/* Full Masonry Gallery Page */
.masonry-gallery {
    column-count: 3;
    column-gap: 20px;
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.masonry-item img {
    width: 100%;
    display: block;
    transition: transform 0.5s ease;
}

.masonry-item:hover img {
    transform: scale(1.05);
}

/* Testimonials Slider (Swiper) */
.testimonials-section {
    background-color: var(--light);
    overflow: hidden;
}

.swiper-container {
    width: 100%;
    padding: 20px 0 60px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    height: 100%;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 30px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

.author-info p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* FAQ Accordion */
.faq-section {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eaeaea;
    padding: 20px 0;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    transition: color 0.3s;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s;
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, margin-top 0.4s ease;
    color: var(--text-light);
}

.faq-item.active .faq-answer {
    max-height: 200px;
    margin-top: 15px;
}

/* Amenities Section */
.amenities {
    background-color: var(--light);
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.amenity-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    border-color: rgba(26,95,74,0.1);
}

.amenity-icon-wrapper {
    background: var(--light);
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--primary);
}

.amenity-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.amenity-text p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Direct Booking CTA Section */
.direct-cta-container {
    max-width: 900px;
    margin: 40px auto;
    background: linear-gradient(135deg, var(--primary), var(--dark));
    border-radius: 30px;
    padding: 80px 40px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 20px 50px rgba(26,95,74,0.2);
}

.direct-cta-container h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--white);
}

.direct-cta-container p {
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

.btn-white {
    background: var(--white);
    color: var(--primary);
    padding: 18px 36px;
    font-size: 1.15rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* Location and Contact Section */
.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.location-content h3 {
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.location-content > p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.distance-table {
    margin-bottom: 30px;
    background: var(--light);
    border-radius: 16px;
    padding: 20px;
}

.distance-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 15px 0;
}

.distance-row:last-child {
    border-bottom: none;
}

.nearby-text {
    font-size: 0.95rem;
    color: var(--text-light);
}

.location-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Contact Form */
.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.03);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #dcdcdc;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(26,95,74,0.1);
}

.phone-input-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.phone-input-wrapper select {
    padding: 14px 10px 14px 14px;
    border: 1px solid #dcdcdc;
    border-radius: 8px 0 0 8px;
    border-right: none;
    background: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text);
    transition: all 0.3s ease;
    cursor: pointer;
    outline: none;
    min-width: 130px;
}

.phone-input-wrapper select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(26,95,74,0.1);
    z-index: 1;
}

.phone-input-wrapper input {
    border-radius: 0 8px 8px 0 !important;
    width: 100%;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-accent {
    background-color: var(--primary); /* Matches the banner/primary color */
    color: var(--white);
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: none; /* Keep text as is instead of uppercase */
    letter-spacing: normal;
    font-size: 1rem;
}

.btn-accent:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(26, 95, 74, 0.3);
}

/* Footer */
footer {
    background-color: var(--dark);
    color: var(--white);
    text-align: center;
    padding: 60px 20px 40px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 30px;
}

.footer-links a {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.copyright {
    font-size: 1rem;
    opacity: 0.6;
    margin-bottom: 10px;
}

.footer-subtext {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Floating WhatsApp Button */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background-color: var(--wa-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 10px 25px rgba(37,211,102,0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 15px 30px rgba(37,211,102,0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-content, .location-grid {
        grid-template-columns: 1fr;
    }
    .masonry-gallery {
        column-count: 2;
    }
    .hero h1 {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 1rem;
        padding-top: var(--header-height);
    }
    
    .site-header {
        height: var(--header-height);
    }
    
    .logo img {
        height: 60px;
        transform: scale(1.5);
        transform-origin: left center;
    }
    
    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }
    
    .main-nav {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: 200px;
        height: auto;
        background-color: var(--white);
        border-radius: 12px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 10px 0;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
        border: 1px solid rgba(0,0,0,0.05);
    }
    
    .main-nav.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1rem;
        padding: 12px 25px;
        width: 100%;
        display: block;
        text-align: left;
    }
    
    .nav-links a:hover,
    .nav-links a.active {
        background-color: rgba(26,95,74,0.05);
        color: var(--primary);
    }

    /* Hamburger Animation */
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 6px);
    }
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    section {
        padding: 60px 0;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero .tagline {
        font-size: 1.1rem;
    }
    .section-header h2, .section-header h1 {
        font-size: 2rem;
    }
    .highlights-grid, .amenities-grid {
        grid-template-columns: 1fr;
    }
    .gallery-row-2 {
        grid-template-columns: 1fr;
    }
    .gallery-row-1 .img-main, .gallery-row-2 img {
        height: 300px;
    }
    .masonry-gallery {
        column-count: 1;
    }
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
    .direct-cta-container {
        padding: 50px 20px;
    }
    .contact-form {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero .tagline {
        font-size: 1rem;
    }
    .section-header h2 {
        font-size: 1.75rem;
    }
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    .btn-wa-large {
        padding: 15px 25px;
        font-size: 1rem;
    }
}
