* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* Navegación */
.navbar {
    background-color: #000;
    color: #fff;
    padding: 15px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    margin-right: 40px;
    letter-spacing: -1px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
    flex-grow: 1;
}

.nav-links a, .login {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.signup {
    background-color: #fff;
    color: #000;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    margin-left: 20px;
}

/* Hero Section */
.hero {
    height: 90vh;
    background-color: #f6f6f6;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
    z-index: 2;
}

/* Tarjeta de Reserva */
.booking-card {
    background: #fff;
    width: 100%;
    max-width: 500px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.card-tabs {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.tab {
    padding-bottom: 10px;
    border: none;
    background: none;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
}

.tab.active {
    border-bottom: 3px solid #000;
}

h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.input-field {
    width: 100%;
    padding: 12px 16px;
    margin: 8px 0;
    background-color: #f3f3f3;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 16px;
}

.input-field:focus {
    border-color: #000;
    outline: none;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    margin-top: 20px;
    cursor: pointer;
}

.btn-primary:hover {
    background-color: #333;
}

/* Imagen Hero */
.hero-image {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?auto=format&fit=crop&q=80&w=1000');
    background-size: cover;
    background-position: center;
}

/* Responsivo */
@media (max-width: 768px) {
    .hero-image { display: none; }
    .hero-container { padding: 0; }
    .booking-card { max-width: 100%; height: 100vh; }
    h1 { font-size: 36px; }
}