/* ===== MAISON MYU INDEX.CSS ===== */

/* ===== 1. Fuentes personalizadas ===== */
@font-face {
  font-family: 'Averia';
  src: url('/Assets/Fonts/AveriaSansLibre-Regular.ttf');
}

@font-face {
  font-family: 'Cancellaresca';
  src: url('/Assets/Fonts/1610_Cancellaresca_lim.TTF');
}

@font-face {
  font-family: 'Charmonman';
  src: url('/Assets/Fonts/Charmonman-Regular.ttf');
}

body {
  font-family: 'Averia', sans-serif;
  background-color: #fdfdfd;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== 2. Banner superior (imagen de título sin bordes) ===== */
.header-container {
  width: 100%;
  max-width: 1200px;
  display: flex;
  align-items: flex-end;
  height: 200px;
  padding: 10px;
  background: url('/Assets/Img/Ui/maison-title.png.png') no-repeat right center;
  background-size: contain;
  background-color: #f8f8f8;
  border: none;
  margin-bottom: 20px;
}

/* ===== 3. Layout principal ===== */
.main-layout {
  display: flex;
  max-width: 1200px;
  gap: 20px;
  padding: 0 20px 40px 20px;
  width: 100%;
  box-sizing: border-box;
}

/* ===== 4. Barra lateral izquierda ===== */
.navi {
  width: 215px;
  min-height: 645px;
  border: 1.5px ridge #dadcde;
  border-radius: 12px;
  background: white;
  padding: 10px;
  font-family: 'MS UI Gothic', sans-serif;
  color: gray;
  letter-spacing: 2px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.navbar-titles {
  background: linear-gradient(to bottom, #b0d5ff, #8cc3f5, #5aa7e2);
  box-shadow: rgba(0, 0, 0, 0.3) 0px 3px 8px;
  border: 1px solid #4da1da;
  color: white;
  padding: 4px 6px;
  margin-bottom: 8px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
}

/* ===== 5. Botones de idioma ===== */
.lang-switch {
  margin-top: 20px;
}

.lang-switch button {
  background: linear-gradient(to top left, #d4eaff, #ffffff);
  border: 1px solid #a0c8e6;
  border-radius: 12px;
  padding: 6px 12px;
  margin-bottom: 6px;
  font-weight: bold;
  font-family: 'Charmonman', cursive;
  color: #1c4d72;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.6);
}

.lang-switch button:hover {
  transform: translateY(-1px);
  filter: brightness(110%);
  background: linear-gradient(to top left, #e8f4ff, #ffffff);
}

/* ===== 6. Ventana de contenido principal ===== */
.main-window {
  flex: 1;
  border: 1.5px solid #bbb;
  padding: 20px;
  background-color: #fefefe;
  border-radius: 12px;
  box-shadow: 2px 2px 5px rgba(0,0,0,0.05);
}

.main-window h2,
.main-window h3 {
  font-size: 1em;
  text-align: center;
  border-bottom: 1px solid #888;
  margin-bottom: 8px;
  padding-bottom: 4px;
}

.main-window p {
  padding: 4px 0;
  font-size: 0.95em;
  line-height: 1.5;
}

