/*
Theme Name: Fortunas Chicken 2.0
Theme URI: Fortuna's Chicken
Author: Fortuna's Chicken
Author URI: Fortuna's Chicken
Description: Modernes, stylishes Restaurant-Theme für Fortuna's Chicken.
Version: 1.1
License: GPLv3 or later
Text Domain: fortunas-chicken
*/

html {
  scroll-behavior: smooth;
}

:root {
  --color-white: #fff;
  --color-gold: #d4af37;
  --color-black: #000;
  --color-dark: #111;
  --color-dark-alt: #222;
  --color-orange-light: #ff9900;
  --color-orange-glow: rgba(255,140,0,0.15);
  --color-text: #fff;
  --header-height: 70px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--header-height);
  font-family: 'Georgia', serif;
  color: var(--color-text);
  background: var(--color-black);
  line-height: 1.6;
}

/* Header & Navigation */
.site-header {
  background: var(--color-black);
  position: fixed;
  top: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(212,175,55,0.3);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo-Link (keine Unterstreichung) */
.site-branding a {
  color: #f1c40f;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none; /* Wichtig: keine Unterstreichung für Logo */
}

#primary-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
}

#primary-menu li {
  margin-left: 30px;
  position: relative;
}

#primary-menu a {
  display: block;
  padding: 5px 0;
  font-weight: 600;
  color: #f1c40f;
  text-decoration: none; /* Menü-Links ohne Unterstreichung */
}

#primary-menu a:hover {
  color: #e67e22;
  text-decoration: none;
}

/* Mobile Menu */
.menu-toggle {
  display: none;
  background: var(--color-black);
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  border-radius: 4px;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px 0;
  background: var(--color-white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }
  #primary-menu {
    position: fixed;
    top: var(--header-height);
    right: -100%;
    width: 280px;
    height: calc(100vh - var(--header-height));
    background: var(--color-dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 30px;
    transition: right 0.3s ease-out;
    box-shadow: -5px 0 15px rgba(0,0,0,0.3);
    overflow-y: auto;
    color: var(--color-white);
  }
  #primary-menu.active {
    right: 0;
  }
  #primary-menu li {
    margin: 0 0 25px;
    width: 100%;
  }
  #primary-menu a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid rgba(212,175,55,0.1);
    color: var(--color-gold);
  }
  .menu-toggle.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #e67e22, #d35400);
  padding: 80px 20px;
  color: var(--color-gold);
  text-align: center;
  width: 100%;
  margin: 0;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  font-weight: bold;
  color: var(--color-white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--color-white);
  padding: 0 10px;
  border-radius: 6px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  color: var(--color-white);
}

.hero a {
  background: #f1c40f;
  color: var(--color-white);
  padding: 12px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 50px;
  transition: all 0.3s ease;
  margin: 10px; /* Abstand, falls 2 Buttons */
  border-color: var(--color-white);
}

.hero a:hover {
  background: var(--color-white);
  color: #f1c40f;
  transform: translateY(-3px);
  border-color: #f1c40f;
}

/* Main Content */
.site-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

/* Section Styles */
.section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.prices h2,
.schedule h2,
.party-service h2 {
  color: #f1c40f;
  text-align: center;
  margin-bottom: 30px;
}

/* Speisekarten-Layout */
.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.card {
  background: var(--color-dark-alt);
  padding: 30px 20px;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;

  word-wrap: break-word;        /* Lange Wörter umbrechen */
  overflow-wrap: break-word;    /* Alternative Eigenschaft */
  hyphens: auto;                /* Silbentrennung, wenn möglich */
  white-space: normal;          /* Umbruch aktivieren */
}

.card h3 {
  color: #f1c40f;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--color-text);
  font-size: 1.2rem;
  margin: 0;
}

.card:hover {
  transform: translateY(-5px);
  color: #f1c40f;
  box-shadow: 0 10px 20px rgba(0,0,0,0.3);
}

/* Responsive */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }
}

/* Footer */
.site-footer {
  background: var(--color-black);
  color: var(--color-gold);
  text-align: center;
  padding: 40px 20px;
  margin-top: 60px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

/* Buttons */
.nav-button {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.fire-button {
  background: var(--color-black);
  color: var(--color-gold);
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 15px var(--color-orange-glow);
}

.fire-button:hover {
  background: var(--color-gold);
  color: var(--color-black);
  transform: translateY(-3px);
  box-shadow: 0 5px 20px var(--color-orange-glow);
}

.button-icon {
  margin-right: 8px;
}

/* ---- Opening Hours & Locations ---- */
.fortunas-opening-hours {
  background: var(--color-dark-alt);
  padding: 30px;
  border-radius: 12px;
  margin: 40px 0;
  box-shadow: 0 5px 15px rgba(212,175,55,0.1);
}

.fortunas-opening-hours h3 {
  color: var(--color-gold);
  margin-top: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}

.fortunas-opening-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.fortunas-opening-hours-table tr {
  border-bottom: 1px solid #444;
}

.fortunas-opening-hours-table td {
  padding: 12px 0;
  color: var(--color-text);
}

.fortunas-opening-hours-table td:first-child {
  font-weight: bold;
  width: 40%;
}

/* Locations Section */
.fortunas-locations {
  margin: 60px 0;
}

.fortunas-locations h3 {
  color: var(--color-gold);
  border-bottom: 1px solid var(--color-gold);
  padding-bottom: 10px;
  text-align: center;
  margin-bottom: 40px;
}

.fortunas-locations .location-card {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px;
  background: var(--color-dark-alt);
  border-radius: 8px;
}

.fortunas-locations .location-card h4 {
  color: var(--color-gold);
  font-size: 1.5rem;
}

.fortunas-locations .location-card p {
  color: var(--color-text);
  font-size: 1.1rem;
}

/* Responsive: Location Card auf kleinen Bildschirmen */
@media (max-width: 768px) {
  .fortunas-locations .location-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Hero Buttons responsive: stapeln auf kleinen Bildschirmen */
@media (max-width: 768px) {
  .hero a {
    display: block;
    width: 100%;
    margin: 10px 0;
  }
}