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

:root {
    /* Paleta de colores elegante - Casa Toledo */
    --primary-color: #3d2817;
    --secondary-color: #ffffff;
    --accent-color: #c9a961;
    --accent-gold: #d4af37;
    --text-dark: #2c1810;
    --text-light: #6b5d4f;
    --bg-light: #f5f1eb;
    --bg-cream: #faf8f4;
    --bg-dark: #2c1810;
    --bg-beige: #e8e0d6;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background-color: var(--bg-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
}

/* Navegación */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(61, 40, 23, 0.1);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid var(--bg-beige);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    letter-spacing: 0.5px;
}

.logo-img {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-gold);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--accent-gold);
}

.book-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    transition: background 0.3s;
}

.book-btn:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
}

/* Menú Hamburguesa */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger-menu span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
}

.hamburger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger-menu.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Menú móvil desplegable */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: var(--bg-cream);
    box-shadow: -2px 0 10px rgba(61, 40, 23, 0.2);
    z-index: 1000;
    transition: right 0.3s ease;
    padding-top: 80px;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid var(--bg-beige);
}

.mobile-menu ul li a {
    display: block;
    padding: 1.5rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background: var(--bg-light);
    color: var(--accent-gold);
    padding-left: 2.5rem;
}

.mobile-menu .book-btn-mobile {
    margin: 1.5rem 2rem;
    width: calc(100% - 4rem);
    text-align: center;
    display: block;
    background: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    transition: background 0.3s;
}

.mobile-menu .book-btn-mobile:hover {
    background: var(--accent-gold);
    color: var(--primary-color);
}

/* Secciones */
.section {
    display: none;
    min-height: 100vh;
    padding-top: 80px;
}

.section.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(rgba(45, 40, 23, 0.6), rgba(45, 40, 23, 0.5)),
                url('fotos/banner.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--secondary-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 40, 23, 0.5);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    color: var(--secondary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary {
    background: var(--accent-gold);
    color: var(--primary-color);
    font-family: 'Lato', sans-serif;
}

.btn-secondary {
    background: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Amenidades */
.amenities-section {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

.amenities-section h2,
.events-section h2,
.services-section h2,
.architecture-section h2,
.gallery-container h2,
.location-container h2,
.reviews-container h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Título Conócenos dentro de la columna izquierda */
.about-title,
.about-text-left h2 {
    text-align: left;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.amenities-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.amenity-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--bg-beige);
}

.amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.amenity-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.amenity-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.amenity-card p {
    color: var(--text-light);
}

/* Eventos */
.events-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.events-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.event-card {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--bg-beige);
    background: var(--secondary-color);
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(61, 40, 23, 0.2);
}

.event-image {
    height: 400px;
    position: relative;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.event-content {
    padding: 2rem;
    background: var(--secondary-color);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-content h3 {
    font-size: 1.75rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.event-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Conócenos */
.about-section {
    padding: 5rem 2rem 2rem;
    background: var(--secondary-color);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
}

.about-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

.about-text-left {
    padding: 0 2rem 0 0;
}

.about-description,
.about-text-left p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.3rem;
    margin: 0;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}

.about-image-right {
    position: relative;
    height: 100%;
    min-height: 500px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(61, 40, 23, 0.15);
}

.about-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Croquis del Lugar */
.architecture-section {
    padding: 1rem 2rem 5rem;
    background: var(--bg-light);
}

.architecture-container {
    max-width: 1200px;
    margin: 0 auto;
}

.croquis-container {
    margin-top: 2rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.croquis-image {
    width: 100%;
    max-width: 1000px;
    height: auto;
    object-fit: contain;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.1);
}

/* Información Adicional */
.services-section {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.brochure-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.brochure-link {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--secondary-color);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.1);
    transition: all 0.3s ease;
    border: 2px solid var(--bg-beige);
    text-decoration: none;
    color: inherit;
}

.brochure-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(61, 40, 23, 0.2);
    border-color: var(--accent-gold);
}

.brochure-icon {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brochure-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

.brochure-content {
    flex: 1;
}

.brochure-content h3 {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.brochure-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
    font-family: 'Lato', sans-serif;
}

.brochure-arrow {
    font-size: 2rem;
    color: var(--accent-gold);
    flex-shrink: 0;
    transition: transform 0.3s;
}

.brochure-link:hover .brochure-arrow {
    transform: translateX(5px);
}

/* Galería */
.gallery-section {
    min-height: 100vh;
    padding-top: 80px;
}

/* Carrusel Principal */
.carousel-container {
    position: relative;
    width: 100%;
    height: 85vh;
    min-height: 600px;
    overflow: hidden;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2rem;
}

.carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 0;
}

