/* CSS Reset & Variables */
:root {
    --bg-dark: #e8dbcc;
    /* Warmer beige sand background */
    --bg-card: #f4efe6;
    --gold: #b38b59;
    --gold-hover: #967041;
    --text-main: #36332e;
    --text-muted: #736d64;
    --font-heading: 'Cinzel', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    color: var(--gold);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-main);
    margin-bottom: 15px;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-rooms {
    display: inline-block;
    padding: 12px 30px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    background-color: var(--gold);
    color: #ffffff;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.btn-primary:hover,
.btn-secondary:hover,
.btn-rooms:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 10px 25px rgba(179, 139, 89, 0.6), 0 10px 15px rgba(0, 0, 0, 0.1);
    background-color: var(--gold);
    color: #ffffff;
}

.btn-rooms {
    font-size: 0.85rem;
    padding: 10px 20px;
    margin-top: 15px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
    background: transparent;
}

.navbar.scrolled {
    background: rgba(232, 219, 204, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    height: 80px;
    align-self: center;
    transition: var(--transition);
    filter: brightness(0) invert(1) drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

/* Specific adjustment for logo if it's already white/gold */
.navbar.scrolled .nav-logo {
    height: 50px;
    filter: brightness(0) opacity(0.85);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(232, 219, 204, 0.98);
    padding: 30px 20px;
    gap: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    align-items: center;
    border-top: 1px solid rgba(179, 139, 89, 0.2);
    border-bottom: 2px solid var(--gold);
}

.nav-links.active a {
    color: var(--text-main);
    font-size: 1.15rem;
    letter-spacing: 2px;
}

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
}

.navbar.scrolled .nav-links a {
    color: var(--text-main);
    text-shadow: none;
}

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

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

.hamburger {
    display: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('fotos/inicio.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    padding: 0 20px;
}

.hero .stars {
    color: #e6ba45;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.4);
    font-size: 1.2rem;
    margin-bottom: 20px;
    letter-spacing: 3px;
    margin-top: 60px;
    /* added spacing from header */
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    white-space: nowrap;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    color: #fcfcfc;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-desc {
    color: var(--text-muted);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

strong {
    color: var(--gold);
    font-weight: 500;
}

.distances {
    margin: 30px 0;
    background: var(--bg-card);
    padding: 20px;
    border-left: 3px solid var(--gold);
}

.distance-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.distance-item:last-child {
    margin-bottom: 0;
}

.distance-item i {
    color: var(--gold);
}

.nit-quote {
    font-style: italic;
    color: var(--text-muted);
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
}

.nit-quote p {
    margin-left: 15px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.nit-quote i {
    position: absolute;
    left: 0;
    top: 5px;
    color: rgba(179, 139, 89, 0.15);
    font-size: 2rem;
}

.nit-link {
    display: inline-block;
    color: var(--gold);
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 500;
    margin-left: 15px;
    transition: var(--transition);
}

.nit-link:hover {
    color: var(--text-main);
}

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

.img-comp-1,
.img-comp-2 {
    position: absolute;
    border: 3px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.img-comp-1 {
    width: 65%;
    height: 350px;
    top: 0;
    left: 0;
    z-index: 2;
}

.img-comp-2 {
    width: 65%;
    height: 300px;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.img-comp-1 img,
.img-comp-2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.img-comp-1:hover img,
.img-comp-2:hover img {
    transform: scale(1.05);
}

/* Amenities Section */
.amenities-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: stretch;
}

.amenities-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amenities-content .section-desc {
    margin-bottom: 25px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.amenity-card {
    background: var(--bg-card);
    padding: 16px 12px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    transition: var(--transition);
}

.amenity-card i {
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.amenity-card span {
    display: block;
    font-size: 0.92rem;
    font-weight: 500;
}

.amenity-card:hover {
    transform: translateY(-5px);
    background: #eae6db;
    border-color: rgba(179, 139, 89, 0.3);
}

.amenities-image-wrapper {
    position: relative;
    border: 3px solid var(--gold);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    width: 100%;
    height: 100%;
}

.amenities-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.amenities-image-wrapper:hover .amenities-image {
    transform: scale(1.05);
}

/* Rooms Section */
.rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.room-card {
    background: var(--bg-card);
    border-radius: 4px;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.room-img {
    height: 250px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

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

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

.guests {
    position: absolute;
    bottom: 15px;
    right: 15px;
    background: rgba(232, 219, 204, 0.9);
    backdrop-filter: blur(5px);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--gold);
}

.room-info {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.room-info .btn-rooms {
    margin-top: auto;
    /* Pushes the button to the bottom */
}

.bed-types p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: block;
    line-height: 1.5;
}

.bed-types p strong {
    white-space: nowrap;
}

.bed-types {
    margin-bottom: 25px;
}

/* Gallery Slider */
.gallery-slider {
    overflow: hidden;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
}

.gallery-track {
    display: flex;
    gap: 15px;
    width: max-content;
}

.track-left {
    animation: scrollGalleryLeft 30s linear infinite;
}

.track-right {
    animation: scrollGalleryRight 30s linear infinite;
}

.gallery-track img {
    height: 300px;
    width: 260px;
    flex-shrink: 0;
    object-fit: cover;
    border-radius: 4px;
    transition: transform 0.4s ease, filter 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

@keyframes scrollGalleryLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(var(--scroll-dist, -50%));
    }
}

@keyframes scrollGalleryRight {
    0% {
        transform: translateX(var(--scroll-dist, -50%));
    }

    100% {
        transform: translateX(0);
    }
}

.gallery-track img:hover {
    transform: scale(1.05);
    filter: brightness(1.03);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    z-index: 10;
    position: relative;
    opacity: 1;
}

/* Testimonials */
.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    align-items: stretch;
}

.testi-card {
    background: var(--bg-card);
    padding: 40px;
    border-radius: 4px;
    position: relative;
    border-top: 3px solid transparent;
    transition: var(--transition);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.testi-card:hover {
    border-top: 3px solid var(--gold);
    transform: translateY(-5px);
}

.testi-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testi-text {
    font-size: 1.05rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 25px;
    line-height: 1.8;
}

.testi-author {
    color: var(--text-main);
    font-weight: 500;
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    /* Changed from black to match side sections */
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 70px;
    margin-bottom: 20px;
    filter: brightness(0) opacity(0.8);
}

.footer-brand p {
    color: var(--text-muted);
    max-width: 300px;
}

.footer-contact h3,
.footer-social h3 {
    font-family: var(--font-heading);
    color: var(--text-main);
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.footer-contact p {
    color: var(--text-muted);
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.footer-contact a {
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--gold) !important;
}

.footer-contact i {
    color: var(--gold);
    margin-top: 5px;
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-card);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gold);
    color: #ffffff;
}

.social-links .booking-link {
    width: auto;
    padding: 0 20px;
    border-radius: 25px;
    gap: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Zona Envolvente Section */
.surrounding-section {
    margin-top: 80px;
    border-top: 1px solid rgba(179, 139, 89, 0.2);
    padding-top: 60px;
}

.surrounding-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.surrounding-card {
    background: var(--bg-card);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
}

.surrounding-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.surrounding-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.surrounding-card:hover img {
    transform: scale(1.08);
}

.surrounding-info {
    padding: 25px 20px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.surrounding-info i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.surrounding-info h4 {
    font-family: var(--font-heading);
    color: var(--text-main);
    font-size: 1.15rem;
    margin-bottom: 8px;
    line-height: 1.3;
}

.surrounding-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

@media (max-width: 992px) {

    .about-grid,
    .footer-grid,
    .amenities-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .img-comp-1 {
        width: 70%;
        height: 300px;
    }

    .img-comp-2 {
        width: 70%;
        height: 250px;
    }

    .hero-title {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .navbar .btn-primary {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero {
        background-attachment: scroll;
        /* Fixes iOS mobile background-attachment issues */
    }

    .hero-title {
        font-size: 2.8rem;
        white-space: normal;
        /* Removes nowrap causing horizontal scroll */
        word-wrap: break-word;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .about-images {
        height: 400px;
    }

    .img-comp-1 {
        height: 250px;
    }

    .img-comp-2 {
        height: 200px;
    }

    .rooms-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .section {
        padding: 60px 0;
    }

    .testi-grid {
        grid-template-columns: 1fr;
        /* Override minmax(300px) causing scroll */
    }

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Keep side-by-side on mobile so cards are paired */
    }

    .room-info {
        padding: 20px;
    }

    .testi-card {
        padding: 30px 20px;
    }

    .footer-rights {
        display: block;
        margin-top: 5px;
    }
}

/* Back To Top Button */
.back-to-top {
    position: fixed;
    bottom: -60px;
    /* hidden initially */
    right: 30px;
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.show {
    bottom: 30px;
}

.back-to-top:hover {
    background: #ffffff;
    color: var(--gold);
    transform: translateY(-5px);
}

/* ===== Reservation Choice Modal ===== */
.reserva-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(36, 31, 25, 0.65);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.reserva-modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.reserva-modal-box {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 44px 40px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(179, 139, 89, 0.15);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
    opacity: 0;
}

.reserva-modal-overlay.active .reserva-modal-box {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.reserva-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1rem;
    color: var(--text-muted);
    cursor: pointer;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition);
}

.reserva-modal-close:hover {
    background: rgba(0, 0, 0, 0.07);
    color: var(--text-main);
}

.reserva-modal-header {
    text-align: center;
    margin-bottom: 28px;
}

.reserva-modal-icon {
    width: 58px;
    height: 58px;
    background: linear-gradient(135deg, var(--gold), #d4a96a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 1.4rem;
    color: #fff;
    box-shadow: 0 8px 20px rgba(179, 139, 89, 0.4);
}

.reserva-modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    color: var(--text-main);
    margin-bottom: 8px;
}

.reserva-modal-header p {
    font-size: 0.92rem;
    color: var(--text-muted);
}

.reserva-modal-options {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.reserva-option {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 20px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.reserva-option::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.reserva-option:hover::before {
    opacity: 1;
}

.reserva-option:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
}

.reserva-option--booking {
    background: #003580;
    color: #fff;
}

.reserva-option--booking::before {
    background: linear-gradient(135deg, #0057b8, #003580);
}

.reserva-option--booking:hover {
    box-shadow: 0 12px 28px rgba(0, 53, 128, 0.45);
}

.reserva-option--whatsapp {
    background: #1a7a45;
    color: #fff;
}

.reserva-option--whatsapp::before {
    background: linear-gradient(135deg, #25d366, #1a7a45);
}

.reserva-option--whatsapp:hover {
    box-shadow: 0 12px 28px rgba(37, 211, 102, 0.35);
}

.reserva-option-icon {
    width: 46px;
    height: 46px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.reserva-option-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    position: relative;
    z-index: 1;
}

.reserva-option-title {
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
}

.reserva-option-desc {
    font-size: 0.82rem;
    opacity: 0.82;
    line-height: 1.4;
}

.reserva-option-arrow {
    font-size: 0.85rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
    transition: transform 0.25s ease;
}

.reserva-option:hover .reserva-option-arrow {
    transform: translateX(5px);
    opacity: 1;
}

@media (max-width: 480px) {
    .reserva-modal-box {
        padding: 36px 24px 28px;
    }

    .reserva-modal-header h2 {
        font-size: 1.3rem;
    }

    .reserva-option {
        padding: 15px 16px;
        gap: 14px;
    }
}

/* Room Number Badge */
.room-number {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: white;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: bold;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

/* Slider CSS */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-wrapper .slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--bg-card);
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1;
}

.slider-wrapper .slide.active {
    opacity: 1;
    z-index: 2;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0;
}

.slider-container:hover .slider-btn {
    opacity: 1;
}

.slider-btn:hover {
    background: var(--gold);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}
@media (max-width: 768px) {
    .reserva-widget-container {
        margin-left: -15px;
        margin-right: -15px;
    }
}

