/* =========================================================
   ROSA FOOD TRUCK
   MAIN STYLES
========================================================= */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f4ee;
  color: #181818;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

img {
  max-width: 100%;
  display: block;
}

/* VARIABLES */
:root {
  --primary: #e96516;
  --primary-dark: #c94f0d;
  --primary-rgb: 233, 101, 22;
  --dark: #111111;
  --dark-soft: #1c1c1c;
  --light: #ffffff;
  --background: #f7f4ee;
  --text: #181818;
  --text-soft: #666666;
  --border: #dedbd4;
  --max-width: 1180px;
  --shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
  --transition: 0.25s ease;
}

/* =========================================================
   GENERAL
========================================================= */

.section-container {
  width: min(var(--max-width), 90%);
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.section-label.light-label {
  color: var(--primary);
}

section h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
}

.section-intro {
  max-width: 620px;
  margin: 0 auto 50px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 13px 25px;
  border: 2px solid transparent;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition:
    transform var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
}

.btn-primary:hover {
  background: var(--primary-dark);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border-color: rgba(255, 255, 255, 0.8);
}

.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
}

.btn-dark {
  background: var(--dark);
  color: var(--light);
}

.btn-dark:hover {
  background: var(--primary);
  color: var(--light);
}

/* =========================================================
   HEADER / NAVBAR
========================================================= */

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.navbar {
  width: min(var(--max-width), 90%);
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand,
.footer-brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-main {
  color: var(--primary);
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -1px;
}

.brand-small {
  margin-top: 4px;
  color: var(--light);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  position: relative;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  font-weight: 700;
  transition: color var(--transition);
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width var(--transition);
}

.nav-links a:hover {
  color: var(--light);
}

.nav-links a:hover::after {
  width: 100%;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  color: var(--light);
  font-size: 1.8rem;
  cursor: pointer;
}

/* LANGUAGE SWITCHER */
.language-switcher {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.35);
}

.lang-btn {
  padding: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
  transition: color var(--transition);
}

.lang-btn:hover,
.lang-btn.active {
  color: var(--primary);
}
/* =========================================================
   HERO
========================================================= */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 78px;
  overflow: hidden;
  background: linear-gradient(135deg, #f27622 0%, #e96516 55%, #c94f0d 100%);
}

.hero::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  right: -100px;
  bottom: -180px;
  border-radius: 50%;
  border: 90px solid rgba(0, 0, 0, 0.08);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.18));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(var(--max-width), 90%);
  margin: 0 auto;
}

.eyebrow {
  margin-bottom: 20px;
  color: #111111;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 3px;
}

.hero h1 {
  max-width: 850px;
  color: #ffffff;
  font-size: clamp(3.5rem, 9vw, 7.8rem);
  line-height: 0.87;
  letter-spacing: -6px;
  font-weight: 900;
}

.hero h1 span {
  color: #111111;
}

.hero-description {
  max-width: 570px;
  margin-top: 28px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.12rem;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 35px;
}

.hero .btn-primary {
  background: #111111;
  color: #ffffff;
}

.hero .btn-primary:hover {
  background: #ffffff;
  color: #111111;
}

.hero .btn-secondary {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.hero .btn-secondary:hover {
  background: #ffffff;
  color: #111111;
}

/* =========================================================
   TODAY'S LOCATION
========================================================= */

.location-section {
  padding: 100px 0;
  background: var(--background);
  text-align: center;
}

.location-card {
  max-width: 920px;
  margin: 0 auto;
  padding: 35px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  text-align: left;
  background: var(--light);
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.location-icon {
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--primary);
  border-radius: 50%;
  font-size: 2.5rem;
}

.open-badge {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--primary-dark);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 1px;
}

.location-info h3 {
  font-size: 1.65rem;
  line-height: 1.2;
}

.location-info p {
  color: var(--text-soft);
}

.location-hours {
  margin-top: 5px;
  color: var(--dark) !important;
  font-weight: 800;
}

/* =========================================================
   MENU
========================================================= */

.menu-section {
  padding: 110px 0;
  background: var(--light);
  text-align: center;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
}

.menu-card {
  overflow: hidden;
  background: var(--background);
  border-radius: 10px;
  text-align: left;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.menu-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.menu-image {
  width: 100%;
  height: 245px;
}

.placeholder-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #292929, #101010);
  color: rgba(255, 255, 255, 0.25);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
}

.menu-card-content {
  padding: 25px;
}

.menu-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}

.menu-title-row h3 {
  font-size: 1.2rem;
}

