:root {
  --beige-light: #f8f3e7;   /* Hintergrund */
  --gold: #d4a24c;         /* Logo-Gold */
  --brown: #8a5a2e;        /* Warme Barber-Farbe */
  --dark-brown: #6b4426;
}

body {
  margin: 0;
  background: var(--beige-light);
  font-family: "Poppins", sans-serif;
  
}

/* HEADER 1 */
.logo-link {
    text-decoration: none;
    color: inherit;
    display: flex;
    align-items: center;
}


.header {
  width: 100%;
  background: var(--beige-light);
  border-bottom: 2px solid var(--gold);
  padding: 1px 0;

  position: sticky;
  top: 0;
  z-index: 1000; /* Damit der Header über allem bleibt */
}

#preise,
#about,
#reviews,
#kontakt,
#standort {
    scroll-margin-top: 120px;
}


.header-container {
  max-width: 1400px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 40px;
}

/* LOGO POSITION */
.logo-box {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  height: 150px;
  width: auto;
}

/* TEXT NEBEN LOGO */
.logo-text h1 {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  color: var(--brown);
  letter-spacing: 2px;
}

.logo-text span {
  margin: 0;
  font-size: 12px;
  color: var(--gold);
  letter-spacing: 3px;
}

/* NAVIGATION */
/* Luxuriöse Navigation */
.nav {
    display: flex;
    justify-content: center;
    gap: 55px; /* eleganter Abstand */
    padding: 20px 0;
}

.nav a {
    color: var(--brown);
    font-weight: 600;
    font-size: 17px;
    text-decoration: none;
    padding-bottom: 6px;
    position: relative;
    transition: 0.3s ease;
    letter-spacing: 0.4px; /* seriöser Look */
}

/* Goldene Unterstreichung beim Hover */
.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background: var(--gold);
    transition: 0.3s ease;
}

.nav a:hover {
    color: var(--gold);
}

.nav a:hover::after {
    width: 100%;
}

/* ================================
   RESPONSIVE HEADER (MOBILE)
   ================================ */

@media (max-width: 992px) {

  /* Logo kleiner */
  .logo {
    height: 90px;
  }

  .logo-text h1 {
    font-size: 22px;
  }

  .logo-text span {
    font-size: 10px;
  }

  .header-container {
    padding: 0 20px;
  }

  /* Navigation enger */
  .nav {
    gap: 25px;
    padding: 15px 0;
  }

  .nav a {
    font-size: 14px;
  }
}


@media (max-width: 768px) {

  /* Header neu anordnen */
  .header-container {
    flex-direction: column;
    gap: 8px;
    padding: 10px 0;
  }

  .logo {
    height: 80px;
  }

  /* Navigation unter Logo */
  .nav {
    gap: 20px;
    padding: 5px 0 12px 0;
    flex-wrap: wrap;
  }

  .nav a {
    font-size: 13px;
  }
}


@media (max-width: 520px) {

  /* Kleinste Geräte (iPhone SE usw.) */
  .logo {
    height: 65px;
  }

  .logo-text h1 {
    font-size: 18px;
  }

  .nav {
    gap: 15px;
  }

  .nav a {
    font-size: 12px;
  }
}



/* HERO SECTION 2 */
.hero {
    position: relative;
    width: 100%;
    height: auto;
    text-align: center;
    border-bottom: 3px solid var(--gold);
}

.hero-img {
    width: 100%;        /* VOLLE BREITE */
    height: 500px;      /* Höhe definierbar */
    object-fit: cover;  /* Zoomt professionell */
    object-position: center; 
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(247, 242, 233, 0.35); /* Heller Barber-Overlay */
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    width: 80%;
}

.hero-title {
    font-size: 58px;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--brown);
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}


.hero p {
    font-size: 20px;
    color: var(--dark-brown);
    margin-bottom: 25px;
}

/* BUTTON */
.btn-primary {
    padding: 12px 26px;
    background: var(--gold);
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 6px;
    transition: 0.2s ease;
}

.btn-primary:hover {
    background: var(--brown);
}

/* ============================
   HERO RESPONSIVE DESIGN
   ============================ */

/* Tablets & kleinere Laptops */
@media (max-width: 992px) {
    .hero-img {
        height: 420px; /* Weniger Höhe */
    }

    .hero-title {
        font-size: 42px;
        letter-spacing: 3px;
    }

    .hero p {
        font-size: 18px;
    }

    .btn-primary {
        font-size: 17px;
        padding: 10px 22px;
    }
}

/* Smartphones – normale Größe */
@media (max-width: 768px) {
    .hero-img {
        height: 360px;
    }

    .hero-content {
        width: 90%;
    }

    .hero-title {
        font-size: 32px;
        letter-spacing: 2px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 16px;
        margin-bottom: 18px;
    }

    .btn-primary {
        font-size: 16px;
        padding: 10px 20px;
    }
}

