:root {
    --rosa-oscuro: #8B5A6B;
    --rosa-medio: #C9A9A6;
    --rosa-claro: #F5E6E8;
    --dorado: #C4A35A;
    --dorado-claro: #E8D5A8;
    --blanco: #FFFDF9;
    --gris-oscuro: #2D2D2D;
    --gris-medio: #6B6B6B;
    --sombra: 0 4px 20px rgba(139, 90, 107, 0.15);
}

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

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    background: linear-gradient(135deg, var(--blanco) 0%, var(--rosa-claro) 100%);
    color: var(--gris-oscuro);
    line-height: 1.6;
    min-height: 100vh;
}

h1, h2, h3, h4 {
    font-weight: 400;
    letter-spacing: 1px;
}

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

/* Header */
header {
    background: rgba(255, 253, 249, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: var(--sombra);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 1.8rem;
    color: var(--rosa-oscuro);
    font-weight: 500;
}

.logo span {
    color: var(--dorado);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--rosa-oscuro);
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 1100;
}

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

nav a {
    text-decoration: none;
    color: var(--gris-oscuro);
    font-size: 1.1rem;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--dorado);
}

/* Carousel */
.carousel-section {
    position: relative;
    margin-top: 70px;
    height: 500px;
    overflow: hidden;
    background: var(--gris-oscuro);
}

.carousel-container {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 40px 20px 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    text-align: center;
}

.carousel-caption h2 { font-size: 2rem; }

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.carousel-btn {
    background: rgba(255,255,255,0.3);
    border: none;
    color: white;
    font-size: 2rem;
    padding: 15px;
    cursor: pointer;
    border-radius: 50%;
    pointer-events: auto;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
}

.carousel-dot.active { background: white; }

/* Hero */
.hero {
    min-height: 400px;
    padding: 100px 0;
    display: flex;
    align-items: center;
    text-align: center;
    background: linear-gradient(rgba(245, 230, 232, 0.5), rgba(255, 253, 249, 0.5));
}

.hero h1 { font-size: 3.5rem; color: var(--rosa-oscuro); margin-bottom: 20px; }
.hero p { font-size: 1.4rem; color: var(--gris-medio); margin-bottom: 40px; }

.btn {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--rosa-oscuro), var(--dorado));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    transition: transform 0.3s;
    border: none;
    cursor: pointer;
}

.btn:hover { transform: translateY(-3px); }

/* Servicios */
section { padding: 80px 0; }
.section-title { text-align: center; font-size: 2.5rem; color: var(--rosa-oscuro); margin-bottom: 50px; }
.section-title span { color: var(--dorado); }

.servicios-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.servicio-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--sombra);
    transition: transform 0.3s;
}

.servicio-card:hover { transform: translateY(-10px); }
.servicio-imagen { height: 200px; background: var(--rosa-claro); display: flex; align-items: center; justify-content: center; font-size: 4rem; }
.servicio-contenido { padding: 25px; }
.servicio-contenido h3 { color: var(--rosa-oscuro); margin-bottom: 10px; }
.servicio-precio { display: flex; justify-content: space-between; border-top: 1px solid var(--rosa-claro); padding-top: 15px; }
.precio { font-size: 1.5rem; color: var(--dorado); font-weight: 600; }

/* Reservas */
.reserva-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--rosa-claro);
    border-radius: 10px;
    font-family: inherit;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2000;
    align-items: center; justify-content: center;
}

.modal.active { display: flex; }
.modal-content { background: white; padding: 40px; border-radius: 20px; max-width: 400px; text-align: center; }

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 300px;
        height: 100vh;
        background: white;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        padding: 80px 30px;
        z-index: 1050;
    }
    
    nav.active { right: 0; }
    nav ul { flex-direction: column; gap: 20px; }
    nav a { font-size: 1.2rem; display: block; width: 100%; }

    .hero h1 { font-size: 2.2rem; }
    .reserva-container { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; gap: 0; }
    
    .carousel-section { height: 300px; margin-top: 60px; }
}

/* Admin Styles (simplified for brevity but functional) */
.table-responsive { width: 100%; overflow-x: auto; margin-bottom: 20px; }
.data-table { width: 100%; border-collapse: collapse; min-width: 600px; }
.data-table th, .data-table td { padding: 15px; text-align: left; border-bottom: 1px solid var(--rosa-claro); }

footer { background: var(--rosa-oscuro); color: white; text-align: center; padding: 40px 0; }
