:root {
    --primary: #FFD166;   /* Amarillo vibrante */
    --secondary: #EF476F; /* Rosa fuerte para detalles */
    --dark: #073B4C;      /* Azul muy oscuro (fondo) */
    --light: #FFFFFF;
    --gray: #F8F9FA;
    --font-head: 'Oswald', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: var(--font-body); color: var(--dark); background: var(--light); line-height: 1.6; }
a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* NAVBAR */
.hostel-nav {
    display: flex; justify-content: space-between; align-items: center;
    padding: 15px 5%; background: var(--dark); color: var(--light);
    position: sticky; top: 0; z-index: 100;
}
.logo { font-family: var(--font-head); font-size: 1.5rem; font-weight: 700; letter-spacing: 1px; display: flex; align-items: center; gap: 10px; }
.logo-box { background: var(--primary); color: var(--dark); padding: 2px 8px; transform: rotate(-5deg); display: inline-block; }

.nav-menu { display: flex; gap: 30px; align-items: center; }
.nav-menu a { font-weight: 600; text-transform: uppercase; font-size: 0.9rem; }
.nav-menu a:hover { color: var(--primary); }
.btn-cta { background: var(--secondary); padding: 10px 25px; border-radius: 50px; font-weight: bold; }
.btn-cta:hover { background: var(--primary); color: var(--dark); transform: scale(1.05); }
.hamburger { display: none; font-size: 1.5rem; color: var(--primary); cursor: pointer; }

/* HERO (ENERGÍA) */
.hero-hostel {
    background: linear-gradient(rgba(7, 59, 76, 0.7), rgba(7, 59, 76, 0.7)), url('https://images.unsplash.com/photo-1523309996740-d5315f9cc28b?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80') center/cover;
    height: 80vh; display: flex; align-items: center; justify-content: center; text-align: center; color: var(--light);
}
.tagline { background: var(--secondary); padding: 5px 15px; font-weight: bold; font-family: var(--font-head); letter-spacing: 2px; font-size: 1rem; display: inline-block; margin-bottom: 20px; transform: rotate(-2deg); }
.hero-content h1 { font-family: var(--font-head); font-size: 4.5rem; line-height: 1; margin-bottom: 20px; text-transform: uppercase; text-shadow: 3px 3px 0px var(--dark); }
.hero-content p { font-size: 1.2rem; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.hero-btns { display: flex; justify-content: center; gap: 20px; }
.btn-primary { background: var(--primary); color: var(--dark); padding: 15px 30px; font-weight: 700; text-transform: uppercase; font-family: var(--font-head); font-size: 1.1rem; border: 2px solid var(--primary); }
.btn-primary:hover { background: transparent; color: var(--primary); }
.btn-secondary { border: 2px solid var(--light); color: var(--light); padding: 15px 30px; font-weight: 700; text-transform: uppercase; font-family: var(--font-head); font-size: 1.1rem; }
.btn-secondary:hover { background: var(--light); color: var(--dark); }

/* VIBE BAR */
.vibe-bar { background: var(--primary); display: flex; justify-content: center; flex-wrap: wrap; padding: 40px 20px; gap: 50px; }
.vibe-item { text-align: center; color: var(--dark); }
.vibe-item i { font-size: 2.5rem; margin-bottom: 10px; }
.vibe-item h3 { font-family: var(--font-head); text-transform: uppercase; font-size: 1.2rem; }

/* SECCIONES */
.section { padding: 80px 20px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 { font-family: var(--font-head); font-size: 3rem; text-transform: uppercase; color: var(--dark); position: relative; display: inline-block; }
.section-header h2::after { content: ''; width: 50%; height: 5px; background: var(--secondary); position: absolute; bottom: -10px; left: 25%; }

/* ROOMS */
.rooms-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.room-card { background: var(--light); border: 2px solid #eee; transition: 0.3s; position: relative; }
.room-card:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 10px 10px 0px var(--dark); }
.highlight-card { border-color: var(--primary); }

.room-img { height: 250px; overflow: hidden; position: relative; }
.room-img img { width: 100%; height: 100%; object-fit: cover; }
.price-badge { position: absolute; top: 15px; right: 15px; background: var(--dark); color: var(--light); padding: 5px 10px; font-weight: bold; font-family: var(--font-head); transform: rotate(3deg); }

.room-details { padding: 25px; }
.room-details h3 { font-family: var(--font-head); font-size: 1.5rem; margin-bottom: 15px; text-transform: uppercase; }
.specs li { margin-bottom: 8px; font-size: 0.9rem; color: #555; }
.specs i { color: var(--secondary); width: 20px; }

/* EVENTS (DISEÑO ASIMÉTRICO) */
.events-section { background: var(--dark); color: var(--light); padding: 80px 0; overflow: hidden; }
.events-flex { display: flex; align-items: center; gap: 50px; }
.events-text { flex: 1; padding: 20px; }
.events-text h2 { font-family: var(--font-head); font-size: 3rem; margin-bottom: 10px; color: var(--primary); }
.events-img { flex: 1; transform: rotate(3deg); border: 5px solid var(--light); }
.events-img img { width: 100%; display: block; }

.agenda { margin-top: 30px; border-left: 2px solid var(--secondary); padding-left: 20px; }
.agenda-item { display: flex; gap: 20px; margin-bottom: 15px; align-items: center; }
.day { font-family: var(--font-head); font-weight: bold; background: var(--light); color: var(--dark); padding: 2px 8px; width: 50px; text-align: center; }
.activity { font-size: 1.1rem; }

/* FOOTER */
.hostel-footer { background: #052b38; color: var(--light); padding: 60px 20px; text-align: center; }
.hostel-footer h3 { font-family: var(--font-head); font-size: 2rem; margin-bottom: 20px; color: var(--primary); }
.social-icons { margin: 30px 0; display: flex; justify-content: center; gap: 20px; }
.social-icons a { width: 50px; height: 50px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; border-radius: 50%; font-size: 1.2rem; transition: 0.3s; }
.social-icons a:hover { background: var(--secondary); transform: scale(1.1); }
.copy { font-size: 0.8rem; opacity: 0.5; margin-top: 30px; }

/* RESPONSIVE */
@media (max-width: 768px) {
    .nav-menu { display: none; position: absolute; top: 70px; left: 0; width: 100%; background: var(--dark); flex-direction: column; padding: 20px; }
    .nav-menu.active { display: flex; }
    .hamburger { display: block; }
    .hero-content h1 { font-size: 3rem; }
    .events-flex { flex-direction: column; }
    .events-img { transform: none; width: 100%; }
}