/* Kleine Smartphones (iPhone SE, ältere Androids) */
@media (max-width: 480px) {
    .hero-img {
        height: 300px;
    }

    .hero-title {
        font-size: 26px;
        letter-spacing: 1px;
    }

    .hero p {
        font-size: 14px;
    }

    .btn-primary {
        font-size: 15px;
        padding: 8px 18px;
    }
}


/* Über Uns 3 */
.about-section {
    padding: 70px 0;
    background-color: var(--beige-bg);
}

.about-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-header h2 {
    font-size: 42px;
    color: var(--brown);
    margin: 0;
    letter-spacing: 2px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto;
    border-radius: 2px;
}

.subtitle {
    color: var(--dark-brown);
    font-size: 18px;
}

.about-text {
    font-size: 18px;
    line-height: 1.65;
    color: var(--dark-brown);
    margin-bottom: 40px;
}

/* BILDER UNTER DEM TEXT */
.about-gallery {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
}

.about-photo {
    width: 45%;
    max-width: 600px;
    border-radius: 10px;
    border: 3px solid var(--gold);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* MOBILE */
@media (max-width: 900px) {
    .about-photo {
        width: 100%;
    }
}

/* Preise 4 */
.price-section {
    padding: 80px 0;
    background-color: var(--beige-bg);
}

.price-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

/* Header */
.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--brown);
    margin-bottom: 10px;
}

.price-subtitle {
    color: var(--dark-brown);
    font-size: 18px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 20px auto;
    border-radius: 3px;
}

/* Cards Grid */
.price-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

/* Individual Cards */
.price-card {
    flex: 1;
    min-width: 260px;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--gold);
    padding: 25px 30px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.price-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.price-card h3 {
    color: var(--brown);
    font-size: 24px;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--gold);
    padding-bottom: 8px;
}

.price-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.price-card li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #e6d9c7;
    font-size: 18px;
    color: var(--dark-brown);
}

.price-card li:last-child {
    border-bottom: none;
}

/* =======================================
   RESPONSIVE PREISE – PERFEKT ZENTRIERT
   ======================================= */
@media (max-width: 440px) {

    .price-container {
        width: 100%;
        padding: 0 0; /* Kein Seiten-Padding verschiebt die Karte */
        margin: 0 auto;
        box-sizing: border-box;
    }

    .price-grid {
        display: flex;
        flex-direction: column;
        align-items: center; /* KARTEN EXAKT ZENTRIERT */
        gap: 25px;
        width: 100%;
    }

    .price-card {
        width: 90%;          /* immer relative, nicht fix */
        max-width: 360px;    /* schön kompakt auf Mobile */
        margin: 0 auto;      /* IMMER GENAU ZENTRIERT */
        padding: 25px;
        border-radius: 14px;
        box-sizing: border-box;
    }

    /* Titel */
    .price-card h3 {
        font-size: 22px;
    }

    /* Zeilen */
    .price-card li {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 18px 0;
        font-size: 17px;
        line-height: 1.4;
        min-height: 55px;
    }

    /* Links (zweizeilig erlaubt) */
    .price-card li span:first-child {
        flex: 1;
        white-space: normal;
    }

    /* Rechts (Preis zentriert vertikal) */
    .price-card li span:last-child {
        min-width: 70px;
        text-align: right;
        font-weight: 600;
    }

    /* Header */
    .section-header h2 {
        font-size: 32px;
    }

    .price-subtitle {
        font-size: 15px;
    }

    .divider {
        width: 60px;
    }
}




/* Mobile */
@media (max-width: 900px) {
    .price-grid {
        flex-direction: column;
    }
}

/* Google Rezesion 5 */
.reviews-section {
    padding: 80px 0;
    background-color: var(--beige-bg);
}

.reviews-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 42px;
    color: var(--brown);
    letter-spacing: 2px;
}

.subtitle {
    color: var(--dark-brown);
    font-size: 18px;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: var(--gold);
    margin: 15px auto 20px;
    border-radius: 3px;
}

