/* 
 * Urban Kebab Florac - "DARK MODE / POSTER VIBE" 
 * High Contrast, Image-First, Readable.
 */

@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@500;700;900&display=swap');

:root {
  --bk-red: #D62300;
  --bk-orange: #E35205;
  --street-black: #111111;
  /* Darker */
  --street-grey: #222222;
  --text-white: #ffffff;
  --border-color: #333333;
}

body {
  margin: 0;
  background-color: #000000;
  /* Force Pure Black */
  font-family: 'Montserrat', sans-serif;
  color: #ffffff;
  /* Force Pure White */
  line-height: 1.5;
  overflow-x: hidden;
}

h1,
h2,
h3 {
  font-family: 'Anton', sans-serif;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 1px;
}

.container {
  width: 90%;
  max-width: 800px;
  /* Neater column */
  margin: 0 auto;
}

/* --- HERO POSTER (USER IMAGE) --- */
.hero-poster-container {
  width: 100%;
  border-bottom: 5px solid var(--bk-red);
  background: black;
}

.hero-poster {
  width: 100%;
  height: auto;
  display: block;
  max-width: 1200px;
  margin: 0 auto;
}

/* --- MENU SECTION (Dark Board Style) --- */
.menu-section {
  padding: 60px 0;
  background-color: var(--street-black);
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 40px;
  color: var(--bk-orange);
  text-shadow: 2px 2px 0px black;
}

.formula-card {
  background: var(--street-grey);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.step-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #333;
  padding: 20px 0;
}

.step-row:last-child {
  border-bottom: none;
}

.step-number {
  font-family: 'Anton', sans-serif;
  font-size: 3rem;
  color: var(--bk-red);
  width: 60px;
  margin-right: 20px;
  opacity: 0.8;
}

.step-text h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 5px;
}

.step-text p {
  color: #ccc;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
}

/* --- TOTAL PRICE --- */
.total-price-banner {
  background: var(--bk-red);
  color: white;
  text-align: center;
  font-size: 2rem;
  font-family: 'Anton', sans-serif;
  padding: 20px;
  margin-top: 30px;
  border-radius: 5px;
  transform: skewX(-10deg);
  box-shadow: 5px 5px 0px rgba(255, 255, 255, 0.1);
}

/* --- REVIEWS & FOOTER --- */
.reviews-section {
  padding: 60px 0 120px;
  text-align: center;
  background: #0f0f0f;
  border-top: 1px solid #333;
}

/* --- GMB CARD --- */
.gmb-card {
  display: inline-block;
  background: white;
  color: black;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
  min-width: 200px;
}

.gmb-card:hover {
  transform: scale(1.05);
}

.gmb-logo {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gmb-stars {
  color: #F4B400;
  font-size: 1.5rem;
  letter-spacing: 2px;
}

.gmb-rating {
  font-weight: bold;
  margin: 5px 0;
}

.gmb-reviews {
  font-size: 0.8rem;
  color: #666;
  text-decoration: underline;
}

/* --- SOCIALICONS --- */
.social-links a {
  display: inline-block;
  transition: transform 0.2s;
}

.social-links a:hover {
  transform: scale(1.2) rotate(5deg);
}

.map-container {
  margin-top: 30px;
  border: 2px solid #444;
  height: 300px;
}

.map-iframe-custom {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) invert(100%);
  /* Dark Mode Map */
}

/* --- CTA --- */
.fixed-cta-container {
  position: fixed;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 999;
}

.btn-cta {
  background: white;
  color: black;
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  padding: 15px 50px;
  border-radius: 50px;
  text-decoration: none;
  border: 4px solid var(--bk-red);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}