:root {
  --primary: #C8922A;
  /* Ember Gold */
  --dark: #1A1A1A;
  /* Charcoal Black */
  --dark-2: #2C2C2C;
  /* Off Black */
  --gray: #D6C9B8;
  /* Marble Beige used for secondary text on dark */
  --light: #FFFFFF;
  /* Pure White */
  --stone: #6B6B6B;
  /* Stone Grey */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}

body {
  background: var(--dark);
  color: var(--light);
  line-height: 1.6;
}

/* HERO PARALLAX */
header {
  height: 100vh;
  background:
    linear-gradient(to bottom, rgba(26, 26, 26, .3) 0%, rgba(26, 26, 26, .9) 100%),
    url('../img/hero_churrasco_premium.jpg') center/cover fixed no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

header h1 {
  font-size: 56px;
  font-weight: 800;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

header p {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 20px;
  color: var(--gray);
  font-weight: 500;
}

.btn-primary {
  background: var(--primary);
  color: var(--dark);
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: .3s;
  display: inline-block;
}

.btn-primary:hover {
  background: #E5A832;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 146, 42, 0.4);
}

section {
  padding: 100px 20px;
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  margin-bottom: 70px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.section-title p {
  color: var(--gray);
  font-size: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.card {
  background: var(--dark-2);
  padding: 40px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 146, 42, 0.3);
}

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

.card h3 {
  margin-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  color: var(--light);
}

.card p {
  color: var(--gray);
  font-weight: 400;
}

/* NUMBERS */
.numbers {
  background: url('../img/store_front_franchise.jpg') center/cover fixed no-repeat;
  position: relative;
}

.numbers::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 26, 0.85);
  /* Dark charcoal overlay */
  z-index: 0;
}

.numbers .grid {
  position: relative;
  z-index: 1;
}

.numbers .card {
  background: transparent;
  border: none;
  text-align: center;
}

.numbers h3 {
  font-size: 22px;
  font-weight: 800;
}

/* FORM */
.form-section {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, .05);
}

form {
  max-width: 750px;
  margin: auto;
  background: var(--dark);
  padding: 50px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, .08);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

form h3 {
  margin-bottom: 30px;
  font-size: 24px;
  font-weight: 700;
  text-transform: uppercase;
}

.form-group {
  margin-bottom: 18px;
}

input,
select {
  width: 100%;
  padding: 16px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 4px;
  color: #fff;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--primary);
}

button {
  margin-top: 10px;
  width: 100%;
  padding: 18px;
  background: var(--primary);
  border: none;
  color: var(--dark);
  font-weight: 700;
  cursor: pointer;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: .3s;
}

button:hover {
  background: #E5A832;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(200, 146, 42, 0.4);
}

/* FOOTER */
footer {
  background: #000;
  padding: 40px 20px;
  text-align: center;
  color: var(--gray);
  font-size: 14px;
}

/* TOP CONTACT STRIP */
.contact-strip {
  width: 100%;
  background: #0b0b0b;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.contact-strip .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  color: var(--gray);
  font-size: 13px;
  flex-wrap: wrap;
}

.contact-strip a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
}

.contact-strip a:hover {
  color: #fff;
}

.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.contact-item i {
  color: var(--primary);
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .35);
  border: 1px solid rgba(255, 255, 255, .15);
  transition: transform .2s ease, filter .2s ease;
}

.whatsapp-float i {
  font-size: 20px;
}

.whatsapp-float span {
  font-size: 14px;
  letter-spacing: .2px;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

@media (max-width: 768px) {
  header h1 {
    font-size: 38px;
  }

  header p {
    font-size: 18px;
  }
}

@media (max-width: 520px) {
  .whatsapp-float span {
    display: none;
  }

  .whatsapp-float {
    padding: 14px;
  }

  .whatsapp-float i {
    font-size: 22px;
  }
}

/* =========================================
   Blog Section
========================================= */
.blog-card {
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, border-color 0.3s ease;
  display: block;
  /* Make anchor behave like block */
  height: 100%;
}

.blog-card:hover {
  transform: translateY(-5px);
  border-color: rgba(200, 146, 42, 0.5);
  /* Primary color low opacity */
}

.read-more {
  display: inline-block;
  margin-top: 20px;
  font-weight: 700;
  color: var(--primary);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.read-more i {
  margin-left: 5px;
  font-size: 12px;
  color: var(--primary);
  /* Force icon color same as text */
  margin-bottom: 0 !important;
  /* Override .card i margin */
}

/* =========================================
   Buttons
========================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 40px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 1px;
  background: transparent;
  color: var(--light);
  border: 1px solid rgba(255, 255, 255, .08);
  transition: .2s;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, .04);
  transform: translateY(-1px);
}


/* =========================================
   Thank You Page
========================================= */

.thanks-page main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
}

.thanks-card {
  max-width: 860px;
  width: 100%;
  text-align: center;
}

.thanks-icon {
  width: 80px;
  height: 80px;
  border-radius: 999px;
  background: rgba(139, 29, 29, .18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  border: 1px solid rgba(139, 29, 29, .35);
}

.thanks-icon i {
  font-size: 34px;
  color: var(--primary);
}

.thanks-title {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
}

.thanks-text {
  color: var(--gray);
  font-size: 18px;
  line-height: 1.7;
}

.thanks-actions {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

@media (max-width: 700px) {
  .thanks-title {
    font-size: 32px;
  }
}