
/* Variables */
:root{
  --bg: #EFD9BF;
  --paper: #FFF8F0;
  --accent-dark: #4a2d16;
  --accent-mid: #8b4b1e;
  --accent-warm: #c98a55;
  --text-dark: #2e1f16;
  --muted: #6b5346;
  --vanilla: #F6E8C3;
  --footer-bg: #1f1f1f;
  --shadow: 0 6px 18px rgba(0,0,0,0.18);
  --radius: 12px;
  --max-width: 1200px;
}

/* --------------------------
   Reset y globales
   -------------------------- */
*{box-sizing:border-box;margin:0;padding:0}
html{
    scroll-behavior:smooth
}
body{
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: linear-gradient(180deg, var(--bg) 0%, #ecd7b8 100%);
  color:var(--text-dark);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.45;
  padding-top:110px;
}

.container{
  max-width:var(--max-width);
  margin:0 auto;
  padding:0 18px;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
/* --------------------------
   HEADER / NAV */

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;

    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#DCD5C2;
    padding:12px 25px;
    box-shadow:var(--shadow);
    z-index:9999;
}

/* Logo */
header .logo{
    margin-left:15px;
}

header .logo img{
    width:92px;
    height:auto;
    border-radius:8px;
}


/* Nav general */
nav{
    display:flex;
    flex:1;
    justify-content:center; /* centra el conjunto del nav */
    align-items:center;
    gap:60px; /* espacio entre BROWSE MENU y los otros */
}

/* BROWSE MENU */
nav a:first-child{
    font-weight:700;
    font-size:20px;
    color:var(--text-dark);
    padding:6px 10px;
    position:relative;
    transition:0.3s ease;
}
nav a:first-child::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:3px;
    background-color:var(--accent-mid);
    transition:width 0.3s ease;
}
nav a:first-child:hover::after{
    width:100%;
}
nav a:first-child:hover{
    transform:scale(1.08);
    color:var(--accent-mid);
}

/* LOCATION + CONTACT US */
nav a:not(:first-child){
    font-weight:700;
    font-size:20px;
    color:var(--text-dark);
    padding:6px 10px;
    margin-left:30px; 
    position:relative;
    transition:0.3s ease;
}
nav a:not(:first-child)::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-3px;
    width:0%;
    height:3px;
    background-color:var(--accent-mid);
    transition:width 0.3s ease;
}
nav a:not(:first-child):hover::after{
    width:100%;
}
nav a:not(:first-child):hover{
    transform:scale(1.08);
    color:var(--accent-mid);
}

/* --------------------------
   MOBILE
   -------------------------- */
@media(max-width:600px){
    header{
        flex-direction:column;
        align-items:center;
        padding:12px 10px;
    }
    nav{
        flex-direction:column;
        gap:12px;
    }
    nav a{
        font-size:18px;
        margin-left:0;
    }
    header .logo{
        margin-left:0;
    }
}



/* --------------------------
   HERO / SLIDER — 
   -------------------------- */

.hero{
  max-width:var(--max-width);
  margin:36px auto;
  display:flex;
  gap:40px;
  align-items:center;
  padding:0 18px;
}

.slider-wrapper{
  flex:1;
  min-width:260px;
  max-width:900px;
  position:relative;
}

.slider{
  display:flex;
  overflow:hidden;
  border-radius:12px;
  box-shadow:var(--shadow);
  aspect-ratio:16/9;
  background:#EFE4D1; /* madera de abedul */
}

.arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  background:linear-gradient(180deg,var(--accent-dark),#3a1d0b);
  color:#fff;
  border:0;
  padding:8px 12px;
  border-radius:10px;
  cursor:pointer;
  font-size:18px;
  opacity:0.95;
}
/* --------------------------
   HERO TEXT + ARROWS
   -------------------------- */
.arrow.left{
    left:8px;
}

.arrow.right{
    right:8px;
}

.hero-text{
    width:360px;
    background:linear-gradient(180deg,rgba(255,255,255,0.85), rgba(255,255,255,0.9));
    padding:20px;
    border-radius:12px;
    border:1px solid rgba(0,0,0,0.06);
}

.hero-text h2{
    font-size:28px;
    margin-bottom:8px;
    color:var(--text-dark);
}

.hero-text p{
    color:var(--muted);
    line-height:1.6;
}

/* ===========================
   MOBILE — BOTÓN BROWSE MENU ABEDUL
   =========================== */
@media(max-width:600px){
  .menu-btn{
    background:#EFE4D1 !important; /* madera de abedul */
    color:var(--accent-dark) !important;
    border:3px solid #C9B18A !important;
    box-shadow:0 4px 0 #C1A879, 0 8px 18px rgba(0,0,0,0.18) !important;
  }

  .menu-btn:hover{
    background:#E6DAC1 !important;
    transform:scale(1.05);
  }
}

