/* ===============================
   Rune Beer Theme - Estilos Base
   =============================== */

/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Arial", sans-serif;
  background-color: #1f1f1f;
  color: #f5f5f5;
  line-height: 1.6;
}

/* ===============================
   HEADER
   =============================== */
.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background-color: #2a2a2a;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header .logo img {
  height: 60px;
}

.main-nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
}

.main-nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  padding: 8px 12px;
  transition: 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: #ff6600;
}

.btn-order {
  background: #c16830;
  padding: 10px 20px;
  border-radius: 5px;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  transition: 0.3s;
}

.btn-order:hover {
  background: #e07b2c;
}

/* ===============================
   HERO
   =============================== */
.hero {
  background: url("img/hero.jpg") no-repeat center center/cover;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 20px;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.hero span {
  font-size: 1.1rem;
  color: #ffcc66;
}

/* ===============================
   NUESTRAS CERVEZAS
   =============================== */
.beers {
  padding: 50px 40px;
  text-align: center;
}

.beers h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffcc66;
}

.beers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.beer-card {
  background: #2a2a2a;
  padding: 20px;
  border-radius: 8px;
  transition: 0.3s;
}

.beer-card:hover {
  transform: translateY(-5px);
}

.beer-card img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 15px;
}

.beer-card h3 {
  color: #ff6600;
  margin-bottom: 10px;
}

.beer-card p {
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.beer-card .btn {
  display: inline-block;
  padding: 10px 15px;
  background: #c16830;
  color: #fff;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.beer-card .btn:hover {
  background: #e07b2c;
}

/* ===============================
   NUESTRA HISTORIA
   =============================== */
.history {
  padding: 50px 40px;
  background: #1a1a1a;
}

.history h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffcc66;
  text-align: center;
}

.history-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.history-content img {
  flex: 1 1 400px;
  max-width: 500px;
  border-radius: 10px;
}

.history-text {
  flex: 1 1 400px;
}

.history-text h3 {
  margin-top: 20px;
  color: #ff6600;
}

/* ===============================
   CONTACTO
   =============================== */
.contact {
  padding: 50px 40px;
  text-align: center;
}

.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffcc66;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
}

.contact-form button {
  padding: 12px;
  background: #c16830;
  color: #fff;
  border: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #e07b2c;
}

/* ===============================
   FOOTER
   =============================== */
.site-footer {
  background: #2a2a2a;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}

.site-footer p {
  margin: 5px 0;
  font-size: 0.9rem;
}

.site-footer .social a {
  color: #ff6600;
  text-decoration: none;
  margin: 0 5px;
}
