html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-paragraph);
    background: var(--color-bg-body);
    color: var(--color-text);
    overflow-x: hidden;
    line-height: 1.7;
}

main{
   padding-top:105px;
}

/* ========================= */
/* GLOBAL */
/* ========================= */

.section-padding {
    padding: 110px 0;
}

.container {
    max-width: var(--container-width);
}

img {
    max-width: 100%;
    display: block;
}

a {
    transition: var(--transition-fast);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-header);
    color: var(--color-text-darken);
    line-height: 1.2;
}

p {
    color: var(--color-text-light);
}

.section-heading {
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 52px;
    margin-bottom: 20px;
}

.section-subtitle {
    display: inline-block;
    margin-bottom: 15px;
    color: var(--color-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 700;
}

.rounded-lg {
    border-radius: var(--border-radius);
}


/* ========================= */
/* BUTTONS */
/* ========================= */

.btn-main {
    background: var(--color-primary);
    color: #fff;
    padding: 15px 34px;
    border-radius: 100px;
    font-weight: 600;
    border: none;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-soft);
}

.btn-main:hover {
    background: var(--color-primary-darken);
    color: #fff;
    transform: translateY(-2px);
    text-decoration: none;
}

.btn-reserva {
    background: var(--color-secondary);
    color: var(--color-text-darken);
    border-radius: 100px;
    padding: 12px 28px;
    font-weight: 700;
}

.btn-reserva:hover {
    background: var(--color-secondary-active);
    color: #fff;
}

.btn-room {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 12px 24px;
    border-radius: 100px;
    display: inline-block;
    margin-top: 15px;
    font-weight: 600;
}

.btn-room:hover {
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
}


/* ========================= */
/* NAVBAR */
/* ========================= */

.main-header {
    transition: var(--transition-normal);
    z-index: 9999;
background:rgba(0,0,0,0.5)
}

.navbar {
    padding: 25px 0;
}

.logo-img {
    width: 55px;
}

.logo-text {
    font-size: 28px;
    font-family: var(--font-header);
    font-weight: 700;
    color: #fff;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,0.88) !important;
    margin-left: 20px;
    font-weight: 500;
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: #fff !important;
}


/* ========================= */
/* HERO */
/* ========================= */

.hero-section {
    position: relative;
    min-height: 100vh;
    background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb');
    background-size: cover;
    background-position: center;
    padding: 180px 0 120px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to right,
        rgba(25, 20, 15, 0.82),
        rgba(25, 20, 15, 0.45)
    );
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 100px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(8px);
    color: #fff;
    margin-bottom: 25px;
    font-size: 14px;
}

.hero-content h1 {
    font-size: 78px;
    color: #fff;
    margin-bottom: 28px;
    max-width: 760px;
}

.hero-content p {
    font-size: 20px;
    color: rgba(255,255,255,0.82);
    max-width: 600px;
    margin-bottom: 40px;
}

.hero-buttons .btn {
    min-width: 220px;
}


/* ========================= */
/* BOOKING CARD */
/* ========================= */

.booking-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.18);
    position: relative;
    z-index: 2;
}

.booking-card h3 {
    margin-bottom: 30px;
    font-size: 32px;
}

.booking-card label {
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-darken);
}

.booking-card .form-control {
    height: 58px;
    border-radius: 14px;
    border: 1px solid #ddd;
    padding: 0 18px;
    box-shadow: none;
}

.booking-card .form-control:focus {
    border-color: var(--color-primary);
}

.btn-book {
    background: var(--color-primary);
    color: #fff;
    border-radius: 14px;
    height: 58px;
    border: none;
    font-weight: 700;
    margin-top: 15px;
}

.btn-book:hover {
    background: var(--color-primary-darken);
}


/* ========================= */
/* EXPERIENCE */
/* ========================= */

.experience-section {
    background: #fff;
}

.section-text {
    font-size: 18px;
    margin-bottom: 35px;
}

.experience-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-weight: 600;
    color: var(--color-text-darken);
}

.feature-item i {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--color-bg-section);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 20px;
}


/* ========================= */
/* ROOMS */
/* ========================= */

