:root {
    --black: #000000;
    --white: #ffffff;
    --gray-bg: #f9f9f9;
    --text-muted: #666;
    --border-color: #ccc;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--white);
    /* Patrón de fondo sutil */
    background-image: radial-gradient(var(--border-color) 0.5px, transparent 0.5px);
    background-size: 30px 30px;
    min-height: 100vh;
}

/* Header */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: var(--white);
}

.logo {
    text-align: center;
    line-height: 1;
}

.logo .classic { font-size: 0.7rem; letter-spacing: 4px; font-weight: 700; }
.logo h1 { font-size: 1.8rem; font-weight: 900; margin: 2px 0; }
.logo .shop { font-size: 0.8rem; letter-spacing: 2px; }

.nav-links a {
    text-decoration: none;
    color: var(--black);
    margin: 0 15px;
    font-size: 0.9rem;
    font-weight: 500;
}

.member-btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 8px 40px;
    cursor: pointer;
    font-weight: 600;
}

/* Hero Section */
.hero {
    display: flex;
    height: calc(100vh - 100px);
    overflow: hidden;
    position: relative;
}

.hero-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    height: 100%;
    z-index: 1;
}

.left-img {
    background-image: url('https://images.unsplash.com/photo-1503951914875-452162b0f3f1?q=80&w=1000');
    /* Efecto de borde rasgado derecho */
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

.right-img {
    background-image: url('https://images.unsplash.com/photo-1621605815841-aa344933958c?q=80&w=1000');
    /* Efecto de borde rasgado izquierdo */
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
}

/* Contenido Central */
.hero-content {
    flex: 1.2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
    z-index: 2;
}

.booking-card {
    max-width: 500px;
    text-align: center;
}

.booking-card h2 {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 10px;
}

.subtitle {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.booking-form select {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid var(--black);
    font-size: 0.9rem;
    background: white;
}

.submit-btn {
    display: block;
    width: 100%;
    padding: 15px;
    margin-bottom: 15px;
    background: var(--black);
    color: var(--white);
    border: none;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
}

.description {
    margin-top: 25px;
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsivo básico */
@media (max-width: 900px) {
    .hero { flex-direction: column; height: auto; }
    .hero-side { height: 300px; clip-path: none; }
    .hero-content { padding: 40px 20px; }
    .nav-links { display: none; }
}