:root {
  --highlight-color: #4a8750;
  --highlight-color-hover: #3e7444;
}

@font-face {
    font-family: 'FunnelDisplay';
    src: url('https://new.massage-praxis-leonding.at/media/fbnb4dav/funneldisplay-light.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'FunnelDisplay', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.site-header {
    background-color: #ffffff;
    padding: 2rem 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.header-logo-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.header-logo {
    max-height: 120px;
    width: auto;
}

.navbar {
    background-color: #ffffff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
}

.navbar-brand {
    font-weight: 600;
}

.navbar-nav .nav-link {
    color: #444;
    padding: 0.5rem 0.75rem;
    transition: color 0.2s ease;
}

.navbar .nav-link.active,
.navbar .nav-link.active:focus,
.navbar .nav-link.active:hover,
.nav-link[aria-current="page"] {
    background-color: var(--highlight-color) !important;
    color: #fff !important;
    border-radius: 0.375rem;
}

.navbar-nav .nav-link:hover {
    color: var(--highlight-color);
}

/* Primärer Button */
.btn-primary {
    background-color: var(--highlight-color) !important;
    border-color: var(--highlight-color) !important;
    color: #fff !important;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: var(--highlight-color-hover) !important;
    border-color: var(--highlight-color-hover) !important;
}

/* Contentbox bleibt weiß */
main {
    background: #fff;
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Hero Image */
.hero-image img {
    max-height: 480px;
    object-fit: cover;
    width: 100%;
    display: block;
}

footer {
    background-color: #222;
    color: #bbb;
    font-size: 0.9rem;
}

.hero-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    object-fit: cover;
    display: block;
}

.content-box {
    background: #fff;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    padding: 2rem 3rem; /* Mehr Luft innen */
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1.3em;
    margin-top: 1.0em;
}

.header-logo-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem 0;
}

.header-logo {
    max-width: 100vw;   /* Niemals breiter als der Viewport */
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    max-height: 120px;  /* Optional: Maximale Höhe für Desktop */
}

/* Optional: Wenn du auf sehr kleinen Geräten die Höhe reduzieren willst */
@media (max-width: 576px) {
    .header-logo {
        max-height: 70px;
    }
}




/** /g-p-685bb53cb40c8191a0cf0bb9391bc7d6-umbraco-mpl/c/686501aa-2f2c-8012-86d6-75c91934f39b ***/
/* Prägnantes Button-Listen-Design */
:root {
  --highlight-color: #4a8750;
  --highlight-color-hover: #3e7444;
}

.nice-link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    max-width: 340px;
}

.nice-link-list li {
    margin-bottom: 0.5rem;
}

.nice-link-list a {
    display: block;
    width: 100%;
    padding: 0.55rem 1rem;
    color: var(--highlight-color);
    background: #f5faf6;
    border-radius: 0.8rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    box-shadow: 0 1px 5px rgba(74, 135, 80, 0.06);
    text-align: left;
    transition: background 0.16s, color 0.16s, box-shadow 0.16s, transform 0.11s;
    border: 1px solid var(--highlight-color);
    cursor: pointer;
    outline: none;
    position: relative;
}

.nice-link-list a:hover,
.nice-link-list a:focus {
    background: var(--highlight-color);
    color: #fff;
    box-shadow: 0 3px 12px rgba(62, 116, 68, 0.12);
    transform: translateY(-1px) scale(1.01);
    text-decoration: none;
    border-color: var(--highlight-color-hover);
}

.nice-link-list a:active {
    transform: scale(0.98);
}

@media (max-width: 500px) {
    .nice-link-list {
        max-width: 100%;
    }
    .nice-link-list a {
        font-size: 0.98rem;
        padding: 0.45rem 0.7rem;
    }
}
