
/*
Theme Name: Charcoal Grilling
Theme URI: https://example.com/charcoal-theme
Author: TuNombre
Author URI: https://example.com
Description: Tema moderno para venta de bolsas de carbón, inspirado en RoyalOak.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: charcoal-theme
*/

body {
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #1c1c1c;
  color: #fff;
  margin: 0;
  padding: 0;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: #111;
}

header .logo {
  font-size: 1.5em;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 15px;
}

nav a {
  color: #fff;
  text-decoration: none;
}

.hero {
  background: url('images/hero-burgers.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h1 {
  font-size: 3em;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 20px;
}

.hero .btn {
  background-color: #a52a2a;
  color: white;
  padding: 10px 20px;
  border: none;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
}

.products {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  max-width: 1200px;
}

.product {
  background: #222;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
  width: 30%;
}

.product img {
  width: 100%;
  border-radius: 10px;
}

.product h2 {
  font-size: 1.2em;
  margin: 10px 0;
}

footer {
  background: #111;
  text-align: center;
  padding: 30px;
  color: #aaa;
}
