:root {
  --fire-red: #6F1308;
  --fire-gold: #CDA428;
  --fire-glow: #FFD447;
  --bg-dark: #120A03;
  --text-light: #fdf8ed;
  --card-bg: #261508;
}

/* Base styles */
body {
  margin: 0;
  padding: 0;
  background: var(--bg-dark);
  color: var(--text-light);
  font-family: 'Cinzel', serif;
  line-height: 1.6;
}




/* Hero Banner */
.hero-banner {
  background: radial-gradient(ellipse at center, #2c1209 0%, #0d0501 100%);
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  background: url('/path/to/flame-texture.jpg') no-repeat center center / cover;
  position: absolute;
  opacity: 0.05;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-title {
  font-size: 3.2rem;
  font-weight: bold;
  color: var(--fire-glow);
  text-shadow: 0 0 15px rgba(255, 212, 71, 0.7);
}

.hero-subtitle {
  font-size: 1.6rem;
  color: var(--fire-gold);
  margin-top: 1rem;
  text-shadow: 0 0 5px rgba(205, 164, 40, 0.4);
}

.hero-text {
  font-size: 1.2rem;
  color: var(--text-light);
  margin: 1rem 0;
}

/* Buttons */
.btn-fire {
  background: linear-gradient(to right, var(--fire-gold), var(--fire-red));
  color: #fff;
  padding: 12px 30px;
  border: none;
  border-radius: 40px;
  font-weight: bold;
  margin-top: 2rem;
  box-shadow: 0 0 10px rgba(205, 164, 40, 0.5);
  transition: all 0.3s ease-in-out;
  text-decoration: none;
}

.btn-fire:hover {
  background: var(--fire-gold);
  color: var(--bg-dark) !important;
  transform: translateY(-2px);
}

.btn-outline-fire {
  border: 2px solid var(--fire-gold);
  color: var(--fire-gold);
  background: transparent;
  padding: 10px 30px;
  font-weight: bold;
  border-radius: 40px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-outline-fire:hover {
  background: var(--fire-gold);
  color: var(--bg-dark) !important;
  transform: translateY(-2px);
}

/* Sections */
.welcome-section {
  background: var(--bg-dark);
  padding: 4rem 2rem;
}

.features-section {
  background: var(--bg-dark);
  padding: 4rem 2rem;
}

.section-title {
  font-size: 2.5rem;
  color: var(--fire-glow);
  margin-bottom: 1.5rem;
  text-shadow: 1px 1px 2px rgba(255, 212, 71, 0.2);
}

.section-text {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 800px;
  margin: 0 auto;
}

.lead {
  color: var(--fire-gold);
  font-size: 1.3rem;
}

/* Feature Cards */
.feature-card {
  background: var(--card-bg);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(255, 212, 71, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 25px rgba(205, 164, 40, 0.3);
}

.feature-icon {
  font-size: 3rem;
  color: var(--fire-gold);
  margin-bottom: 1rem;
}

.feature-card h4 {
  color: var(--fire-glow);
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-light);
}

/* Call to Action */
.cta-section {
  background: linear-gradient(135deg, var(--fire-red) 0%, var(--fire-gold) 100%);
  color: var(--bg-dark);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

.cta-text {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: var(--bg-dark);
}

/* Image Break Sections */
.image-break {
  background: var(--bg-dark);
}

.single-image-wrapper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(255, 212, 71, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.single-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.single-image-wrapper:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(205, 164, 40, 0.3);
}

.single-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Hero Image Section - Final Image */
.hero-image-section {
  background: var(--bg-dark);
}

.hero-image-wrapper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(255, 212, 71, 0.3);
  border: 3px solid var(--fire-gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-image-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.hero-image-wrapper:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(205, 164, 40, 0.4);
  border-color: var(--fire-glow);
}

.hero-image-wrapper:hover img {
  transform: scale(1.02);
}

/* Social Links */
.social-links {
  text-align: center;
  padding: 2rem 0;
  background: var(--bg-dark);
}

.social-icon {
  display: inline-block;
  margin: 0 1rem;
  padding: 1rem;
  background: var(--card-bg);
  color: var(--fire-gold);
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icon:hover {
  background: var(--fire-gold);
  color: var(--bg-dark);
  transform: translateY(-3px);
}

/* Footer */
.footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #bbb;
  background: #1a0e06;
}

.footer a {
  color: var(--fire-gold);
  text-decoration: none;
}

.footer a:hover {
  color: var(--fire-glow);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.4rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-buttons .btn {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
  }
  
  .cta-buttons .btn {
    display: block;
    margin: 0.5rem 0;
    width: 100%;
  }
}