/* --------------------------
   VIDEO HOME
   -------------------------- */
.home-video{
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:14px;
    padding:20px 0;
}

.video-container{
    width:92%;
    max-width:850px;
    border-radius:18px;
    overflow:hidden;
    border:6px solid var(--accent-dark);
    box-shadow:var(--shadow);
    background:#000; /* fondo neutro original */
}

.home-video video{
    width:100%;
    display:block;
    border-radius:12px;
    background:#000;
}

.video-slogan{
    font-family:Georgia,serif;
    font-weight:700;
    font-size:30px;
    color:var(--accent-dark);
    text-align:center;
    text-shadow:2px 2px 6px rgba(0,0,0,0.25);
}

.replay-btn{
    display:inline-block;
    margin-top:10px;
    background:var(--accent-dark);
    color:#fff;
    padding:10px 20px;
    border-radius:12px;
    border:0;
    cursor:pointer;
    font-weight:700;
    box-shadow:0 6px 14px rgba(0,0,0,0.25);
    transition:0.25s ease;
}

.replay-btn:hover{
    background:var(--accent-mid);
}

/* --------------------------
   INFO SECTION
   -------------------------- */
.info-section{
    display:flex;
    gap:28px;
    align-items:center;
    max-width:var(--max-width);
    margin:42px auto;
    padding:0 18px;
}

.info-image{
    width:45%;
}

.info-image img{
    width:100%;
    border-radius:12px;
    object-fit:cover;
}

.info-text{
    width:55%;
}
.menu-btn{
    display:inline-block;
    background:#EFE4D1; /* madera de abedul */
    color:var(--accent-dark); /* texto oscuro */
    padding:12px 26px;
    border-radius:10px;
    font-weight:800;
    border:3px solid #C9B18A; /* borde madera sutil */
    box-shadow:0 4px 0 #C1A879, 0 8px 20px rgba(0,0,0,0.28);
    transition:0.25s ease;
}

.menu-btn:hover{
    background:#E6DAC1; /* hover un poco más claro */
    transform:scale(1.05);
}
/* --------------------------
   MENU INTRO 
   -------------------------- */
.menu-intro{
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 40px auto;
  gap: 30px;
  padding: 0 18px;
  flex-wrap: wrap;
}

.menu-intro .intro-text{
  flex: 1 1 45%;
  font-size: 20px;
  color: var(--text-dark);
  line-height: 1.6;
}

.menu-intro .intro-image{
  flex: 1 1 45%;
  display: flex;
  justify-content: flex-end;
}

.menu-intro .intro-image img{
  border-radius: 12px;
  max-width: 100%;
  height: auto;
  object-fit: cover;
  box-shadow: var(--shadow);
}

/* Responsive: apilar en móvil */
@media (max-width: 820px){
  .menu-intro{
    flex-direction: column-reverse;
    text-align: center;
    gap: 20px;
  }
  .menu-intro .intro-image{
    justify-content: center;
  }
  .menu-intro .intro-text{
    flex: unset;
    width: 100%;
    font-size: 18px;
  }
}

/* --------------------------
   SUBMENU 
   -------------------------- */
.submenu{
  max-width:var(--max-width);
  margin:28px auto;
  padding:30px 18px;
  background:var(--vanilla);
  border-radius:14px;
  box-shadow:var(--shadow);
  display:flex;flex-wrap:wrap;gap:46px;
  justify-content:center;
  align-items:center;
  transition:all 0.3s ease;
}

.submenu a{
  width:auto;
  min-width:130px;
  max-width:220px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  color:var(--text-dark);
  font-weight:800;
  font-size:18px;
  text-align:center;
  text-decoration:none;
  padding:6px;
  transition: transform 0.3s ease, color 0.3s ease;
}

.submenu a img{
  width:92px;
  height:92px;
  object-fit:contain;
  border-radius:12px;
  background:linear-gradient(180deg,rgba(255,255,255,0.9), rgba(255,255,255,0.7));
  padding:10px;
  box-shadow:0 6px 14px rgba(0,0,0,0.12);
  transition: transform 0.3s ease, filter 0.3s ease;
}

/* Hover Animations */
.submenu a:hover img{
  transform: scale(1.15);
  filter: brightness(1.18);
}
.submenu a:hover{
  transform: translateY(-6px);
  color: var(--accent-mid);
}

