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

body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #0b1b16;
    background-color: #020806;
    line-height: 1.6;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: relative;
    color: #ffffff;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 20;
    background: linear-gradient(90deg, rgba(1,20,15,0.95), rgba(3,40,30,0.9));
    backdrop-filter: blur(10px);
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo img {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    object-fit: cover;
}

.brand-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    letter-spacing: 0.06em;
}

.brand-name span {
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.4rem;
    font-size: 0.92rem;
}

.nav-links a {
    position: relative;
    padding-bottom: 0.15rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #9ef5c9;
    transition: width 0.2s ease;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: #ffffff;
}

.hero {
    position: relative;
    margin-top: 64px;
    min-height: 80vh;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
    align-items: stretch;
    color: #ffffff;
}

.hero-bg {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
    transform: scale(1.02);
}

.hero-content {
    padding: 3rem 6vw;
    background: radial-gradient(circle at top left, rgba(46, 234, 170, 0.1), transparent 50%),
                radial-gradient(circle at bottom right, rgba(158, 245, 201, 0.12), transparent 55%),
                #020806;
}

.hero-tagline {
    font-size: 0.9rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: #9ef5c9;
    margin-bottom: 0.8rem;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.2rem, 2.8vw, 3rem);
    margin-bottom: 1rem;
}

.hero-text {
    color: #d6f4e6;
    max-width: 32rem;
    margin-bottom: 1.8rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.6rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn.primary {
    background: linear-gradient(135deg, #42f6b4, #19a575);
    color: #02120c;
    border-color: #19a575;
}

.btn.primary:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn.ghost {
    background: transparent;
    color: #e6fff4;
    border-color: rgba(158, 245, 201, 0.7);
}

.btn.ghost:hover {
    background: rgba(6, 51, 35, 0.8);
}

.btn.full {
    width: 100%;
}

.section {
    padding: 4rem 1.5rem;
    background-color: #020806;
    color: #ecf6f1;
}

.section:nth-of-type(even) {
    background: radial-gradient(circle at top, rgba(14, 84, 64, 0.7), #020806 55%);
}

.section-inner {
    max-width: 1120px;
    margin: 0 auto;
}

.two-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: center;
}

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

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 0.6rem;
}

.section-header p {
    color: #c6e7d7;
}

.about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    margin-bottom: 1rem;
}

.about p {
    color: #cbeadd;
    margin-bottom: 1.4rem;
}

.features-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.2rem;
}

.feature-card {
    display: grid;
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 1rem;
    background: rgba(2, 16, 11, 0.9);
    border-radius: 1.2rem;
    overflow: hidden;
    border: 1px solid rgba(146, 244, 200, 0.25);
}

.feature-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-text {
    padding: 0.9rem 1rem;
}

.feature-text h3 {
    font-size: 1rem;
    margin-bottom: 0.35rem;
}

.feature-text p {
    font-size: 0.9rem;
    color: #cdeadd;
}

.brand-panel-inner {
    background-image: radial-gradient(circle at top, rgba(26, 158, 110, 0.4), rgba(1, 16, 11, 0.98));
    border-radius: 1.5rem;
    border: 1px solid rgba(158, 245, 201, 0.35);
    padding: 2rem 1.6rem;
    text-align: center;
}

.brand-mark {
    width: 110px;
    margin: 0 auto 1.2rem;
}

.brand-phrase {
    text-transform: uppercase;
    letter-spacing: 0.28em;
    font-size: 0.7rem;
    color: #9ef5c9;
    margin-bottom: 0.9rem;
}

.brand-copy {
    color: #cfece1;
    font-size: 0.95rem;
}

.destinations {
    background: radial-gradient(circle at 20% 0, rgba(26, 158, 110, 0.45), #020806 55%);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.8rem;
}

.destination-card {
    background: rgba(1, 16, 11, 0.96);
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(146, 244, 200, 0.33);
    display: flex;
    flex-direction: column;
}

.destination-card img {
    height: 180px;
    object-fit: cover;
}

.destination-content {
    padding: 1.2rem 1.3rem 1.4rem;
}

.destination-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
}

.destination-content ul {
    list-style: none;
    font-size: 0.9rem;
    color: #d9f4e5;
    margin-bottom: 0.7rem;
}

