/* Main CSS file for Smokeds website */
:root {
  --primary-color: #e65100;
  /* Burnt Orange */
  --primary-hover: #ff6d00;
  --dark-bg: #121212;
  --card-bg: #1e1e1e;
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --transition: all 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--dark-bg);
  color: var(--text-main);
  line-height: 1.6;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  text-transform: uppercase;
  color: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Review: Buttons */
.btn {
  display: inline-block;
  padding: 12px 24px;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #fff;
}

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  border-color: #fff;
  color: #fff;
}

.btn-secondary:hover {
  background-color: #fff;
  color: #000;
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 10px;
  color: var(--primary-color);
}

/* Navigation */
.navbar {
  background-color: rgba(18, 18, 18, 0.95);
  padding: 15px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #333;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img {
  height: 90px;
  border-radius: 50%;
  /* Optional: if logo is round */
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: #fff;
}

.nav-links a:hover {
  color: var(--primary-color);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../img/fondo.jpeg');
  /* Local Hero Image */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  line-height: 1.1;
}

.highlight {
  color: var(--primary-color);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  color: #ccc;
}

.hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services-section {
  background-color: var(--card-bg);
  text-align: center;
}

.service-card {
  max-width: 600px;
  margin: 0 auto;
  padding: 40px;
  border: 1px solid #333;
  border-radius: 8px;
  background: var(--dark-bg);
}

.service-card i {
  font-size: 3rem;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.service-card p {
  margin-bottom: 30px;
  color: var(--text-muted);
}

/* Products Section */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.product-card {
  background-color: var(--card-bg);
  border-radius: 8px;
  overflow: hidden;
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(230, 81, 0, 0.2);
}

.product-img-placeholder {
  height: 200px;
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #555;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  /* Ideally background-image would be set per product dynamically or via unique classes */
  background-size: cover;
  background-position: center;
}

.product-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Add some real placeholder images for vibe */
.product-card:nth-child(1) .product-img-placeholder {
  background-image: url('https://images.unsplash.com/photo-1596796929668-3566cb2f2fe1?q=80&w=800&auto=format&fit=crop');
  color: transparent;
}

.product-card:nth-child(2) .product-img-placeholder {
  background-image: url('https://images.unsplash.com/photo-1625938146369-adc83368bda7?q=80&w=800&auto=format&fit=crop');
  color: transparent;
}

.product-card:nth-child(3) .product-img-placeholder {
  background-image: url('https://images.unsplash.com/photo-1544025162-d76694265947?q=80&w=800&auto=format&fit=crop');
  color: transparent;
}

.product-card:nth-child(5) .product-img-placeholder {
  background-image: url('https://images.unsplash.com/photo-1519708227418-c8fd9a32b7a2?q=80&w=800&auto=format&fit=crop');
  color: transparent;
}

.product-card h3 {
  padding: 20px 20px 10px;
  font-size: 1.5rem;
}

.product-card p {
  padding: 0 20px 20px;
  color: var(--text-muted);
}

/* Courses Section */
.courses-section {
  background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1529193591184-b1d58069ecdd?q=80&w=1935&auto=format&fit=crop');
  background-size: cover;
  text-align: center;
  color: #fff;
}

.course-content {
  max-width: 700px;
  margin: 0 auto;
}

.course-content h2 {
  font-size: 3rem;
  margin-bottom: 20px;
}

.course-content p {
  font-size: 1.25rem;
  margin-bottom: 30px;
}

/* Contact Section */
.contact-section {
  text-align: center;
}

.contact-section h2 {
  margin-bottom: 40px;
}

.contact-methods {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.contact-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 30px;
  background-color: var(--card-bg);
  border-radius: 8px;
  width: 200px;
}

.contact-item:hover {
  background-color: #2a2a2a;
  transform: translateY(-5px);
}

.contact-item i {
  font-size: 2.5rem;
  color: var(--primary-color);
}

.contact-item span {
  font-size: 1.1rem;
}

/* Footer */
footer {
  padding: 40px 0;
  text-align: center;
  background-color: #000;
  color: #555;
  border-top: 1px solid #222;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    right: -100%;
    background-color: rgba(18, 18, 18, 0.98);
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 20px 0;
    transition: 0.3s;
    border-bottom: 1px solid #333;
  }

  .nav-links.active {
    right: 0;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
}

/* Founder Section */
.founder-card {
  text-align: center;
  margin-top: 30px;
  padding: 25px;
  background: var(--card-bg);
  border-radius: 8px;
  border: 1px solid #333;
  display: inline-block;
  /* Or block, depending on container */
}

.founder-card img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 15px;
  border: 3px solid var(--primary-color);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.founder-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 5px;
}

.founder-card p {
  font-size: 1rem;
  color: var(--text-muted);
  margin: 0;
}