.rooms-section {
    background: var(--color-bg-section);
}

.room-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    height: 100%;
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-card img {
    height: 320px;
    object-fit: cover;
    width: 100%;
}

.room-content {
    padding: 35px;
}

.room-content h3 {
    margin-bottom: 15px;
}

.room-meta {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
    font-weight: 600;
    color: var(--color-primary);
}


/* ========================= */
/* GALLERY */
/* ========================= */

.gallery-section {
    background: #fff;
}

.gallery-grid img {
    height: 420px;
    width: 100%;
    object-fit: cover;
    transition: 0.6s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    opacity: 0.92;
}


/* ========================= */
/* ACTIVITIES */
/* ========================= */

.activities-section {
    background: var(--color-bg-section);
}

.activity-card {
    background: #fff;
    padding: 45px 30px;
    border-radius: 24px;
    height: 100%;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-card);
}

.activity-card:hover {
    transform: translateY(-8px);
}

.activity-card i {
    font-size: 42px;
    color: var(--color-primary);
    margin-bottom: 25px;
}


/* ========================= */
/* PACKS */
/* ========================= */

.pack-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    min-height: 520px;
}

.pack-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pack-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.72),
        rgba(0,0,0,0.12)
    );
    z-index: 1;
}

.pack-content {
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 45px;
    z-index: 2;
}

.pack-content h3,
.pack-content p {
    color: #fff;
}


/* ========================= */
/* TESTIMONIALS */
/* ========================= */

.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: var(--color-bg-section);
    padding: 40px;
    border-radius: 24px;
    height: 100%;
}

.stars {
    color: #D4A94F;
    margin-bottom: 20px;
}

.testimonial-card p {
    font-size: 18px;
    margin-bottom: 25px;
    color: var(--color-text);
}


/* ========================= */
/* CTA */
/* ========================= */

.cta-section {
    padding: 120px 0;
    background-image: linear-gradient(
        rgba(20,20,20,0.62),
        rgba(20,20,20,0.62)
    ),
    url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee');

    background-size: cover;
    background-position: center;
    text-align: center;
}

.cta-section h2 {
    font-size: 58px;
    color: #fff;
    margin-bottom: 25px;
}

.cta-section p {
    color: rgba(255,255,255,0.82);
    margin-bottom: 35px;
    font-size: 18px;
}


/* ========================= */
/* FOOTER */
/* ========================= */

.main-footer {
    background: #1F1A16;
    padding: 90px 0 30px;
}

.main-footer h3,
.main-footer h5 {
    color: #fff;
    margin-bottom: 25px;
}

.main-footer p,
.main-footer li,
.main-footer a {
    color: rgba(255,255,255,0.72);
}

.footer-list {
    list-style: none;
    padding: 0;
}

.footer-list li {
    margin-bottom: 15px;
}

.footer-list i {
    margin-right: 10px;
    color: var(--color-secondary);
}

.social-icons a {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    color: #fff;
}

.social-icons a:hover {
    background: var(--color-primary);
}

.footer-bottom {
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255,255,255,0.08);
}


/* ========================= */
/* WHATSAPP */
/* ========================= */

.whatsapp-float {
    position: fixed;
    right: 25px;
    bottom: 25px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    z-index: 999;
    box-shadow: 0 10px 25px rgba(0,0,0,0.22);
}

.whatsapp-float:hover {
    color: #fff;
    transform: scale(1.08);
}


/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 991px) {

    .navbar {
        background: rgba(20,20,20,0.96);
        padding: 18px 0;
    }

    .hero-content h1 {
        font-size: 52px;
    }

    .section-heading h2 {
        font-size: 42px;
    }

    .booking-card {
        margin-top: 50px;
    }

    .cta-section h2 {
        font-size: 42px;
    }

}

@media (max-width: 767px) {

    .section-padding {
        padding: 80px 0;
    }

    .hero-section {
        padding-top: 140px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .gallery-grid img {
        height: 260px;
    }

    .pack-card {
        min-height: 420px;
    }

    .cta-section h2 {
        font-size: 34px;
    }

}