/* Reset and Base Styles */
* {
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #654321, #B8860B);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #8B4513;
    border: 2px solid #DAA520;
}

.btn-secondary:hover {
    background: #DAA520;
    color: white;
}

.btn-cta {
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: white;
    font-size: 1.1rem;
    padding: 16px 32px;
}

.btn-cta:hover {
    background: linear-gradient(135deg, #654321, #B8860B);
    transform: translateY(-2px);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-description {
    font-size: 1.1rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: background 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #2c3e50;
}

.logo-image {
    width: 40px;
    height: 40px;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    background: transparent;
    border: 0;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    margin: 3px 0;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 22px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #DAA520;
}

.btn-reserve-nav {
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: white;
    padding: 10px 18px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn-reserve-nav:hover {
    background: linear-gradient(135deg, #654321, #B8860B);
    transform: translateY(-1px);
    box-shadow: 0 10px 22px rgba(0,0,0,0.12);
}

/* Hero */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/hero-cabin-view.jpg') center/cover no-repeat;
    color: white;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
    padding-top: 72px;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 15px;
    opacity: 0.95;
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 18px;
    justify-content: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.hero-features {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 18px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
}

.feature-item i {
    font-size: 1.2rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator a {
    color: white;
    text-decoration: none;
    animation: bounce 2s infinite;
    display: inline-block;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* About */
.about {
    padding: 100px 0;
    background: white;
}

.about-text {
    text-align: center;
}

.lead {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #555;
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.highlight-card {
    text-align: center;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
}

.highlight-icon {
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
    display: block;
    font-size: 2.4rem;
    font-weight: 700;
    color: #DAA520;
}

.stat-label {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Gallery */
.gallery {
    padding: 100px 0;
    background: #f8f9fa;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.gallery-item:hover { transform: scale(1.015); }

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.gallery-item:hover img { transform: scale(1.08); }

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 1; }

.gallery-overlay i {
    color: white;
    font-size: 2rem;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    cursor: pointer;
    padding: 24px;
}

.lightbox.show { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 88vh;
    cursor: default;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 88vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(0,0,0,0.45);
    border: 1px solid rgba(255,255,255,0.18);
    color: white;
    cursor: pointer;
    border-radius: 999px;
    transition: transform 0.15s ease, background 0.15s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(0,0,0,0.65);
    transform: scale(1.02);
}

.lightbox-close {
    top: -56px;
    right: 0;
    font-size: 1.3rem;
    padding: 10px 14px;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    padding: 14px 16px;
}

.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }

.lightbox-counter {
    position: absolute;
    bottom: -44px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.95);
    font-size: 1.05rem;
}

/* Amenities */
.amenities {
    padding: 100px 0;
    background: white;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 24px;
}

.amenity-card {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.09);
}

.amenity-icon {
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 18px;
}

/* Rates */
.rates {
    padding: 100px 0;
    background: #f8f9fa;
}

.rates-content {
    display: grid;
    gap: 40px;
}

.pricing-table {
    background: white;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

.rates-table {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0;
}

.rates-table th, .rates-table td {
    padding: 14px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.rates-table th {
    background: #f8f9fa;
    font-weight: 600;
}

.rates-note {
    color: #7f8c8d;
    font-style: italic;
    margin-top: 18px;
}

.rules-policies {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.rules-card, .info-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

.rules-list { list-style: none; margin: 18px 0; }

.rules-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.rules-list i { color: #DAA520; }

.info-item { margin-bottom: 22px; }

.info-item h4 { margin-bottom: 8px; color: #2c3e50; }

/* Explore */
.explore {
    padding: 100px 0;
    background: white;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}

.explore-card {
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.explore-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}

/* Base styles for explore-image and explore-content, to be overridden */
.explore-image {
  position: relative;
  height: 200px; /* Default height, will be overridden */
  overflow: hidden;
}

.explore-image--portrait {
    height: 300px;
}

.explore-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.25s ease;
}

.explore-content {
    padding: 22px;
}

.explore-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.btn-explore {
    background: none;
    border: 1px solid #DAA520;
    color: #8B4513;
    padding: 8px 14px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.btn-explore:hover {
    background: #DAA520;
    color: white;
    transform: translateY(-1px);
}

.explore-footer {
    text-align: center;
    margin-top: 44px;
    color: #7f8c8d;
    font-style: italic;
}

/* Dining */
.dining {
    padding: 100px 0;
    background: #f8f9fa;
}

.dining-category { margin-bottom: 60px; }

.category-title {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dining-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 18px;
}

.dining-card {
    background: white;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.dining-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 38px rgba(0,0,0,0.10);
}

.dining-icon {
    font-size: 2rem;
    color: #DAA520;
    margin-bottom: 12px;
}

.dining-address { color: #7f8c8d; margin-bottom: 10px; }

.dining-contact {
    color: #25D366;
    text-decoration: none;
    font-weight: 600;
}

.dining-reservation {
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 10px;
}

/* Location */
.location {
    padding: 100px 0;
    background: white;
}

.location-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.location-card {
    text-align: center;
    padding: 28px;
    background: #f8f9fa;
    border-radius: 12px;
}

.location-icon {
    font-size: 3rem;
    color: #DAA520;
    margin-bottom: 18px;
}

/* Reviews */
.reviews {
    padding: 100px 0;
    background: #f8f9fa;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 22px;
}

.review-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

.review-stars { color: #FFD700; margin-bottom: 14px; }

.review-text {
    margin-bottom: 18px;
    color: #555;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-info h4 { margin-bottom: 4px; color: #2c3e50; }
.author-info span { color: #7f8c8d; font-size: 0.9rem; }

/* FAQ */
.faq {
    padding: 100px 0;
    background: white;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 14px;
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 18px;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background 0.2s ease;
}

.faq-question:hover { background: #f8f9fa; }
.faq-question i { transition: transform 0.2s ease; }
.faq-question.active i { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    background: #f8f9fa;
}

.faq-answer p {
    padding: 18px;
    margin: 0;
    color: #555;
}

/* CTA */
.cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #8B4513, #DAA520);
    color: white;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.cta-description {
    font-size: 1.2rem;
    margin-bottom: 26px;
    opacity: 0.95;
}

.cta-info { margin-top: 18px; opacity: 0.9; }

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 50px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 34px;
    margin-bottom: 26px;
}

.footer-col h3 { margin-bottom: 18px; color: #DAA520; }
.footer-col h4 { margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-col a:hover { color: #DAA520; }

.footer-social {
    display: flex;
    gap: 14px;
    margin-top: 18px;
}

.footer-social a { font-size: 1.5rem; }

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 18px;
    text-align: center;
    color: #bdc3c7;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.25);
    z-index: 1000;
    transition: transform 0.2s ease, background 0.2s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    background: #128C7E;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive */
@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .menu-toggle { display: flex; }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        gap: 0;
        padding: 14px 0;
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.10);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu li {
        text-align: center;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .hero-title { font-size: 2.4rem; }

    .hero-buttons { flex-direction: column; align-items: center; }

    .hero-features { flex-direction: column; align-items: center; }

    .section-title { font-size: 2rem; }

    .about-stats { flex-direction: column; gap: 18px; }

    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-close { top: 10px; right: 10px; }
    .lightbox-counter { bottom: 10px; }

    .explore-grid,
    .dining-grid,
    .location-info,
    .reviews-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .cta-title { font-size: 2rem; }
}

@media (max-width: 1024px) {
    .hero-title { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
}