/* =========================================================
   ALPENDOGS – STYLE.CSS
   ========================================================= */


/* =========================================================
   LOKALE SCHRIFTART
   ========================================================= */

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


/* =========================================================
   GRUNDEINSTELLUNGEN
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background: #ffffff;
    color: #1f2933;
    overflow-x: hidden;
}

img {
    max-width: 100%;
}

a {
    transition: 0.3s ease;
}


/* =========================================================
   FARBEN
   ========================================================= */

:root {
    --green: #2f7667;
    --gold: #E8A923;
    --dark: #1f2933;
    --light: #ffffff;
}


/* =========================================================
   HEADER
   ========================================================= */

header {
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #ececec;
    position: relative;
    z-index: 1000;
}

.navbar {
    max-width: 1200px;
    min-height: 72px;

    margin: 0 auto;
    padding: 10px 20px;

    display: flex;
    align-items: center;
}


/* =========================================================
   LOGO
   ========================================================= */

.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.logo {
    width: 155px;
    height: auto;
    display: block;
}


/* =========================================================
   DESKTOP NAVIGATION
   ========================================================= */

.navbar .nav-links {
    list-style: none;

    display: flex;
    align-items: center;

    gap: 22px;

    margin-left: auto;
    margin-right: 24px;
}

.navbar .nav-links > li:not(.mobile-menu-socials) {
    display: flex;
    align-items: center;
}

.navbar .nav-links a {
    text-decoration: none;
    color: var(--dark);

    font-size: 13px;
    font-weight: 600;

    white-space: nowrap;

    transition: color 0.3s ease;
}

.navbar .nav-links a:hover {
    color: var(--gold);
}


/* =========================================================
   MOBILE SOCIALS
   Standardmäßig unsichtbar
   ========================================================= */

.mobile-menu-socials {
    display: none;
}


/* =========================================================
   HEADER BUTTON
   ========================================================= */

.header-button {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 40px;

    background: var(--gold);
    color: white !important;

    padding: 10px 20px;

    border-radius: 30px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 700;

    white-space: nowrap;

    transition: 0.3s ease;
}

.header-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}


/* =========================================================
   HAMBURGER
   Auf Desktop NICHT sichtbar
   ========================================================= */

.menu-toggle {
    display: none;

    background: none;
    border: none;

    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 28px;
    height: 3px;

    margin: 5px 0;

    background: var(--green);
    border-radius: 3px;

    transition: 0.3s ease;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 100px;

    min-height: auto;

    max-width: 1200px;
    margin: 0 auto;

    padding: 110px 20px 80px;
}

.hero-text {
    flex: 1;
    max-width: 680px;
}

.hero h1 {
    font-size: 56px;
    line-height: 1.15;

    color: var(--green);

    margin-bottom: 30px;
}

.hero p {
    font-size: 26px;
    color: #666;

    margin-bottom: 50px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    width: 100%;
    max-width: 600px;

    height: auto;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);

    object-fit: cover;
}

.hero-button {
    display: inline-block;

    background-color: var(--gold);
    color: white;

    text-decoration: none;
    font-weight: 600;

    padding: 16px 36px;

    border-radius: 50px;

    transition: 0.3s ease;
}

.hero-button:hover {
    background-color: #d89612;
    transform: translateY(-2px);
}


/* =========================================================
   MEINE LEISTUNGEN
   ========================================================= */

.services {
    max-width: 1200px;

    margin: 0 auto 70px;

    padding: 0 20px;
}

.services h2 {
    text-align: center;

    font-size: 42px;

    color: var(--green);

    margin-bottom: 15px;
}

.services-intro {
    text-align: center;

    font-size: 22px;

    color: #666;

    margin-bottom: 60px;
}

.services-grid {
    display: flex;

    gap: 40px;
}