.carousel-slide.active {
    opacity: 1;
    z-index: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.carousel-overlay {
    display: none !important;
}

.carousel-btn {
    position: relative;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 11;
    display: none;
    place-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
    flex-shrink: 0;
}

/* Chevrons hechos con CSS (bordes) */
.carousel-btn::before {
    content: "";
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    transform: rotate(135deg);
    display: block;
    transform-origin: center center;
    position: relative;
    top: 0px;
    left: 1px;
}

.carousel-next::before {
    transform: rotate(-45deg);
    transform-origin: center center;
    position: relative;
    top: 0px;
    left: 0px;
}

.carousel-btn:hover {
    background: var(--accent-gold);
    transform: none;
}

.carousel-btn:hover::before {
    border-color: var(--primary-color);
}

.carousel-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-prev {
    order: -1;
}

.carousel-next {
    order: 1;
}

.carousel-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: scale(1.3);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
}

.gallery-container {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

/* Ubicación - Página independiente */
.location-section {
    min-height: 100vh;
    padding-top: 80px;
}

/* Reserva - Página de Formulario */
.reservation-section {
    min-height: 100vh;
    padding-top: 100px;
    padding-bottom: 5rem;
    background: var(--bg-cream);
}

.reservation-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reservation-form {
    background: var(--secondary-color);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(61, 40, 23, 0.1);
    border: 1px solid var(--bg-beige);
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 2rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--bg-beige);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    color: var(--text-dark);
    background: var(--bg-cream);
    transition: all 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    opacity: 0.7;
}

.form-group input[type="date"] {
    cursor: pointer;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 1.25rem;
    background: var(--accent-gold);
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 1rem;
}

.submit-btn:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.2);
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.form-message {
    margin-top: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    font-family: 'Lato', sans-serif;
    display: none;
}

.form-message.success {
    display: block;
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message.error {
    display: block;
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Opción de Descuento */
.discount-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    margin: 2rem 0 1rem;
    background: var(--bg-cream);
    border: 2px solid var(--bg-beige);
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
}

.discount-option:hover {
    background: #f0ebe5;
    border-color: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 40, 23, 0.1);
}

.discount-option.active {
    background: #d4edda;
    border-color: #28a745;
    box-shadow: 0 4px 15px rgba(40, 167, 69, 0.2);
}

.discount-option.active .discount-icon {
    transform: scale(1.2);
}

.discount-option.active .discount-text {
    color: #155724;
    font-weight: 600;
}

.discount-icon {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.discount-text {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    transition: all 0.3s ease;
}

.discount-option.active .discount-text::after {
    content: ' ✓ Activado';
    color: #28a745;
    font-weight: 600;
    margin-left: 0.5rem;
}

/* Reseñas - Página independiente */
.reviews-section {
    min-height: 100vh;
    padding-top: 80px;
}

.gallery-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--secondary-color);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.zoom-icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    display: block;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    opacity: 0.85;
}

.zoom-text {
    font-size: 1rem;
    font-weight: 400;
    font-family: 'Lato', sans-serif;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    opacity: 0.85;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-caption {
    display: none !important;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--secondary-color);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 2001;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: all 0.3s;
    z-index: 2001;
    padding: 0;
    margin: 0;
    font-size: 0;
    line-height: 0;
}

/* Chevrons CSS para lightbox */
.lightbox-prev::before,
.lightbox-next::before {
    content: "";
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    display: block;
    transform-origin: center center;
    position: relative;
    top: 10px;
    left: 1px;
}

.lightbox-prev::before {
    transform: rotate(135deg);
}

.lightbox-next::before {
    transform: rotate(-45deg);
    top: 10px;
    left: 0px;
}

.lightbox-prev {
    left: 2rem;
}

.lightbox-next {
    right: 2rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: var(--accent-gold);
    transform: translateY(-50%);
}

.lightbox-prev:hover::before,
.lightbox-next:hover::before {
    border-color: var(--accent-gold);
}

/* Responsive para lightbox */
@media (max-width: 768px) {
    .lightbox-close {
        top: 1rem;
        right: 1rem;
        width: 40px;
        height: 40px;
        font-size: 2rem;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 50px;
        height: 50px;
    }

    .lightbox-prev::before,
    .lightbox-next::before {
        width: 10px;
        height: 10px;
        border-width: 1.5px;
    }

    .lightbox-prev {
        left: 1rem;
    }

    .lightbox-next {
        right: 1rem;
    }

    .lightbox-prev:hover,
    .lightbox-next:hover {
        transform: translateY(-50%);
    }

    .lightbox-caption {
        display: none !important;
    }
}