.destination-content li::before {
    content: "•";
    margin-right: 0.4rem;
    color: #9ef5c9;
}

.destination-note {
    font-size: 0.9rem;
    color: #afdec9;
}

.reservation .text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.steps-list {
    list-style: decimal;
    padding-left: 1.2rem;
    margin-bottom: 1.6rem;
    color: #cdeadd;
    font-size: 0.95rem;
}

.steps-list li {
    margin-bottom: 0.45rem;
}

.reservation-cards {
    display: grid;
    gap: 1.4rem;
}

.reservation-card {
    background: rgba(1, 16, 11, 0.96);
    border-radius: 1.4rem;
    overflow: hidden;
    border: 1px solid rgba(158, 245, 201, 0.35);
}

.reservation-card img {
    height: 180px;
    object-fit: cover;
}

.reservation-text {
    padding: 1rem 1.2rem 1.3rem;
}

.reservation-text h3 {
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
}

.social .three-columns {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr) minmax(0, 1.1fr);
    gap: 2rem;
    align-items: flex-start;
}

.social h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.6rem;
}

.social p {
    color: #c8ebdd;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.social-btn {
    padding: 0.7rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(158, 245, 201, 0.5);
    background: rgba(1, 18, 12, 0.9);
}

.social-btn:hover {
    background: rgba(9, 71, 50, 0.9);
}

.social-embed iframe {
    width: 100%;
    border-radius: 1rem;
}

.video-section .text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.9rem;
    margin-bottom: 0.5rem;
}

.video-section .text p {
    color: #cdeadd;
}

.video-wrapper iframe {
    width: 100%;
    min-height: 260px;
    border-radius: 1.3rem;
    border: 1px solid rgba(158, 245, 201, 0.4);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.gallery-item {
    cursor: zoom-in;
    border-radius: 0.9rem;
    overflow: hidden;
    border: 1px solid rgba(146, 244, 200, 0.25);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.4);
}

.contact-list {
    list-style: none;
    margin: 1rem 0 1.4rem;
    font-size: 0.95rem;
    color: #cce9dd;
}

.contact-list li + li {
    margin-top: 0.4rem;
}

.map-wrapper iframe {
    width: 100%;
    min-height: 220px;
    border-radius: 1.2rem;
    border: 1px solid rgba(158, 245, 201, 0.35);
}

.contact-form-wrapper {
    background: rgba(1, 16, 11, 0.96);
    border-radius: 1.5rem;
    padding: 1.8rem 1.5rem;
    border: 1px solid rgba(158, 245, 201, 0.4);
}

.contact-form .form-group {
    margin-bottom: 0.9rem;
}

.contact-form label {
    display: block;
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
    color: #b7e3d4;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border-radius: 0.8rem;
    border: 1px solid rgba(158, 245, 201, 0.4);
    background: #010a07;
    color: #ecf6f1;
    padding: 0.55rem 0.7rem;
    font-size: 0.9rem;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #9ef5c9;
    box-shadow: 0 0 0 1px rgba(158, 245, 201, 0.4);
}

.site-footer {
    background: #010805;
    color: #9ecfba;
    padding: 1.8rem 1.5rem;
    font-size: 0.8rem;
}

.footer-inner {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.footer-inner p + p {
    margin-top: 0.3rem;
}

.footer-inner a {
    color: #9ef5c9;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #42f6b4, #19a575);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.45);
    z-index: 40;
}

.wa-icon {
    font-size: 1.5rem;
}

/* Lightbox */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
    padding: 1rem;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 0.8rem;
}

.lightbox-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 2rem;
    background: transparent;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

/* Responsive */

@media (max-width: 960px) {
    .hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .hero-bg {
        display: none;
    }

    .two-columns {
        grid-template-columns: minmax(0, 1fr);
    }

    .destinations-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .social .three-columns {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 768px) {
    .navbar {
        padding-inline: 1rem;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        flex-direction: column;
        background: rgba(2, 20, 14, 0.98);
        padding: 0.8rem 1rem 1rem;
        border-bottom: 1px solid rgba(158, 245, 201, 0.35);
        transform: translateY(-150%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.2s ease, opacity 0.2s ease;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 520px) {
    .hero-content {
        padding: 3.2rem 1.3rem 2.5rem;
    }

    .section {
        padding: 3rem 1.3rem;
    }

    .destinations-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}
