
/* RESET GENERAL */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* VARIABLES GLOBALES */

:root {

  --primary: #1e3a8a;
  --secondary: #38bdf8;
  --accent: #f59e0b;

  --dark: #020617;
  --light: #f8fafc;

  --glass: rgba(0, 0, 0, 0.35);

  --glass-border:
    rgba(255,255,255,0.08);

  --container: 1200px;

}


/* HTML */

html {
  scroll-behavior: smooth;
}

/* BODY */

body {

  font-family: 'Inter', sans-serif;

  color: var(--light);

  background: var(--dark);

  overflow-x: hidden;

  line-height: 1.6;

}

/* LINKS */

a {

  text-decoration: none;

  color: inherit;

}

/* LISTAS */

ul {
  list-style: none; /* Le sacamos la viñeta a la listas */
}

/* ========================================================= */
/* MAIN BACKGROUND */
/* Imagen global */

.main-background {

  background-image:

    linear-gradient(
      rgba(0,0,0,0.28),
      rgba(0,0,0,0.38)
    ),

    url("fondo.png");

  background-size: 1350px;

  background-position: center top;

  background-repeat: repeat;

  margin-top: -190px;

}

/* ========================================================= */
/* HEADER */

.header {

  position: relative;

  width: 100%;

  top: 0;

  z-index: 9999;

  

  border-bottom:
    1px solid rgba(255,255,255,0.08);

   
}

/* BOTÓN HAMBURGUESA */
.hamburger {
  display: none;
  font-size: 30px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* ========================================================= */
/* NAVBAR */

.navbar {

  max-width: var(--container);

  margin: auto;

  padding: 1rem 2rem;

  display: flex;

  justify-content: space-between;

  position: relative;
 
}

/* ========================================================= */
/* LOGO */

.logo img {
  max-width: 230px;
  filter: drop-shadow(2px 0px 6px var(--accent));
}

.logo img:hover {
  filter: drop-shadow(0px 0px 12px var(--accent));
}

/* ========================================================= */
/* NAV LINKS */

.nav-links {

  display: flex;

  align-items: center;

  gap: 2rem;

  z-index: 9999;
  
}

.nav-links a {

  transition: 0.3s;

}

/* ========================================================= */
/* BOTONES NAV */

.btn-nav {

  background: var(--secondary);

  color: black;
  
  padding: 10px 20px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
}

.btn-nav:hover {

  color: white;
  
  transform: translateY(-3px);
 
}

/* ========================================================= */
/* BOTONES */

.btn {

  display: inline-flex;

  align-items: center;

  padding: 0.9rem 1.5rem;

  border-radius: 12px;

  font-weight: 700;

  transition: 0.3s;

  line-height: 1;

}

/* ========================================================= */
/* BOTON PRIMARY */

.btn-primary {

  background: var(--accent);
  color: black;
  display: inline-block;
}

.btn-primary:hover {

  transform: translateY(-3px);

}

/* ========================================================= */
/* BOTON SECONDARY */


.btn-secondary {

  border:
    1px solid rgba(255,255,255,0.15);

  backdrop-filter: blur(10px);

  background:
    rgba(255,255,255,0.05);

}

.btn-secondary:hover {

  transform: translateY(-3px);

}


/* ========================================================= */
/* FILETEADOS */

.fileteado {
  max-width: 300px;
  display: inline-block;
  position: absolute;
  width: 300px;
  z-index: 10;
  pointer-events: none;
  filter: drop-shadow(0 0 10px rgba(0,0,0,5));
  opacity: .95;
}

.fileteado-left {
  top: 160px;
  left: 5px;
}

.fileteado-right {
  top: 160px;
  right: 0;
  transform: rotateY(180deg);
}

/* ========================================================= */
/* SECCIONES */

.content-section {

  min-height: 75vh;

  display: flex;

  flex-direction: column;

  justify-content: center;

  padding-top: 20px;

}

/* ========================================================= */
/* ASADOS */
.content-wrapper1 {
  margin-left: 30px;
  display: flex;
  justify-content: space-evenly;
}

/* Logo Asados */
.logo-asados img {
  max-width: 220px;
  position: relative;
  right: 0px;
  filter: drop-shadow(2px 0px 6px var(--accent));
}

.logo-asados img:hover {
  filter: drop-shadow(0px 0px 12px var(--accent));
}


.asado-card {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
  justify-content: center;

  /* para colocar el contenido a la derecha de la imagen
  display: flex;
  gap: 2rem;
  align-items: center; */
}

.asado-image-container {
  overflow: hidden;
}

.asado-image {
  max-width: 90%;
  min-height: 200px;
  border-radius: 15px;
  object-fit: cover;
  padding: 15px;
  margin-left: 10px;
}

.asado-content {
  color: #ffffff; 
  font-size: 19px;
}
.asado-content h3 {
  color: #f59e0b;
}
.event-content {
  margin-top: 2rem;
  line-height: 1.8;
  font-size: 1rem;
}

.event-content h3 {
  margin: 1.5rem 0;
  font-size: 1.8rem;
  color: #ffb347;
}

.asado-list {
  margin: 1.5rem 0;
  padding-left: 1.2rem;
}

.asado-list li {
  margin-bottom: 0.8rem;
}

.reserve-button {
  display: inline-block;
  margin-top: 2rem;
  padding: 14px 28px;
  background-color:#e65c00;
  color: #ffffff;
  text-decoration: none;
  border-radius: 10px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.reserve-button:hover {
   box-shadow: 0px 0px 3px 5px #f59e0b;
}


/* ========================================================= */
/* RESPONSIVE */

@media (max-width: 600px) {

  .event-content {
    font-size: 0.95rem;
  }

  .event-content h3 {
    font-size: 1.4rem;
  }

  .reserve-button {
    width: 100%;
    text-align: center;
  }
   .asado-card {

    grid-template-columns: 1fr;

  }
  
}


/* ========================================================= */
/* WRAPPER INTERNO */

.content-wrapper {

  width: 100%;

  max-width: 650px;

  margin-left: 8%;

}

/* ========================================================= */
/* HERO */


#hero {
  position: relative;

  min-height: 90dvh;

  padding-top: 10px;

  padding-bottom: 10px;

}

/* ========================================================= */
/* TAG */


.section-tag {

  color: var(--secondary);

  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 2px;

  text-align: center;

  margin-top: 45%;

  margin-left: 10%;

  max-width: 80%;
  
}

/* ========================================================= */
/* TITULO HERO */


.hero-title {

  font-size:
    clamp(3rem, 6vw, 5rem);

  line-height: 1.05;

  font-weight: 800;

  letter-spacing: -2px;

  text-shadow:
    0 4px 20px rgba(0,0,0,0.4);

}

/* ========================================================= */
/* TITULOS */


.section-title {

  font-size:
    clamp(2.2rem, 5vw, 4rem);

  margin-bottom: 1rem;

  font-weight: 800;

  letter-spacing: -2px;

}

/* ========================================================= */
/* DESCRIPCIONES */


.section-description {

  color:
    rgba(255,255,255,0.90);

  font-size: 1.05rem;

  margin-bottom: 2rem;

}

/* ========================================================= */
/* BOTONES GROUP */


.buttons-group {

  display: flex;

  gap: 1rem;

  flex-wrap: wrap;

  margin-top: 2%;

}

/* ========================================================= */
/* SECCIONES DIFERENCIADAS */


.section-glass {

  background:
    linear-gradient(
      to right,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.10)
    );

  border-top:
    1px solid rgba(255,255,255,0.06);

  border-bottom:
    1px solid rgba(255,255,255,0.04);

  backdrop-filter: blur(3px);

}