.service-card {
    flex: 1;

    background: white;

    padding: 40px;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

.service-card h3 {
    color: var(--green);

    font-size: 30px;

    margin-bottom: 20px;
}

.service-card p {
    font-size: 18px;

    line-height: 1.7;

    color: #666;

    margin-bottom: 30px;
}

.service-card a {
    color: var(--gold);

    text-decoration: none;

    font-weight: 600;
}


/* =========================================================
   ÜBER MICH
   ========================================================= */

.about {
    max-width: 1200px;

    margin: 120px auto;

    padding: 0 20px;

    display: block;
}

.about-image {
    float: left;

    width: 32%;

    max-width: none;

    margin: 0 50px 30px 0;

    border-radius: 20px;

    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.about h2 {
    color: var(--green);

    font-size: 30px;

    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;

    line-height: 1.7;

    color: #666;

    text-align: justify;

    hyphens: auto;

    margin: 0;
}


/* =========================================================
   SALON
   ========================================================= */

.salon {
    max-width: 1200px;

    margin: 120px auto;

    padding: 0 20px;
}

.salon h2 {
    text-align: center;

    font-size: 42px;

    color: var(--green);

    margin-bottom: 15px;
}

.salon-intro {
    text-align: center;

    font-size: 22px;

    color: #666;

    max-width: 700px;

    margin: 0 auto 80px;
}

.salon-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.salon-grid img {
    width: 100%;

    height: 320px;

    object-fit: cover;

    display: block;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    transition: 0.3s;
}

.salon-grid img:hover {
    transform: scale(1.03);
}

.large-image {
    grid-column: 1 / 3;

    height: auto;
}


/* =========================================================
   GALERIE
   ========================================================= */

.gallery {
    max-width: 1200px;

    margin: 100px auto;

    padding: 0 20px;
}

.gallery-heading {
    text-align: center;

    max-width: 750px;

    margin: 0 auto 60px;
}

.gallery-heading h1 {
    font-size: 48px;

    color: var(--green);

    margin-bottom: 20px;
}

.gallery-heading p {
    font-size: 21px;

    line-height: 1.7;

    color: #666;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.gallery-grid img {
    width: 100%;

    height: 440px;

    object-fit: cover;

    border-radius: 22px;

    display: block;

    cursor: pointer;

    transition: 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.03);
}


/* =========================================================
   LIGHTBOX
   ========================================================= */

.lightbox {
    display: none;

    position: fixed;

    z-index: 10000;

    left: 0;
    top: 0;

    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.9);

    justify-content: center;
    align-items: center;
}

.lightbox img {
    max-width: 90%;
    max-height: 85vh;

    object-fit: contain;

    border-radius: 18px;
}

.lightbox-close {
    position: absolute;

    top: 25px;
    right: 40px;

    color: white;

    font-size: 50px;

    cursor: pointer;
}


/* =========================================================
   KONTAKT
   ========================================================= */

.contact {
    background: var(--green);

    margin-top: 120px;

    padding: 90px 40px;
}

.contact-text {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;

    color: white;
}

.contact h2 {
    font-size: 42px;

    margin-bottom: 20px;
}

.contact-intro {
    font-size: 21px;

    line-height: 1.7;

    margin-bottom: 40px;
}

.contact-details {
    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 40px;
}

.contact-details p {
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;

    background: var(--gold);

    color: white;

    text-decoration: none;

    font-weight: 600;

    padding: 16px 36px;

    border-radius: 50px;

    transition: 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-2px);

    opacity: 0.9;
}

.contact-details a {
    color: white;

    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}


/* =========================================================
   KONTAKT NEUES LAYOUT
   ========================================================= */

.contact-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 70px;

    align-items: center;
}

.contact-left {
    color: white;
}

.contact-left h2 {
    font-size: 48px;

    margin: 0 0 25px;

    color: white;
}

.contact-left .contact-intro {
    font-size: 20px;

    line-height: 1.6;

    margin-bottom: 35px;
}

.contact-left .contact-details {
    font-size: 18px;

    line-height: 1.7;

    margin-bottom: 0;
}

.contact-left .contact-details a {
    color: white;

    text-decoration: none;
}

.contact-left .contact-details a:hover {
    text-decoration: underline;
}

.contact-right {
    background: white;

    padding: 50px;

    border-radius: 25px;

    color: #333;
}

.contact-right h3 {
    color: var(--green);

    font-size: 28px;

    margin: 0 0 18px;
}

.contact-right p {
    font-size: 18px;

    line-height: 1.6;

    margin-bottom: 30px;
}

