html
{
  scroll-behavior: smooth;
}
*
{
  box-sizing: border-box;
}
/* Header */
.header {
  background-color: rgba(135, 74, 28, 0.5);
  color: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 5%;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 900;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
}

.nav a {
  color: white;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.3s;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size: 20px;
}

.nav a:hover {
  color: #d1a76b;
}
.nav a:visited
{
 color: #E9A319;   
}
/* Hero section */
.hero {
  background-image: url("../img/fondos/galletas.jpg"); /* Cambia por tu imagen */
  background-size: cover;
  background-position: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 5%;
  color: white;
  text-shadow: 7px 1px 5px #3F2305;
  text-align: center;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 10px;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #FFE9C7;
  padding: 10px 40px 10px 40px;
}
.hero p
{
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size: 40px;
  padding: 10px 50px 0 0;
}
/* Sección de bebidas destacadas */
.featured-section {
  text-align: center;
  background-color: #F7DCB9;
  padding: 100px 5%;
  color: #3e2f25;
}
.hero .flecha
{
  color: #FFE9C7;
  font-size: 50px;
}

.featured-section h2 {
  font-size: 3rem;
  margin-bottom: 10px;
  font-weight: 700;
  font-family: "Lobster", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #732E02;
}

.featured-section p {
  font-size: 1.5rem;
  color: #6b5a4b;
  max-width: 600px;
  margin: 0 auto 40px auto;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  
  padding: 10px;
}
.featured-section h3 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  color: #4a3f35;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  
  padding: 10px;
  color: #732E02;
}


/* GRID */
.drinks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  justify-items: center;
}

/* TARJETAS */
.drink-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
  overflow: hidden;
  width: 100%;
  max-width: 300px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.drink-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.drink-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.drink-card h4 {
  font-size: 1.3rem;
  margin: 15px 0 5px;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  
  padding: 10px;
  color: #732E02;
}

.drink-card p {
  font-size: 0.95rem;
  color: #6b5a4b;
  padding: 0 15px 15px;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  
  padding: 10px;
  color: #732E02;
}

/* BOTÓN */
.drink-card .btn {
  display: inline-block;
  background: #c29b64;
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 25px;
  margin-bottom: 20px;
  transition: background 0.3s ease;
  font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  
  padding: 10px;
}

.drink-card .btn:hover {
  background: #a47f50;
}
.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

/* Ocultamos el checkbox */
#nav-toggle {
  display: none;
}

/* Footer */
.footer {
  background: #F7DCB9;
  color: #7B4019;
  text-align: center;
  padding: 20px;
    font-family: "Merienda", cursive;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  font-size
}
.menu {
  display: flex;
  gap: 20px;
}

.nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}


/* Botón hamburguesa */
.hamburguesa {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  /* Ocultar menú por defecto en pantallas pequeñas */
  .nav {
    display: none;
    flex-direction: column;
    background: #5c2c0c;
    position: absolute;
    top: 60px;
    right: 15px;
    padding: 10px;
    border-radius: 10px;
  }

  /* Mostrar el botón hamburguesa */
  .hamburguesa {
    display: block;
  }