/* ========================================================= */
/* GRID CARDS */


.cards-grid {

  display: grid;

  grid-template-columns:
    repeat(auto-fit, minmax(220px, 1fr));

  gap: 1rem;

  width: 100%;

  max-width: 1000px;

  margin-top: 2rem;

  margin-left: 5%;


}


/* GLASS CARD */


.glass-card {

  background: var(--glass);

  border:
    1px solid var(--glass-border);

  backdrop-filter: blur(8px);

  border-radius: 18px;

  padding: 1.5rem;

}


/* H3 CARDS */


.glass-card h3 {

  margin-bottom: 1rem;

  font-size: 1.3rem;

}

/* CARDS IMAGE */

.glass-card img.image1 {
  max-width: 200px;
  padding: 10px;
  border-radius: 20px;
}

.glass-card img {
  max-width: 100%;
  padding: 10px;
  border-radius: 20px;
}


/* ========================================================= */
/* FOOTER */


.footer {

  padding: 1.5rem 1rem;

  background:
    rgba(0,0,0,0.75);

  backdrop-filter: blur(8px);

  text-align: center;


}

/* FOOTER LINKS */


.footer-links {

  display: flex;

  justify-content: center;

  gap: 2rem;

  margin-bottom: 1rem;
}

.footer p {
  margin-bottom: 20px;
}

.footer .footer-dev {
  display: flex;

  justify-content: space-between;

  gap: 2rem;

  margin-bottom: 1rem;

  font-size: 12px;

  color: var(--secondary);

  position: relative;
  
  top: 55px;
}

.footer .footer-dev div a {
  padding: 10px;
}

/* HOVER LINKS */


.footer-links a:hover {

  color: var(--secondary);

}

.footer .footer-dev div a:hover {
 color: var(--light);
}

/* ========================================================= */
/* RESPONSIVE */


@media (max-width: 768px) {

  /* NAV */

  .nav-links {

    display: none;

    position: absolute;
    top: 80px;
    right: 20px;

    flex-direction: column;
    background-color: #222;
    padding: 20px;
    border-radius: 10px;
  }

  /* WRAPPER */

  .content-wrapper {

    margin-left: 0;

    max-width: 100%;
    
    text-align: center;
  }

  /* Logo asados */
  .logo-asados img {
    max-width: 100%;
  }


  /* CARDS */

  .cards-grid {

    margin-left: 0;

  }

  .cards-grid {

    width: 100%;

    max-width: 700px;

  }


  .glass-card img.image1 {
    max-width: 100%;
    padding: 10px;
    border-radius: 20px;
  }

  .glass-card img {
    max-width: 100%;
    padding: 10px;
    border-radius: 20px;
  }

  /* HERO */

  .hero-title {

    font-size: 3rem;

  }
  
  #hero {
    position: relative;
    
    min-height: 100dvh;
    
    padding-top: 20%;
    
    padding-bottom: 10px;
}

  /* SECCIONES */

  .content-section {

    padding:
      1rem 1.5rem;

  }

  /* BOTONES */

  .buttons-group {

    flex-direction: column;

  }

  .buttons-group .btn {

    width: 100%;

  }

  .btn-secondary {
    display: flex;
    justify-content: center;
  }

  /* Fileteados */
  .fileteado-left {
    width: 180px;

    top: 170px;

    left: 5px;

    opacity: 0.9;
  }

  .fileteado-right {
    width: 180px;

    top: 170px;

    right: 5px;

    opacity: 0.9;

    transform: rotateY(180deg);
  }
  

  .logo {
    width: 100%;
    position: relative;
    right: 10%;
  }


  /* Mostrar hamburguesa */
  .hamburger {
    display: block;
  }
  
  /* Mostrar menú cuando tenga active */
  .nav-links.active {
    display: flex;
  }

}