/* GRID */
.reviews-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Review Card */
.review-card {
    background: white;
    border-radius: 12px;
    border: 2px solid var(--gold);
    box-shadow: 0 6px 18px rgba(0,0,0,0.1);
    padding: 25px 30px;
    max-width: 380px;
    flex: 1;
    transition: 0.3s ease;
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

.review-stars {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 10px;
}

.review-text {
    font-size: 17px;
    color: var(--dark-brown);
    line-height: 1.6;
    margin-bottom: 12px;
}

.review-author {
    font-size: 14px;
    color: var(--brown);
    font-weight: 600;
}

/* Google Link */
.google-link {
    text-align: center; /* ZENTRIERT den Button */
    margin-top: 45px;
}

.google-button {
    display: inline-block;
    background: var(--gold);
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(212,175,55,0.35);
    transition: 0.3s ease;
}

/* Hover Effekt */
.google-button:hover {
    background: #c29e35;
    box-shadow: 0 6px 18px rgba(212,175,55,0.45);
    transform: translateY(-2px);
}

/* ===========================================
   RESPONSIVE FIX – Google Bewertungen
   Karten bleiben zentriert bis 430px
   =========================================== */
@media (max-width: 440px) {

    .reviews-section {
        padding: 60px 0;
    }

    .reviews-container {
        width: 100%;
        padding: 0 12px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .reviews-grid {
        display: flex;
        flex-direction: column;
        align-items: center;  /* !!! ZENTRIERT !!! */
        justify-content: center;
        width: 100%;
        gap: 25px;
        margin: 0 auto;
    }

    .review-card {
        width: 100%;
        max-width: 360px;  /* passt perfekt für Mobile */
        margin: 0 auto;    /* !!! ZENTRIERT !!! */
        padding: 22px;
        box-sizing: border-box;
    }
}




/* CONTACT 6 */
/* CONTACT SECTION */
.contact-section {
    padding: 80px 0;
    background-color: var(--beige-bg);
    text-align: center;
}

.contact-container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    text-align: center;
}

.contact-card {
    text-align: center;
    background: white;
    border-radius: 12px;
    border: 2px solid var(--gold);
    padding: 35px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 15px;
    font-size: 18px;
    color: var(--dark-brown);
}

.hours-table tr {
    border-bottom: 1px solid rgba(180, 140, 80, 0.25); /* elegante Gold-Linie */
}

.hours-table tr:last-child {
    border-bottom: none;
}

.hours-table td {
    padding: 10px 0;
}

.hours-table td:first-child {
    font-weight: 600;
    color: var(--brown);
    letter-spacing: 0.3px;
    text-align: left;
}

.hours-table td:last-child {
    text-align: right;
    font-weight: 500;
    color: #3d2a1b;
}

/* Hover Effekt: sehr dezent, sehr luxuriös */
.hours-table tr:hover td {
    background-color: rgba(212, 175, 55, 0.08); /* soft golden tint */
    transition: 0.3s ease;
}

/* Mobile Optimierung */
@media (max-width: 600px) {
    .hours-table {
        font-size: 16px;
    }
    .hours-table td {
        padding: 8px 0;
    }
}


.contact-title {
    font-size: 28px;
    color: var(--brown);
    margin-bottom: 25px;
    text-align: center;
}

/* Titel der Kontakt-Blöcke (Adresse, Telefon, Öffnungszeiten) */

.contact-block h4 {
    text-align: center;
    font-size: 22px;
    color: var(--brown);
    margin-bottom: 8px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Text unter den Titeln */
.contact-block p {
    text-align: center;
    font-size: 18px;
    color: var(--dark-brown);
    line-height: 1.6;
    margin: 8px 0 18px 0;
}


.phone-link {
    color: var(--brown);
    font-weight: bold;
}

.phone-link:hover {
    color: var(--gold);
}

/* LOCATION SECTION */
.location-section {
    padding: 80px 0;
    background-color: var(--beige-bg);
}

.location-container {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

.location-map iframe {
    border-radius: 12px;
    border: 2px solid var(--gold);
    width: 100%;
    height: 420px;
}

/* FOOTER 7 */
.footer {
    background: #0c1018; /* dunkles Braun/Schwarz */
    color: #f5f5f5;
    padding: 60px 40px 20px;
    margin-top: 60px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    max-width: 1300px;
    margin: auto;
    flex-wrap: wrap;
}

/* Spalten */
.footer-col {
    flex: 1;
    min-width: 250px;
}

/* Titel */
.footer-col h3,
.footer-col h4 {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

/* Beschreibung */
.footer-col p {
    line-height: 1.6;
    color: #ddd;
}
/* Instagram und Tiktok */
.footer-socials {
    margin-top: 18px;
    display: flex;
    gap: 18px;
    align-items: center;
}

.social-icon {
    display: inline-flex;
    width: 28px;
    height: 28px;
    color: #ddd; /* Standard Icon-Farbe */
    transition: 0.3s ease;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Hover-Effekt in Gold */
.social-icon:hover {
    color: var(--gold);
    transform: scale(1.12);
}


/* Links */
.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: var(--gold);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #ffffff;
}

/* Footer unten */
.footer-bottom {
    text-align: center;
    margin-top: 60px;
    padding: 28px 20px 10px;
    border-top: 1px solid rgba(212, 162, 76, 0.25); /* dezente Gold-Linie */
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    letter-spacing: 0.6px;
    font-weight: 400;
}

/* Footer Links (Impressum / Datenschutz) */
.footer-bottom a {
    color: var(--gold);
    text-decoration: none;
    margin: 0 6px;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

/* feine goldene Linie beim Hover */
.footer-bottom a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-bottom a:hover {
    color: #ffffff;
}

.footer-bottom a:hover::after {
    width: 100%;
}

