/* ----------------------------------
   RESET / BASIC STYLES
---------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  color: var(--text-default);
  background-color: #fff;
  line-height: 1.6;
}

html {
  scroll-behavior: smooth;
  font-size: 18px; /* 1rem = 18px */
}
/* ----------------------------------
   DESIGN TOKENS
---------------------------------- */
:root {
  --font-base: "Raleway", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  --font-heading: "Economica", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;

  --text-default: #111111;
  --text-default-inverted: #ffffff;
  --text-h2: #9f0908;
  --text-price: #675e54;
  --footer-bg: #0a141e;

  --container-width: 1440px;
  --spacing-section: 160px;

  --card-shadow: 0 10px 25px rgba(0, 0, 0, 0.09);
}

/* ----------------------------------
   GLOBAL FONT
---------------------------------- */
body {
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-default);
}

/* Überschriften allgemein */
h1,
h2,
h3,
h4 {
  font-family: var(--font-base);
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-default);
  line-height: 1;
}

h1 {
  font-size: 96px;
  text-align: center;
}

h2 {
  font-size: 80px;
  color: var(--text-h2);
  text-align: center;
}

h3 {
  font-size: 56px;
}

p {
  font-size: 18px;
  color: var(--text-default);
  line-height: 1.6;
}

/* -------------------------
   1200px
------------------------- */
@media (max-width: 1200px) {
  h1 {
    font-size: 72px;
  }
  h2 {
    font-size: 60px;
  }
  h3 {
    font-size: 44px;
  }
}

/* -------------------------
   Tablets (992px)
------------------------- */
@media (max-width: 992px) {
  h1 {
    font-size: 56px;
  }
  h2 {
    font-size: 44px;
  }
  h3 {
    font-size: 36px;
  }
  p {
    font-size: 17px;
  }
}

/* -------------------------
   Mobile (768px)
------------------------- */
@media (max-width: 768px) {
  h1 {
    font-size: 44px;
  }
  h2 {
    font-size: 36px;
  }
  h3 {
    font-size: 28px;
  }
  p {
    font-size: 16px;
  }
}

/* -------------------------
   Small Smartphones (480px)
------------------------- */
@media (max-width: 480px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 34px;
  }
  h3 {
    font-size: 24px;
  }
  p {
    font-size: 15px;
  }
}

/* -------------------------
   Very Small (360px)
------------------------- */
@media (max-width: 360px) {
  h1 {
    font-size: 30px;
  }
  h2 {
    font-size: 24px;
  }
  p {
    font-size: 14px;
  }
}

/* -------------------------
   Tiny Phones (320px)
------------------------- */
@media (max-width: 320px) {
  h1 {
    font-size: 26px;
  }
  h2 {
    font-size: 22px;
  }
  p {
    font-size: 13px;
  }
}

/* ----------------------------------
   GLOBAL CONTAINER
---------------------------------- */
section {
  width: 100%;
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ----------------------------------
   HEADER / NAVIGATION
---------------------------------- */
header {
  width: 100%;
  padding: 12px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 112px;
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}
header .header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  text-align: center;
}

header .header-left {
  display: flex;
  align-items: center;
}

header .logo {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 64px;
  height: 64px;
}

header .logo-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 64px;
  height: 64px;
}

header .logo-text {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-default-inverted);
}

header .header-right {
  display: flex;
  align-items: center;
  gap: 48px;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 32px;
}

@media (max-width: 1024px) {
  header nav ul {
    display: none;
  }
}

header nav a {
  position: relative;
  text-decoration: none;
  color: var(--text-default-inverted);
  font-size: 24px;
  font-weight: 400;
  text-transform: uppercase;
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

header nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: var(--text-default-inverted);
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

header .call-btn {
  padding: 10px 22px;
  background-color: var(--text-h2);
  color: white;
  border-radius: 8px;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  border: 2px solid var(--text-default-inverted);
  display: flex;
  align-items: center;
  gap: 8px;
}

header .call-btn img {
  width: 20px;
  height: 20px;
}

/* ----------------------------------
   HERO SECTION
---------------------------------- */
.hero {
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  background: var(--text-default);
  flex-direction: column;
  max-height: 100vh;
}

.hero img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: bottom;
  height: 100%;
  max-height: 100vh;
  position: absolute;
  z-index: 10;
}

.hero .hero-inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
  z-index: 20;
  text-align: center;
}

.hero h1 {
  color: white;
  text-align: center;
}

.hero p {
  font-size: 24px;
  margin-top: 12px;
  color: white;
}