.contact-right .contact-button {
    display: inline-block;

    background: var(--gold);

    color: white;

    text-decoration: none;

    font-weight: 600;

    padding: 16px 32px;

    border-radius: 50px;
}


/* =========================================================
   KONTAKT BUTTONS
   ========================================================= */

.contact-buttons {
    display: flex;

    flex-wrap: wrap;

    gap: 14px;

    align-items: center;
}

.whatsapp-button {
    display: inline-block;

    padding: 16px 32px;

    border: 2px solid var(--green);

    border-radius: 50px;

    background: white;

    color: var(--green);

    text-decoration: none;

    font-weight: 600;

    transition: 0.3s ease;
}

.whatsapp-button:hover {
    background: var(--green);

    color: white;

    transform: translateY(-2px);
}


/* =========================================================
   GOOGLE MAPS
   ========================================================= */

.map-section {
    max-width: 1200px;

    margin: 60px auto 0;
}

.map-placeholder {
    background: white;

    border-radius: 20px;

    padding: 50px 30px;

    text-align: center;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.map-placeholder h3 {
    color: var(--green);

    font-size: 30px;

    margin-bottom: 15px;
}

.map-placeholder > p {
    max-width: 650px;

    margin: 0 auto 25px;

    color: #666;

    font-size: 17px;

    line-height: 1.7;
}

.map-button {
    background: var(--gold);

    color: white;

    border: none;

    padding: 14px 28px;

    border-radius: 30px;

    font-family: 'Manrope', sans-serif;

    font-size: 16px;

    font-weight: 700;

    cursor: pointer;

    transition: 0.3s;
}

.map-button:hover {
    transform: translateY(-2px);

    opacity: 0.9;
}

.map-placeholder .map-privacy {
    font-size: 14px;

    margin-top: 20px;

    margin-bottom: 0;
}

.map-privacy a {
    color: var(--green);

    font-weight: 600;
}

.map-placeholder iframe {
    display: block;

    width: 100%;

    border-radius: 20px;
}

.map-placeholder.map-loaded {
    padding: 12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

.footer {
    background: #1f2523;

    color: white;

    padding: 60px 40px 25px;
}

.footer-container {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 60px;

    align-items: start;
}

.footer-brand strong {
    font-size: 26px;

    color: white;
}

.footer-brand p {
    margin-top: 10px;

    line-height: 1.6;

    color: #d8d8d8;
}


/* =========================================================
   SOCIAL MEDIA IM FOOTER
   ========================================================= */

.footer-socials {
    display: flex;

    gap: 12px;

    margin-top: 20px;
}

.footer-socials a {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    gap: 8px;

    padding: 10px 18px;

    border: 1px solid rgba(255, 255, 255, 0.5);

    border-radius: 50px;

    color: white;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;
}

.footer-socials svg {
    width: 18px;
    height: 18px;

    fill: currentColor;

    flex-shrink: 0;
}

.footer-socials a:hover {
    background: white;

    color: var(--green);

    transform: translateY(-2px);
}


/* =========================================================
   FOOTER LINKS & KONTAKT
   ========================================================= */

.footer-links,
.footer-contact {
    display: flex;

    flex-direction: column;

    gap: 12px;
}

.footer-links a,
.footer-contact a {
    color: #d8d8d8;

    text-decoration: none;

    font-size: 16px;

    transition: 0.3s ease;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
}


/* =========================================================
   FOOTER UNTERER BEREICH
   ========================================================= */

.footer-bottom {
    max-width: 1200px;

    margin: 50px auto 0;

    padding-top: 25px;

    border-top: 1px solid rgba(255, 255, 255, 0.15);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: #bdbdbd;

    font-size: 14px;
}

.footer-bottom span:last-child {
    display: flex;

    align-items: center;

    gap: 10px;
}

.footer-bottom a {
    color: #bdbdbd;

    text-decoration: none;

    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--gold);
}


/* =========================================================
   UNTERSEITEN HERO
   ========================================================= */

.subpage-hero {
    max-width: 1200px;

    margin: 0 auto;

    padding: 80px 20px 90px;
}

.subpage-label {
    color: var(--gold);

    font-size: 18px;

    font-weight: 700;

    margin-bottom: 20px;
}

.subpage-hero h1 {
    color: var(--green);

    font-size: 64px;

    line-height: 1.1;

    margin-bottom: 30px;
}

.subpage-intro {
    max-width: 700px;

    color: #666;

    font-size: 22px;

    line-height: 1.7;

    margin-bottom: 40px;
}


/* =========================================================
   FELLPFLEGE LEISTUNGEN
   ========================================================= */

.grooming-services {
    max-width: 1200px;

    margin: 0 auto 120px;

    padding: 0 20px;
}

.grooming-heading {
    max-width: 750px;

    margin-bottom: 60px;
}

.grooming-heading h2 {
    color: var(--green);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.grooming-heading > p:last-child {
    color: #666;

    font-size: 20px;

    line-height: 1.7;
}

.grooming-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.grooming-card {
    background: white;

    padding: 40px;

    border-radius: 20px;

    border-left: 5px solid var(--gold);

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: 0.3s ease;
}

.grooming-card:hover {
    transform: translateY(-6px);
}

.grooming-card h3 {
    color: var(--green);

    font-size: 26px;

    margin-bottom: 15px;
}

.grooming-card h4 {
    color: #222;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    margin-bottom: 15px;
}

.grooming-card p {
    color: #666;

    font-size: 18px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   ABLAUF FELLPFLEGE
   ========================================================= */

.grooming-process {
    background: var(--green);

    padding: 100px 20px;
}

.process-heading {
    max-width: 1200px;

    margin: 0 auto 60px;
}

.process-heading .subpage-label {
    color: #f0aa18;
}

.process-heading h2 {
    color: white;

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.process-heading > p:last-child {
    color: white;

    font-size: 20px;

    line-height: 1.7;

    max-width: 700px;
}

.process-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}

.process-step {
    background: white;

    padding: 40px 32px;

    border-radius: 20px;
}

.process-step span {
    display: block;

    color: #f0aa18;

    font-size: 42px;

    font-weight: 700;

    margin-bottom: 25px;
}

.process-step h3 {
    color: var(--green);

    font-size: 25px;

    margin-bottom: 15px;
}

.process-step p {
    color: #666;

    font-size: 16px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   FELLPFLEGE CTA
   ========================================================= */

.grooming-cta {
    padding: 110px 20px;

    text-align: center;
}

.grooming-cta-content {
    max-width: 750px;

    margin: 0 auto;
}

.grooming-cta-content h2 {
    color: var(--green);

    font-size: 46px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.grooming-cta-content > p:not(.subpage-label) {
    color: #666;

    font-size: 20px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================================================
   HUNDETRAINING LEISTUNGEN
   ========================================================= */

.training-services {
    background: #f3f6f4;

    padding: 100px 20px 120px;
}

.training-heading {
    max-width: 1200px;

    margin: 0 auto 60px;
}

.training-heading h2 {
    color: var(--green);

    font-size: 42px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.training-heading > p:last-child {
    max-width: 750px;

    color: #666;

    font-size: 20px;

    line-height: 1.7;
}

.training-grid {
    max-width: 1200px;

    margin: 0 auto;

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 30px;
}

.training-card {
    background: white;

    padding: 40px;

    border-radius: 20px;

    border-left: 5px solid var(--gold);

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition: 0.3s ease;
}

.training-card:hover {
    transform: translateY(-6px);
}

.training-card h3 {
    color: var(--green);

    font-size: 26px;

    margin-bottom: 15px;
}

.training-card h4 {
    color: #222;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 700;

    margin-bottom: 15px;
}

.training-card p {
    color: #666;

    font-size: 18px;

    line-height: 1.7;

    margin: 0;
}


/* =========================================================
   TRAINING VOR ORT
   ========================================================= */

.training-location {
    padding: 120px 20px;
}

.training-location-content {
    max-width: 900px;

    margin: 0 auto;

    text-align: center;
}

.training-location-content h2 {
    color: var(--green);

    font-size: 46px;

    line-height: 1.2;

    margin-bottom: 30px;
}

.training-location-content > p:not(.subpage-label) {
    color: #666;

    font-size: 20px;

    line-height: 1.8;

    margin-bottom: 20px;
}


/* =========================================================
   ABLAUF HUNDETRAINING
   ========================================================= */

.training-process {
    background: var(--green);

    padding: 100px 20px;
}


/* =========================================================
   HUNDETRAINING CTA
   ========================================================= */

.training-cta {
    padding: 110px 20px;

    text-align: center;
}

.training-cta-content {
    max-width: 800px;

    margin: 0 auto;
}

.training-cta-content h2 {
    color: var(--green);

    font-size: 46px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.training-cta-content > p:not(.subpage-label) {
    color: #666;

    font-size: 20px;

    line-height: 1.7;

    margin-bottom: 35px;
}


/* =========================================================
   RECHTLICHE SEITEN
   ========================================================= */

.legal-page {
    max-width: 1000px;

    margin: 0 auto;

    padding: 90px 20px 120px;
}

.legal-page h1 {
    color: var(--green);

    font-size: 56px;

    line-height: 1.1;

    margin-bottom: 50px;
}

.legal-content {
    max-width: 750px;
}

.legal-content h2 {
    color: var(--green);

    font-size: 28px;

    margin-bottom: 20px;
}

.legal-content p {
    color: #666;

    font-size: 18px;

    line-height: 1.8;

    margin-bottom: 25px;
}

.legal-content a {
    color: var(--green);

    text-decoration: none;
}

.legal-content a:hover {
    color: var(--gold);
}


/* =========================================================
   GOOGLE REZENSION
   ========================================================= */

.review-invite {
    max-width: 850px;

    margin: 80px auto 20px;

    padding: 50px 30px;

    text-align: center;

    background: white;

    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.review-invite h2 {
    color: var(--green);

    font-size: 36px;

    margin-bottom: 15px;
}

.review-invite p:not(.subpage-label) {
    max-width: 600px;

    margin: 0 auto 25px;

    color: #666;

    font-size: 18px;

    line-height: 1.7;
}

.review-button {
    display: inline-block;

    background: var(--gold);

    color: white;

    text-decoration: none;

    padding: 14px 28px;

    border-radius: 30px;

    font-family: 'Manrope', sans-serif;

    font-size: 16px;

    font-weight: 700;

    transition: 0.3s ease;
}

.review-button:hover {
    transform: translateY(-2px);

    opacity: 0.9;
}


/* =========================================================
   TABLET / KLEINERE DESKTOPS
   ========================================================= */

@media (max-width: 1050px) {

    /* -----------------------------------------------------
       HEADER
       ----------------------------------------------------- */

    .navbar {
        min-height: 72px;

        position: relative;

        flex-direction: row;

        justify-content: space-between;

        align-items: center;

        padding: 14px 20px;
    }

    .logo {
        width: 150px;

        max-width: 150px;
    }

    /* Hamburger sichtbar */
    .menu-toggle {
        display: block;

        margin-left: auto;

        margin-right: 0;
    }

    /* Desktop-Navigation ausblenden */
    .navbar .nav-links {
        display: none;

        position: fixed;

        top: 72px;
        left: 0;

        width: 100%;

        height: calc(100vh - 72px);

        flex-direction: column;

        justify-content: center;

        align-items: center;

        gap: 20px;

        padding: 30px 20px 120px;

        background: white;

        border-top: 1px solid #ececec;

        z-index: 9999;

        box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .navbar .nav-links > li {
        display: block;
    }

    .navbar .nav-links a {
        font-size: 18px;
    }

    /* Header-Button auf Mobile verstecken */
    .header-button {
        display: none;
    }

    /* Social Media im mobilen Menü */
    .mobile-menu-socials {
        display: flex !important;

        flex-direction: row !important;

        gap: 18px;

        margin-top: 35px;

        padding-top: 25px;

        border-top: 1px solid #e5e5e5;
    }

    .mobile-menu-socials a {
        font-size: 14px !important;

        color: var(--green) !important;
    }


    /* -----------------------------------------------------
       HERO
       ----------------------------------------------------- */

    .hero {
        flex-direction: column;

        padding: 60px 20px;

        gap: 40px;
    }

    .hero-text {
        width: 100%;

        max-width: none;
    }

    .hero-text h1 {
        font-size: 40px;

        line-height: 1.1;
    }

    .hero-text p {
        font-size: 20px;
    }

    .hero-image {
        width: 100%;

        text-align: center;
    }

    .hero-image img {
        width: 100%;

        height: auto;
    }


    /* -----------------------------------------------------
       LEISTUNGEN
       ----------------------------------------------------- */

    .services {
        padding: 60px 20px;
    }

    .services h2 {
        font-size: 36px;
    }

    .services-grid {
        flex-direction: column;

        gap: 20px;
    }

    .service-card {
        width: 100%;
    }


    /* -----------------------------------------------------
       ÜBER MICH
       ----------------------------------------------------- */

    .about {
        display: block;

        margin: 60px auto;

        padding: 0 20px;
    }

    .about-image {
        float: none;

        width: 100%;

        margin: 0 0 35px 0;

        border-radius: 20px;
    }

    .about-image img {
        display: block;

        width: 100%;

        max-width: 100%;

        height: auto;

        border-radius: 20px;
    }

    .about-text {
        width: 100%;
    }

    .about h2 {
        font-size: 36px;

        margin-bottom: 20px;
    }

    .about-text p {
        width: 100%;

        font-size: 18px;

        line-height: 1.6;

        text-align: justify;

        hyphens: auto;

        margin-bottom: 18px;
    }


    /* -----------------------------------------------------
       SALON
       ----------------------------------------------------- */

    .salon {
        margin: 70px auto;

        padding: 0 20px;
    }

    .salon h2 {
        font-size: 36px;
    }

    .salon-intro {
        font-size: 18px;

        line-height: 1.6;

        margin-bottom: 40px;
    }

    .salon-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .salon-grid img {
        height: auto;

        object-fit: contain;
    }

    .large-image {
        grid-column: auto;

        height: auto;
    }


    /* -----------------------------------------------------
       KONTAKT
       ----------------------------------------------------- */

    .contact {
        margin-top: 70px;

        padding: 60px 20px;
    }

    .contact-container {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .contact-left h2 {
        font-size: 36px;
    }

    .contact-left .contact-intro {
        font-size: 18px;
    }

    .contact-left .contact-details {
        font-size: 17px;
    }

    .contact-right {
        padding: 30px;
    }

    .contact-right h3 {
        font-size: 26px;
    }

    .contact-right p {
        font-size: 17px;
    }


    /* -----------------------------------------------------
       FOOTER
       ----------------------------------------------------- */

    .footer {
        padding: 45px 20px 25px;
    }

    .footer-container {
        grid-template-columns: 1fr;

        gap: 28px;
    }

    .footer-brand,
    .footer-links,
    .footer-contact {
        text-align: left;
    }

    .footer-brand p {
        margin-bottom: 18px;
    }

    .footer-socials {
        gap: 10px;

        flex-wrap: wrap;
    }

    .footer-links,
    .footer-contact {
        gap: 8px;
    }

    .footer-bottom {
        margin-top: 35px;

        padding-top: 20px;

        flex-direction: row;

        justify-content: space-between;

        align-items: center;

        gap: 15px;
    }

    .footer-bottom span:last-child {
        justify-content: flex-end;
    }


    /* -----------------------------------------------------
       UNTERSEITEN HERO
       ----------------------------------------------------- */

    .subpage-hero {
        padding: 60px 20px 70px;
    }

    .subpage-hero h1 {
        font-size: 42px;

        line-height: 1.1;
    }

    .subpage-intro {
        font-size: 18px;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       FELLPFLEGE
       ----------------------------------------------------- */

    .grooming-services {
        margin-bottom: 70px;

        padding: 0 20px;
    }

    .grooming-heading {
        margin-bottom: 40px;
    }

    .grooming-heading h2 {
        font-size: 36px;
    }

    .grooming-heading > p:last-child {
        font-size: 18px;

        line-height: 1.6;
    }

    .grooming-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .grooming-card {
        padding: 30px;
    }

    .grooming-card h3 {
        font-size: 25px;
    }

    .grooming-card p {
        font-size: 17px;
    }


    /* -----------------------------------------------------
       ABLAUF FELLPFLEGE
       ----------------------------------------------------- */

    .grooming-process {
        padding: 70px 20px;
    }

    .process-heading {
        margin-bottom: 40px;
    }

    .process-heading h2 {
        font-size: 36px;
    }

    .process-heading > p:last-child {
        font-size: 18px;
    }

    .process-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .process-step {
        padding: 30px;
    }


    /* -----------------------------------------------------
       FELLPFLEGE ABSCHLUSS
       ----------------------------------------------------- */

    .grooming-cta {
        padding: 70px 20px;
    }

    .grooming-cta-content h2 {
        font-size: 36px;
    }

    .grooming-cta-content > p:not(.subpage-label) {
        font-size: 18px;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       HUNDETRAINING
       ----------------------------------------------------- */

    .training-services {
        padding: 70px 20px;
    }

    .training-heading {
        margin-bottom: 40px;
    }

    .training-heading h2 {
        font-size: 36px;
    }

    .training-heading > p:last-child {
        font-size: 18px;

        line-height: 1.6;
    }

    .training-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .training-card {
        padding: 30px;
    }

    .training-card h3 {
        font-size: 25px;
    }

    .training-card p {
        font-size: 17px;
    }


    /* -----------------------------------------------------
       TRAINING VOR ORT
       ----------------------------------------------------- */

    .training-location {
        padding: 70px 20px;
    }

    .training-location-content h2 {
        font-size: 36px;
    }

    .training-location-content > p:not(.subpage-label) {
        font-size: 18px;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       ABLAUF HUNDETRAINING
       ----------------------------------------------------- */

    .training-process {
        padding: 70px 20px;
    }


    /* -----------------------------------------------------
       HUNDETRAINING ABSCHLUSS
       ----------------------------------------------------- */

    .training-cta {
        padding: 70px 20px;
    }

    .training-cta-content h2 {
        font-size: 36px;
    }

    .training-cta-content > p:not(.subpage-label) {
        font-size: 18px;

        line-height: 1.6;
    }


    /* -----------------------------------------------------
       GALERIE
       ----------------------------------------------------- */

    .gallery {
        margin: 60px auto;

        padding: 0 20px;
    }

    .gallery-heading {
        margin-bottom: 40px;
    }

    .gallery-heading h1 {
        font-size: 40px;
    }

    .gallery-heading p {
        font-size: 18px;

        line-height: 1.6;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);

        gap: 10px;
    }

    .gallery-grid img {
        width: 100%;

        height: auto;
    }

    .gallery-grid img:last-child {
        grid-column: 1 / -1;

        height: auto;
    }

    .lightbox-close {
        top: 15px;

        right: 20px;

        font-size: 40px;
    }


    /* -----------------------------------------------------
       RECHTLICHE SEITEN
       ----------------------------------------------------- */

    .legal-page {
        padding: 60px 20px 80px;
    }

    .legal-page h1 {
        font-size: 40px;

        margin-bottom: 35px;
    }

    .legal-content h2 {
        font-size: 25px;
    }

    .legal-content p {
        font-size: 17px;

        line-height: 1.7;
    }


    /* -----------------------------------------------------
       GOOGLE REZENSION
       ----------------------------------------------------- */

    .review-invite {
        margin: 60px 15px 20px;

        padding: 40px 20px;
    }

    .review-invite h2 {
        font-size: 28px;
    }

    .review-invite p:not(.subpage-label) {
        font-size: 16px;
    }
}


/* =========================================================
   HAMBURGER AKTIV
   ========================================================= */

.menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}


/* =========================================================
   SEHR KLEINE HANDYS
   ========================================================= */

@media (max-width: 600px) {

    .navbar {
        padding: 12px 16px;
    }

    .logo {
        width: 135px;
    }

    .navbar .nav-links {
        top: 66px;

        height: calc(100vh - 66px);
    }

    .hero {
        padding: 50px 20px;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .services h2,
    .salon h2 {
        font-size: 32px;
    }

    .about h2 {
        font-size: 32px;
    }

    .gallery-heading h1 {
        font-size: 34px;
    }

    .footer-bottom {
        flex-direction: column;

        align-items: flex-start;

        gap: 15px;
    }

    .footer-bottom span:last-child {
        justify-content: flex-start;
    }

    .contact-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .contact-buttons a {
        text-align: center;
    }

}

/* =========================================================
   PREISE – ABSTAND HINWEISTEXT
   ========================================================= */

.price-note {
    margin-top: 50px;
}