@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Merriweather';
    src: url('../fonts/Merriweather-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Oswald';
    src: url('../fonts/Oswald-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Pacifico';
    src: url('https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6H6Uu.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
}

/*
globals
*/
:root {
    --highlight: #00b960;
    --strong: #007e72;
    --dark: #003e32;
    --background: #edf6f2;
    --contrast: #e78c03 ;
    --contrastbg: #ffccaa;
}

/* Reset and Base Styles */
* {

    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    padding: 0;
    margin: 0;
}

a {

    color: var(--highlight);
    /* 
  text-decoration: underline dotted;
  text-underline-offset: 4px;  */
}

p {
    margin: 0.3em 0;
}

h1 {
    color: var(--strong);
    font-family: 'Merriweather', Georgia, serif;
}

h2 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--highlight);
    margin: 2em 0 0.5em 0
}

h3 {
    font-family: 'Merriweather', Georgia, serif;
    color: var(--contrast);
    margin: 1.2em 0 0.3em 0 
}


h4 {
    color: var(--contrast);
}

li {
    font-size: 95%;
    color: rgba(0, 20, 10, 0.7);
}

strong,
b {
    color: var(--strong) !important;
    font-weight: bold;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    
    background-color: var(--background);
    xbackground-image: url('https://cdn.midjourney.com/7c046e99-b284-49eb-9498-e1bfaf48dc77/0_2.png');
    background-size: cover;
    color: var(--highlight);
    padding: 1rem 0;
}

.header-content {
    position: relative;
    display: flex;
}

.header-content div{
    padding-left: 100px;
}

.logo {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background-image: url('../images/logo2.png');
    background-size: contain;
    background-repeat: no-repeat;
}


.site-title {
    font-family: 'Merriweather', Georgia, serif;
    font-size: 1.6em;
    letter-spacing: 0.04em;
    font-weight: bold;
    
}

.logo-link:hover {
    color: var(--highlight, #00b960);
}

.header-info p {
    margin: -10px 0;
    font-size: 0.8rem;
    color: #bdc3c7;
}

/* Navigation Styles */
.main-navigation {
    background-color: var(--strong);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin: 0;
}

.nav-item a {
    display: block;
    padding: 1rem 1.5rem;
    color: white;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.nav-item a:hover,
.nav-item.active a {
    color: var(--highlight);
    background-color: var(--dark);
}

#intro p {
    font-size: 120%
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 3px 0;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 0;
}

.content-wrapper {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}


.page-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--highlight);
}

.page-header h1 {
    color: var(--highlight);
    font-size: 2.5rem;
    margin: 0 0 0.5rem 0;
}

.page-header p {
    color: #7f8c8d;
    font-size: 1.1rem;
}


.articleImage {
    background-image: url('https://cdn.midjourney.com/230a66ba-27c1-47b0-a2fc-ebf71d310d58/0_0.png');
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 500px;
}

.content {
    padding: 3.5%;
    background: white;
    margin: -300px auto 50px auto;
    max-width: 1100px;
}

.content h1 {
    margin-top: 0
}

/* Buttons */
.btn {
    margin: 15px auto 0 auto;
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--highlight);
    color: var(--background);
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.5s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.primary {
    margin: 15px auto 0 auto;
    display: inline-block;
}

.secondary {
    color: var(--highlight);
    border: 1px solid var(--highlight);
    background-color: transparent;

    transition: background-color 0.6 ease, border-radius 0.6s ease;
}

.secondary:hover {
    background-color: white;
    border-radius: 0px;
}

.btn:hover {
    background-color: var(--);
}

.btn-secondary {
    background-color: #95a5a6;
}

.btn-secondary:hover {
    background-color: #7f8c8d;
}

/* Footer Styles */
.site-footer {
    background-color: var(--dark);
    color: white;
    padding: 2rem 0 1rem;
    margin-top: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--highlight);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    margin-bottom: 0.5rem;
    color: #bdc3c7;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--highlight);
}