/* Responsive Submenu */
@media (max-width:900px){
  .submenu{
    gap:30px;
    padding:24px;
  }
  .submenu a{
    min-width:140px;
    width:45%;
  }
  .submenu a img{
    width:86px;
    height:86px;
  }
}
@media (max-width:420px){
  .submenu a{
    width:100%;
    min-width:unset;
  }
  .submenu{
    padding:18px;
    gap:18px;
  }
  .submenu a img{
    width:76px;
    height:76px;
  }
}

/* --------------------------
   MENU GRID / ITEMS
   -------------------------- */
.menu-row{
  display:flex;
  flex-wrap:wrap;
  gap:26px;
  justify-content:center;
  margin-bottom:28px;
}

.menu-item{
  flex:1 1 calc(33.333% - 30px);
  max-width:32%;
  background:var(--paper);
  border-radius:12px;
  padding:16px;
  box-shadow:0 8px 20px rgba(0,0,0,0.12);
  text-align:center;
  border:1px solid rgba(0,0,0,0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover{
  transform: translateY(-6px);
  box-shadow:0 12px 28px rgba(0,0,0,0.18);
}

.menu-item img{
  border-radius:10px;
  margin-bottom:12px;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.menu-item:hover img{
  transform: scale(1.05);
  filter: brightness(1.12);
}

.menu-item h3{
  font-size:20px;
  color:var(--text-dark);
  margin-bottom:10px;
}

.menu-item p{
  color:var(--muted);
  font-size:15px;
  line-height:1.45;
}

/* Responsive Menu Items */
@media(max-width:820px){
  .menu-item{
    flex:1 1 80%;
    max-width:80%;
  }
}
@media(max-width:480px){
  .menu-item{
    padding:12px;
  }
  .menu-item h3{
    font-size:18px;
  }
  .menu-item p{
    font-size:14px;
  }
}

/* --------------------------
   PDF SECTION
   -------------------------- */
.pdf-section{
  max-width:var(--max-width);
  margin:28px auto;
  padding:18px;
  text-align:center;
}
.pdf-section h2{
  font-size:24px;
  color:var(--accent-dark);
  margin-bottom:18px;
}
.pdf-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}
.pdf-btn{
  background:var(--paper);
  border:2px solid #d4b787;
  color:var(--text-dark);
  padding:10px 20px;
  border-radius:10px;
  font-weight:800;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.pdf-btn:hover{
  background:#fffaf2;
  border-color:var(--accent-warm);
}

/* --------------------------
   TITLES H2/H3/H4
   -------------------------- */
h2{
  font-size:48px;
  text-align:center;
  font-weight:900;
  color:var(--accent-dark);
  text-shadow:3px 3px 8px rgba(0,0,0,0.24);
  margin:54px 0 22px;
  letter-spacing:1px;
  padding-bottom:12px;
  border-bottom:4px solid rgba(74,45,22,0.12);
}
h3, .menu-item h3{
  font-size:28px;
  text-align:center;
  font-weight:800;
  color:var(--accent-dark);
  margin:14px 0 8px;
  text-shadow:2px 2px 6px rgba(0,0,0,0.18);
}
h4{
  text-align:center;
  font-size:20px;
  font-weight:700;
  color:var(--muted);
  margin:12px 0 18px;
  text-shadow:1px 1px 4px rgba(0,0,0,0.12);
}

/* --------------------------
   MAP / LOCATION
   -------------------------- */
.location-card{max-width:900px;margin:36px auto;padding:26px;border-radius:18px;background:linear-gradient(180deg,rgba(255,255,255,0.9),rgba(255,255,255,0.95));box-shadow:var(--shadow);text-align:center}
.map-container iframe{width:80%;max-width:750px;height:360px;border-radius:12px;border:0;box-shadow:0 6px 14px rgba(0,0,0,0.12)}

/* --------------------------
   FOOTER
   -------------------------- */
.footer{
  background:#EFE4D1;
  color:var(--text-dark);
  padding:20px 18px;
}

.footer .footer-container{
  max-width:var(--max-width);
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer .brand{
  display:flex;
  align-items:center;
  gap:12px;
}

/* LOGO */
.footer .brand img{
  width:20px;
  border-radius:8px;
}

.footer .footer-links{
  display:flex;
  gap:18px;
  align-items:center;
}

.footer .footer-links a{
  color:var(--accent-dark);
  font-weight:600;
  opacity:0.95;
}

/* SOCIAL ICONS */
.footer .footer-socials{
  display:flex;
  gap:20px;
  align-items:center;
}

.footer .footer-socials a{
  display:flex;
  align-items:center;
  gap:8px;                  /* ← espacio entre icono y texto */
  padding:6px 10px;         /* ← más aire alrededor */
  border-radius:8px;
  background:rgba(0,0,0,0.05);
  transition: transform 0.25s ease, background 0.25s ease;
}


.footer .footer-socials img{
  width:22px;
  height:22px;
  filter:brightness(0.85);
  transition: transform 0.25s ease, filter 0.25s ease;
}


/* Hover */
.footer .footer-socials a:hover{
  transform: translateY(-4px);
  background:rgba(0,0,0,0.08);
}

.footer .footer-socials a:hover img{
  transform: scale(1.18);
  filter:brightness(1.2);
}

.footer .footer-copy{
  font-size:14px;
  opacity:0.92;
}


/* --------------------------
   MOBILE OPTIMIZATIONS
   -------------------------- */
@media(max-width:720px){
  .footer .footer-container{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }
  .footer .footer-socials{order:2}
  .footer .footer-copy{order:3; margin-top:10px;}
}

/* ===========================
   MOBILE — INFO SECTION
   =========================== */
@media(max-width:600px){

  .info-section{
    flex-direction: column;   /* apila imagen y texto */
    gap:20px;                 /* espacio entre imagen y texto */
    align-items: left;      /* centra todo horizontalmente */
    padding:20px 10px;
  }

  .info-image, .info-text{
    width:95%;                /* ocupan casi todo el ancho */
    max-width:400px;          /* límite máximo para no estirar demasiado */
  }

  .info-image img{
    width:100%;               /* imagen llena el contenedor */
    height:auto;
    border-radius:12px;
  }

  .info-text{
    text-align:center;        /* texto centrado debajo de la imagen */
  }

  
  .info-text .menu-btn{
    width:100%;
    max-width:250px;
    margin:12px auto 0;
  }

}
/* --------------------------
   CONTACT US SECTION
-------------------------- */

/* SOCIAL ICONS — SOLO TEXTO */
.footer .footer-socials{
  display:flex;
  gap:35px;                 /* separación entre Facebook e Instagram */
  align-items:center;
}

.footer .footer-socials a{
  display:flex;
  align-items:center;
  padding:6px 12px;
  border-radius:8px;
  background:rgba(0,0,0,0.05);
  text-decoration:none;
  font-size:14px;
  font-weight:600;
  color:var(--accent-dark);
  opacity:0.9;
  transition: transform 0.25s ease, background 0.25s ease;
}

/* OCULTAR CUALQUIER IMAGEN (por si queda en el HTML) */
.footer .footer-socials img{
  display:none !important;
}

.footer .footer-socials a:hover{
  transform: translateY(-3px);
  background:rgba(0,0,0,0.08);
}
.social-buttons{
  display:flex;
  gap:16px;
  align-items:center;
}

/* BOTÓN FACEBOOK */
.btn-facebook{
  padding:8px 16px;
  background:#3b5998; /* azul Facebook */
  color:white;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  transition:0.25s ease;
}

.btn-facebook:hover{
  background:#324b82;
  transform:translateY(-3px);
}

/* BOTÓN INSTAGRAM */
.btn-instagram{
  padding:8px 16px;
  background:#d6249f;  /* rosa IG */
  color:white;
  font-weight:600;
  border-radius:8px;
  text-decoration:none;
  transition:0.25s ease;
}

.btn-instagram:hover{
  background:#b81f87;
  transform:translateY(-3px);
}

/* =========================
   MOBILE FIX — REAL
========================= */
@media (max-width: 768px){

  /* HEADER */
  header{
    flex-direction:column;
    gap:12px;
    padding:14px;
  }

  header .logo{
    margin:0;
  }

  nav{
    width:100%;
    flex-direction:column;
    gap:14px;
  }

  nav a{
    font-size:18px;
    margin:0;
  }

  /* HERO */
  .hero{
    flex-direction:column;
    gap:22px;
    margin:20px auto;
  }

  .hero-text{
    width:100%;
    text-align:center;
  }

  /* VIDEO */
  .video-container{
    width:100%;
    border-width:4px;
  }

  .video-slogan{
    font-size:22px;
    padding:0 10px;
  }

  /* INFO SECTION */
  .info-section{
    flex-direction:column;
    align-items:center;
    text-align:center;
  }

  .info-image,
  .info-text{
    width:100%;
  }

  /* SUBMENU */
  .submenu{
    padding:20px 12px;
    gap:22px;
  }

  .submenu a{
    width:48%;
    max-width:none;
  }

  /* MENU ITEMS */
  .menu-item{
    flex:1 1 100%;
    max-width:100%;
  }

  /* FOOTER */
  .footer .footer-container{
    flex-direction:column;
    gap:16px;
    text-align:center;
  }

  .footer .footer-socials{
    gap:16px;
  }
}

/* End of CSS */
