/*
 * Stildefinitionen für den Barbershop‑One‑Pager.
 * Die Farben und Abstände wurden bewusst gewählt, um ein professionelles
 * Erscheinungsbild zu schaffen. Passen Sie Variablen nach Bedarf an.
 */

/* Basisfarbpalette */
:root {
  /* Farbpalette angepasst an das Logo. Dunkle Basistöne und goldene Akzente. */
  --color-primary: #0d0d0d;   /* sehr dunkles Schwarz für Hintergründe */
  --color-secondary: #c4a35a; /* goldener Akzent passend zur Logo-Farbe */
  --color-light: #faf8f5;     /* helles Beige für Flächen */
  --color-text: #2a2a2a;      /* neutraler Textfarbton */
  --color-white: #ffffff;
}

/* Globales Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: sans-serif;
  line-height: 1.6;
  color: var(--color-text);
  background-color: var(--color-light);
}

/* Container für zentrierten Inhalt und einheitliche Seitenränder */
.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Header */
.site-header {
  background-color: var(--color-primary);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.5px;
}

/* Logo-Bildgröße anpassen */
.logo img {
  height: 80px;
  width: auto;
  display: block;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--color-white);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.main-nav a:hover {
  opacity: 0.7;
}

/* Hero-Bereich */
.hero {
  background: linear-gradient(145deg, var(--color-primary), #1a1a1a);
  color: var(--color-white);
  padding: 100px 0;
  text-align: center;
}

.hero h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Buttons */
.btn {
  display: inline-block;
  background-color: var(--color-secondary);
  color: var(--color-white);
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.2s ease;
}

/* Hover-Zustand für Buttons – leicht abgedunkelter Goldton */
.btn:hover {
  background-color: #ab8b54;
}

/* Abschnittsüberschriften */
section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  text-align: center;
  color: var(--color-secondary);
}

/* Über uns */
.about p {
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto;
}

/* Dienstleistungen */
.services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
}

.services-list li {
  background-color: var(--color-white);
  padding: 20px;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.services-list h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--color-primary);
}

.services-list p {
  font-size: 1rem;
  line-height: 1.4;
}

/* Preise */
.price-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 12px;
  text-align: left;
}

.price-table th {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.price-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

.small-note {
  font-size: 0.8rem;
  margin-top: 10px;
  color: #555;
  text-align: center;
}

/* Kontakt */
.contact p,
.contact li {
  font-size: 1rem;
  margin-bottom: 5px;
}

.opening-hours {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

/* Footer */
.site-footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* Responsive Anpassungen */
@media (max-width: 600px) {
  .hero h2 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .main-nav ul {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  .site-header .container {
    flex-direction: column;
    gap: 10px;
  }
}

/* Floating WhatsApp button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}
.whatsapp-float:hover {
  background-color: #128C7E;
}

/* Reviews section */
.reviews {
  padding: 80px 20px;
  text-align: center;
  background: #f7f7f7;
}

.google-rating {
  font-size: 22px;
  margin-bottom: 40px;
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
  max-width: 1000px;
  margin: auto;
}

.review-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-align: left;
}

.review-name {
  font-weight: bold;
  margin-bottom: 5px;
}

.review-stars {
  color: #fbbc04;
  margin-bottom: 10px;
}

.google-btn {
  display: inline-block;
  margin-top: 40px;
  padding: 14px 28px;
  background: #4285F4;
  color: white;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
}