.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #34495e;
    color: #95a5a6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }


    .pullUp {
        background: white;
        margin-top: -100px;
        max-width: 95%
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #34495e;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-item {
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .content-wrapper {
        padding: 1rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }

    .page-header h1 {
        font-size: 1.5rem;
    }

    .content-section h2 {
        font-size: 1.4rem;
    }
}

/* Grid für die Kacheln */
.tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.imgArticle {
    width: 160px;
    float: left;
    margin: 0 1em 1em 0;

}

.cite::before {
    content: "\201C";
    position: absolute;
    top: -10px;
    left: -30px;
    font-size: 12em;
    color: var(--highlight);
    opacity: 0.1;
    line-height: 1;
    pointer-events: none;
    z-index: 0;
}


/* Zitat-Box rechts, groß, kursiv, Hintergrundfarbe */
.cite {
    position: relative;
    float: right;
    max-width: 280px;
    font-size: 1.1em;
    font-style: italic;
    border: 1px solid var(--highlight);
    color: var(--strong);
    border-radius: 1em;
    padding: 2em 1.5em;
    margin: 1em 0 2em 4em;
    text-align: center;
    font-family: "Times-New-Roman", serif;
}

.citeImg {
    font-size: 0.95em;
    line-height: 1.3em;
    font-weight: bold;
    color: rgba(255,255,255,0.6);
    text-shadow: 0 0 1px #fef;
    border-radius: 1em;
    padding: 1.2em;
    margin: 1em 0 2em 4em;
    text-align: center;
    position: relative;
    float: right;

    width: 280px;
    height: 280px;
    background-repeat: no-repeat;
    background-size: cover;
    border: none;
}
.anticite {
    font-style: normal;
    color: grey;
    font-size: 0.8em;
}

.strike {
    text-decoration: line-through;
}

#coaching .citeImg {
    background-image: url('../images/coaching-orientierung-ravensburg.jpg');
}
#burnout .citeImg {
    background-image: url('../images/burnout-beratung-ravensburg.jpg');
    
}

/* Kachel-Style */
.tiles section {
    position: relative;
    background-color: var(--background);
    background-position: center bottom;
    background-size: contain;
    background-repeat: no-repeat;
    xborder: 2px solid white;
    border-radius: 1rem;
    padding: 30px;
    min-height: 570px;
    opacity: 0.85;
    transition: opacity 0.5s;
}

.tiles section:hover {
    xborder: 2px solid var(--highlight);
    opacity: 1;
}

.tiles section:hover .btn {
    background-color: var(--highlight);
    color: white;
}

.tiles h2 {
    margin: 0 0.5rem 1rem 0;
}



.tiles h4 {

    text-transform: uppercase;
    font-size: 90%;
    font-weight: normal;
    margin: 0 auto 0.4em auto;
}

.tiles #panikattacken {
    background-image: url('../images/tile-panikattacken.jpg');
}

.tiles #balance {
    background-image: url('../images/tile-balance.jpg');
}

.tiles #orientierung {
    background-image: url('../images/tile-orientierung.jpg');
}

.tiles #achtsamkeit {
    background-image: url('../images/tile-achtsamkeit.jpg');
}

.tiles .secondary {
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.tiles ul {
    list-style: none;
    padding-left: 20px;
}

.tiles ul li::marker {
    content: '\25B6  ';
    color: var(--highlight);
    font-size: 1em;
}

.tiles ul li {

    text-indent: 1em;
}

/* Responsive: auf Mobil 1x4 */
@media (max-width: 700px) {

    /* Dreieck als Listensymbol in .tiles ul */

    .tiles {
        grid-template-columns: 1fr;
    }

    /* Immer Hover-Effekt auf Mobil für Kacheln */
    .tiles section,
    .tiles section:hover {
        opacity: 1;
    }

    .tiles section .btn {
        background-color: var(--highlight);
        color: white;
    }
}

/* Gestreifte Tabelle */
th,
td {
    padding: 2px 10px
}

th {
    background: var(--dark);
    color: white;
    text-align: left;
}

table.striped tbody tr:nth-child(odd) {
    background: #dde6e2;

}

.addOn {
    margin-top: 50px;
    padding: 20px;
    background: #eee;
    font-size: 85%;
    color: #666
}