.price {
  flex-shrink: 0;
  color: var(--primary-dark);
  font-size: 1.1rem;
  font-weight: 900;
}

.menu-card-content p {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.menu-action {
  margin-top: 45px;
}

/* =========================================================
   CATERING
========================================================= */

.catering-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(var(--primary-rgb), 0.22),
      transparent 35%
    ),
    var(--dark);
}

.catering-section::after {
  content: "EVENTS";
  position: absolute;
  right: -15px;
  bottom: -55px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 13rem;
  font-weight: 900;
  letter-spacing: -10px;
}

.catering-container {
  position: relative;
  z-index: 2;
}

.catering-content {
  max-width: 650px;
}

.catering-content h2 {
  color: var(--light);
}

.catering-content p {
  max-width: 570px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

/* =========================================================
   ABOUT
========================================================= */

.about-section {
  padding: 110px 0;
  background: var(--background);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 70px;
}

.large-placeholder {
  min-height: 480px;
  border-radius: 10px;
}

.about-content p:not(.section-label) {
  margin-bottom: 18px;
  color: var(--text-soft);
  font-size: 1.05rem;
}

/* =========================================================
   CONTACT
========================================================= */

.contact-section {
  padding: 110px 0;
  background: var(--light);
  text-align: center;
}

.contact-grid {
  max-width: 950px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: left;
}

.contact-info {
  padding: 45px;
  background: var(--dark);
  color: var(--light);
}

.contact-info h3 {
  margin-bottom: 25px;
  color: var(--primary);
  font-size: 1.8rem;
}

.contact-info p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  display: flex;
  gap: 18px;
  margin-top: 35px;
}

.social-links a {
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form {
  padding: 45px;
  background: var(--background);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 7px;
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 15px;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: 5px;
  outline: none;
  transition:
    border-color var(--transition),
    box-shadow var(--transition);
}

.form-group textarea {
  resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(var(--primary-rgb), 0.14);
}

/* =========================================================
   FOOTER
========================================================= */

.footer {
  padding: 45px 0;
  background: #080808;
  color: rgba(255, 255, 255, 0.6);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.footer-content p {
  font-size: 0.8rem;
}

.developer-credit a {
  color: var(--primary);
  font-weight: 800;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .nav-links {
    position: absolute;
    top: 78px;
    left: 0;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 15px 5% 25px;
    background: #0b0b0b;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    text-align: center;
  }

  .nav-links a::after {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .hero h1 {
    letter-spacing: -4px;
  }

  .location-card {
    grid-template-columns: auto 1fr;
  }

  .location-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .menu-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .menu-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    width: 100%;
    justify-self: center;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }
}

.language-switcher {
  margin-left: auto;
}

@media (max-width: 900px) {
  .language-switcher {
    margin-left: auto;
    margin-right: 12px;
  }

  .lang-btn {
    font-size: 0.78rem;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  html {
    scroll-padding-top: 70px;
  }

  .navbar {
    min-height: 70px;
  }

  .nav-links {
    top: 70px;
  }

  .brand-main {
    font-size: 1.45rem;
  }

  .hero {
    min-height: 92vh;
    padding-top: 70px;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 17vw, 5rem);
    line-height: 0.9;
    letter-spacing: -3px;
  }

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
  }

  .location-section,
  .menu-section,
  .about-section,
  .contact-section {
    padding: 80px 0;
  }

  section h2 {
    font-size: 2.6rem;
    letter-spacing: -1px;
  }

  .section-intro {
    margin-bottom: 35px;
  }

  .location-card {
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 30px 22px;
  }

  .location-icon {
    width: 75px;
    height: 75px;
    font-size: 2rem;
  }

  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-card:last-child {
    grid-column: auto;
    max-width: none;
  }

  .menu-image {
    height: 220px;
  }

  .catering-section {
    padding: 90px 0;
  }

  .catering-section::after {
    font-size: 7rem;
  }

  .large-placeholder {
    min-height: 300px;
  }

  .contact-info,
  .contact-form {
    padding: 30px 24px;
  }

  .footer {
    padding: 40px 0;
  }
}

.hero-content {
  text-align: center;
}

.hero h1 {
  margin-left: auto;
  margin-right: auto;
}

.hero-description {
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  justify-content: center;
}

.location-hours {
  margin-top: 10px;
}

.location-hours p {
  margin: 2px 0;
  color: var(--dark);
  font-size: 0.9rem;
}

.location-hours strong {
  font-weight: 900;
}