/* Ubicación */
.location-container {
    padding: 5rem 2rem;
    background: var(--bg-light);
}

.location-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.location-info > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    min-width: 30px;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.contact-item p {
    color: var(--text-light);
    margin: 0.25rem 0;
}

.map-container {
    height: 500px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.15);
    border: 1px solid var(--bg-beige);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Reseñas */
.reviews-container {
    padding: 5rem 2rem;
    background: var(--bg-cream);
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(61, 40, 23, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid var(--bg-beige);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.review-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}

.review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gold);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    font-family: 'Lato', sans-serif;
}

.review-info h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.review-stars {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.review-text {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.review-date {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Pie de Página */
.footer {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-gold);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

/* Animaciones */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .logo {
        font-size: 1.25rem;
        gap: 0.5rem;
    }

    .logo-img {
        height: 32px;
        max-width: 120px;
    }

    /* Ocultar menú normal en móvil */
    .nav-menu {
        display: none !important;
    }

    /* Ocultar botón "Reservar Ya" del navbar en móvil */
    .book-btn,
    .nav-container .book-btn,
    .nav-container a.book-btn {
        display: none !important;
        visibility: hidden !important;
    }

    /* Mostrar menú hamburguesa */
    .hamburger-menu {
        display: flex;
    }

    /* Centrar logo en móvil (compensando el espacio del hamburger) */
    .nav-container {
        justify-content: center;
        position: relative;
        padding-left: 3.5rem; /* Compensar espacio del hamburger menu */
        padding-right: 3.5rem; /* Compensar espacio del hamburger menu */
    }

    .logo {
        justify-content: center;
        margin-left: -1.5rem; /* Ajuste fino para centrado visual */
    }

    .hamburger-menu {
        position: absolute;
        right: 2rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .location-content {
        grid-template-columns: 1fr;
    }

    .amenities-grid,
    .events-grid,
    .gallery-grid,
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .events-grid {
        gap: 2rem;
    }

    .event-image {
        height: 300px;
    }

    /* Brochure responsive */
    .brochure-link {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 1.5rem;
    }

    .brochure-logo {
        height: 60px;
        max-width: 150px;
    }

    .brochure-content h3 {
        font-size: 1.5rem;
    }

    .brochure-content p {
        font-size: 1rem;
    }

    .brochure-arrow {
        font-size: 1.5rem;
    }

    .about-content-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        display: flex;
        flex-direction: column;
    }

    /* Orden en móvil: título -> imagen -> texto */
    .about-text-left {
        padding: 1rem;
        display: flex;
        flex-direction: column;
        order: 1;
    }

    .about-title {
        font-size: 2rem;
        text-align: left;
        margin-bottom: 1.5rem;
        order: 1;
    }

    .about-description {
        font-size: 1.15rem;
        order: 3;
        margin-top: 0;
    }

    .about-image-right {
        min-height: auto;
        max-height: none;
        height: auto;
        order: 2;
        margin-bottom: 0;
        overflow: visible;
    }

    .about-image-right img {
        object-fit: contain;
        object-position: center;
        width: 100%;
        height: auto;
        max-height: none;
        display: block;
    }

    /* Croquis responsive */
    .croquis-container {
        margin-top: 1.5rem;
    }

    .croquis-image {
        width: 100%;
        max-width: 100%;
        height: auto;
        object-fit: contain;
    }

    /* Carrusel responsive */
    .carousel-container {
        height: 60vh;
        min-height: 450px;
    }

    .carousel-overlay {
        display: none !important;
    }

    .carousel-container {
        padding: 0 1rem;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

    .carousel-btn::before {
        width: 8px;
        height: 8px;
        border-width: 1.5px;
    }

    .carousel-btn:hover {
        transform: none;
    }

    .carousel-prev {
        left: 1rem;
    }

    .carousel-next {
        right: 1rem;
    }

    .carousel-dots {
        bottom: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    .book-btn {
        display: none;
    }

    /* Opción de descuento responsive */
    .discount-option {
        padding: 1rem;
        margin: 1.5rem 0 1rem;
    }

    .discount-text {
        font-size: 1rem;
    }

    .reservation-form {
        padding: 2rem 1.5rem;
    }
}