/* ----------------------------------
   HOW-TO SECTION
---------------------------------- */
#how-to {
  padding: var(--spacing-section) 0;
  background: #fff;
  height: 100%;
  padding: 120px 0 120px 0;
}

#how-to .how-to-inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 64px;
  text-align: center;
}

#how-to h2 {
}

#how-to p {
  font-size: 18px;
  color: var(--text-default);
  line-height: 1.6;
}

.how-to-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  padding: 1rem 0;
  width: 100%;
}

.steps {
  padding: 2rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #f8f8f8;
  border-radius: 16px;

  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.steps:hover {
  transform: scale(1.03);
  box-shadow: var(--card-shadow);
}

.steps .step-content {
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.steps img {
  width: 128px;
  height: auto;
}

.steps .step-text h3 {
  font-family: "Economica", sans-serif;
  color: var(--text-default);
  line-height: 1.2;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .how-to-steps {
    grid-template-columns: 1fr;
  }
}

/* ----------------------------------
   MENU SECTION
---------------------------------- */

/* Grund-Section */
.section-menu {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}

.section-menu .hero-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

/* Rahmen innen wie im Layout */
.menu-inner {
  max-width: 1040px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.menu-inner-content {
}

/* Überschrift OUR MENU */
.menu-heading {
  margin: 0 0 64px;
}

/* Liste der Gerichte */
.menu-items {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* Einzelnes Gericht */
.menu-item {
  display: flex;
  align-items: center;
  gap: 80px;
}

/* Bild links / rechts alternieren */
.menu-item-left {
  flex-direction: row;
}

.menu-item-right {
  justify-content: flex-end;
}

@media screen and (max-width: 900px) {
  .menu-items {
    gap: 80px;
    flex-direction: column;
    display: flex;
  }
  .menu-item {
    gap: 20px;
  }
  .menu-item-right {
    flex-direction: column-reverse !important;
  }
}

/* Ramen-Bilder */
.menu-item-image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Textblock */
.menu-item-content {
  flex: 1;
  max-width: max-content;
}

/* Titel der Gerichte */
.menu-item-title {
  font-family: "Economica", sans-serif;
  font-weight: 700;

  margin-bottom: 16px;
  color: #3a2a23;
}

/* Mittlerer Kasten (Spicy Miso) */
.menu-item-boxed {
  display: inline-block;
}

/* Zutaten & Preise nebeneinander */
.menu-item-rows {
  display: flex;
  gap: 48px;
  font-family: "Raleway", sans-serif;
  font-size: 32px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--text-price);
  text-transform: uppercase;
}

.menu-item-labels,
.menu-item-prices {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.menu-item-prices {
  text-align: right;
}

@media (max-width: 900px) {
  .menu-inner-content {
    padding: 40px 24px 64px;
  }

  .menu-item,
  .menu-item-right,
  .menu-item-left {
    flex-direction: column;
  }

  .menu-item-image img {
    width: 180px;
    height: 180px;
  }

  .menu-heading {
    margin-bottom: 40px;
  }

  .menu-item-rows {
    font-size: 16px;
  }

  .menu-item-title {
    text-align: center;
  }
}

/* ----------------------------------
   LOCATIONS SECTION
---------------------------------- */

.section-locations {
  padding: 120px 0 16px 0;
}

.section-locations-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.locations-title h2 {
  margin-bottom: 8px;
}

.locations-title p {
  text-align: center;
  font-size: 24px;
  color: var(--text-default);
  margin-bottom: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 8px;
}

.locations-map {
  text-align: center;
}

.locations-map-iframe {
  width: 100%;
  height: 550px;
  border: 0;
  border-radius: 8px;
}

@media (max-width: 480px) {
  .locations-title p {
    flex-direction: column;
  }
}

/* ----------------------------------
   FOOTER SECTION
---------------------------------- */
footer {
  background-color: var(--footer-bg);
  color: var(--text-default-inverted);
  padding: 40px 0;
}

footer .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

footer .footer-left img {
  width: auto;
  height: 44px;
}

@media (max-width: 480px) {
  footer .footer-left img {
    height: 24px;
  }
}

footer .footer-right .social-icons {
  margin: 0;
  gap: 16px;
  display: flex;
  width: 100%;
  height: 40px;
}

footer .footer-right .social-icon {
  width: 40px;
  height: 40px;
}

@media (max-width: 900px) {
  .footer-inner {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
    align-items: center;
    justify-content: center;
  }
}
footer .footer-left,
footer .footer-right {
  max-width: max-content;
}

/* ----------------------------------
   RESPONSIVE CLASSES
---------------------------------- */

@media (max-width: 480px) {
}
