/* Fonts */

/* Syne Regular */
@font-face {
    font-family: 'Syne';
    src: url('../fonts/syne/syne-regular/syne-regular.woff2') format('woff2'),
         url('../fonts/syne/syne-regular/syne-regular.woff') format('woff'),
         url('../fonts/syne/syne-regular/syne-regular.ttf') format('truetype'),
         url('../fonts/syne/syne-regular/syne-regular.eot') format('embedded-opentype'),
         url('../fonts/syne/syne-regular/syne-regular.svg#Syne') format('svg');
    font-weight: 400;
    font-style: normal;
}

/* Syne Medium */
@font-face {
    font-family: 'Syne';
    src: url('../fonts/syne/syne-medium/syne-medium.woff2') format('woff2'),
         url('../fonts/syne/syne-medium/syne-medium.woff') format('woff'),
         url('../fonts/syne/syne-medium/syne-medium.ttf') format('truetype'),
         url('../fonts/syne/syne-medium/syne-medium.eot') format('embedded-opentype'),
         url('../fonts/syne/syne-medium/syne-medium.svg#Syne') format('svg');
    font-weight: 500;
    font-style: normal;
}

/* Syne SemiBold */
@font-face {
    font-family: 'Syne';
    src: url('../fonts/syne/syne-semibold/syne-semibold.woff2') format('woff2'),
         url('../fonts/syne/syne-semibold/syne-semibold.woff') format('woff'),
         url('../fonts/syne/syne-semibold/syne-semibold.ttf') format('truetype'),
         url('../fonts/syne/syne-semibold/syne-semibold.eot') format('embedded-opentype'),
         url('../fonts/syne/syne-semibold/syne-semibold.svg#Syne') format('svg');
    font-weight: 600;
    font-style: normal;
}

/* Syne Bold */
@font-face {
    font-family: 'Syne';
    src: url('../fonts/syne/syne-bold/syne-bold.woff2') format('woff2'),
         url('../fonts/syne/syne-bold/syne-bold.woff') format('woff'),
         url('../fonts/syne/syne-bold/syne-bold.ttf') format('truetype'),
         url('../fonts/syne/syne-bold/syne-bold.eot') format('embedded-opentype'),
         url('../fonts/syne/syne-bold/syne-bold.svg#Syne') format('svg');
    font-weight: 700;
    font-style: normal;
}

/* Syne ExtraBold */
@font-face {
    font-family: 'Syne';
    src: url('../fonts/syne/syne-extrabold/syne-extrabold.woff2') format('woff2'),
         url('../fonts/syne/syne-extrabold/syne-extrabold.woff') format('woff'),
         url('../fonts/syne/syne-extrabold/syne-extrabold.ttf') format('truetype'),
         url('../fonts/syne/syne-extrabold/syne-extrabold.eot') format('embedded-opentype'),
         url('../fonts/syne/syne-extrabold/syne-extrabold.svg#Syne') format('svg');
    font-weight: 800;
    font-style: normal;
}


/* Global Styles */
body {
    font-family: 'Syne', sans-serif; /* Use Syne as the primary font */
    background-color: #f7ebef;
    color: #333;
    margin: 0;
    padding: 0;
	width: 100%;
}

body p {
	font-size: 22px;
	line-height: 1.75em;
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Syne', sans-serif;
    font-weight: 700; /* Apply bold for headings */
}

/* Heading Styles */
h1 {
    margin: 0 0 40px 0;
}

img {
    max-width: 100%;
}

.quote {
	font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: #88b3aa;
    padding: 20px 0;
}

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

.logo img {
    height: 50px;
}

.nav-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
	padding: 0;
}

.nav-menu ul li {
    margin: 0;
}

.nav-menu ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1.15rem;
    text-transform: uppercase;
}

/* Header Button (ohne Pfeil) */
.cta-button-header {
    background-color: #fff;
    color: #000;
    padding: 10px 20px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase; /* Uppercase Text */
    text-align: center;
	margin-bottom: 40px;	
}

/* Hero Section */
.hero-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 60px 0;
    background-color: #f7ebef;
}

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

.hero-text img {
	width: 90%;
	margin: 0 auto 50px;
}

.hero-text h1 {
    font-size: 4rem;
    color: #000;
    margin: 0 0 10px 0;
}

.hero-text h2 {
    font-size: 2rem;
    margin: 0;
}

.hero-text p {
    margin: 20px 0 40px 0;
}

.hero-image img {
    max-width: 400px;
    height: auto;
}

/* Hero Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 30px;
    background-color: #88b3aa;
    color: #000;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1rem;
    font-weight: bold;
    position: relative;
    overflow: hidden;
	margin: 0 auto 40px auto;	
}

.cta-button .button-text {
    margin-right: 15px;
    text-transform: uppercase;
}

.cta-button .button-icon {
    background-color: #fff;
    color: #000;
    width: 60px;
    height: 30px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cta-button .button-icon::before {
    content: '➔';
    font-size: 16px;
    position: relative;
}

/* Divider Section */
/* Divider Section (ein Balken mit Texten) */
.divider-section {
    text-align: center;
}

.divider-container {
	max-width: 1200px;
    margin: 0 auto 10px auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #88b3aa;
    padding: 20px 0;
    border-radius: 15px;
    box-shadow: 5px 5px 5px #cfcfcf;
}
.divider-box:last-child {
	border-left: 2px solid #000; /* Überschreibt das Inline-CSS */
}

.divider-box {
    color: #000;
    font-size: 1.25rem;
    flex: 1;
    text-align: center;
}






/* Über mich Section */
.about-section {
    padding: 60px 0;
    background-color: #f7ebef;
}

.about-container {
    display: flex;
    justify-content: space-between;
    /*align-items: center;*/
    max-width: 1200px;
    margin: 0 auto;
}

.about-image {
    flex: 1;
    padding-right: 20px;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 100%;
}

.about-text {
    flex: 1;
    padding-left: 20px;
}




/* Behandlungsmethoden Section */
.services-section {
    padding: 60px 0;
    background-color: #f7ebef;
}






/* Golfphysiotherapie Section */
.golf-section {
    padding: 60px 0;
    background-color: #f7ebef;
}

.golf-container {
    display: flex;
    justify-content: space-between;
    /* align-items: center; */
    max-width: 1200px;
    margin: 0 auto;
}

.golf-text {
    flex: 1;
    padding-right: 20px;
}

.golf-image {
    flex: 1;
    padding-left: 20px;
}

.golf-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}




/* Pricing Section */
.pricing-section {
    padding: 50px 0;
}

.pricing-section .container {
    /* display: flex; */
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}
.pricing-text {
	width: 70%;
    float: left;
}
.price-list {
    float: right;
    width: 25%;	
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}
.price-box {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 10px rgba(0, 0, 0, 0.1);
    padding: 0;
    text-align: center;
    margin-bottom: 20px;
    line-height: 0;
}
/* Pricing Title */
.price-title {
    font-size: 2rem;
    font-weight: 700; /* Syne-Bold for bold effect */
    margin-bottom: 5px;
    color: #333;
    font-family: 'Syne', sans-serif; /* Remove Roboto */
    letter-spacing: 1px;
    margin: 0;	
}
/* Pricing Sub-Title */
.price-subtitle {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
    font-family: 'Syne', sans-serif;
    letter-spacing: 10px;
    margin: -0.75em 0 0 0;
}
/* Pricing Section Value */
.price-value {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    font-family: 'Syne', sans-serif;
    letter-spacing: 1px;
    margin: 0;
}
@media (max-width: 768px) {
    .pricing-text,
	.price-list {
        width: 100%;
        float: none;
        margin-bottom: 20px;
    }
}





/* Education Section */
.education-section {
    padding: 60px 0;
    background-color: #f7ebef;
}

.timeline {
    /* display: flex; */
    /* flex-direction: row; */
    /* gap: 30px; */
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-left {
    width: 45%;
    float: left;
}
.timeline-right {
    float: right;
    width: 50%;
}

.timeline-left::before {
    content: '';
    position: absolute;
    left: 159px;
    top: 10px;
    bottom: 0;
    width: 3px;
    background-color: #88b3aa;
    height: 390px;
}

.timeline-right::before {
    content: '';
    position: absolute;
    right: 500px;
    top: 10px;
    bottom: 0;
    width: 2px;
    background-color: #88b3aa;
    height: 400px;
}

/* Linke und rechte Seite */
.timeline-item {
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 100%;
    margin-bottom: 20px;
}

.timeline-item.right {
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
    left: 50%;
}

/* Kreise auf der Linie */
.timeline-left .timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #88b3aa;
    border-radius: 50%;
    z-index: 1;
    left: 150px;
}

.timeline-right .timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    width: 20px;
    height: 20px;
    background-color: #88b3aa;
    border-radius: 50%;
    z-index: 1;
    right: 491px;
}

.timeline-left .timeline-date {
    font-weight: bold;
    font-size: 1.25rem;
    color: #000;
    margin-right: 80px;
    width: 240px;
}
.timeline-right .timeline-date {
    font-weight: bold;
    font-size: 1.25rem;
    color: #000;
    /* margin-right: 80px; */
    width: 240px;
}

.timeline-item.right .timeline-date {
    margin-right: 0;
    margin-left: 20px;
}

.timeline-content {
    border-radius: 10px;
    position: relative;
    z-index: 2;
    max-width: 500px;
    width: 100%;
    min-height: 150px;
}

.timeline-content p {
	margin: 0 auto 25px auto;
}

.timeline-content h3 {
    margin-top: 0;
    font-size: 1.5rem;
    color: #333;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .timeline {
        flex-direction: column;
    }

    .timeline-item {
        width: 100%;
        justify-content: flex-start;
        padding: 0 20px;
    }

    .timeline-item.right {
        justify-content: flex-start;
    }

    .timeline::before {
        left: 0;
    }

    .timeline-item::before {
        left: 15px;
    }

    /* Anpassungen für die Spalten */
    .timeline-left,
    .timeline-right {
        width: 100%;
        float: none;
        margin-bottom: 20px; /* Platz zwischen den Blöcken */
    }

    .timeline-left::before,
    .timeline-right::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 3px;
        height: 100%;
        background-color: #88b3aa;
    }

    .timeline-left .timeline-item::before,
    .timeline-right .timeline-item::before {
        left: 15px; /* Passe den Punkt an die mobile Ansicht an */
    }

    .timeline-item {
        justify-content: flex-start;
        padding-left: 40px; /* Platz für die Linie und den Punkt */
    }
	
	.timeline-left .timeline-date,
	.timeline-right .timeline-date {		
		margin-right: 10px;
		width: 90px;		
	}
	
	.timeline-content {
		width: 50%;
	}
}







/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: #f7ebef;
    text-align: left;
}

.contact-section h2 {
    font-size: 2.5rem;
    color: #000;
    margin-bottom: 20px;
}

.contact-info {
    margin-top: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}

.contact-item a {
    text-decoration: none;
    color: #333;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
}






/* Footer Styles */
footer {
    padding: 20px;
    border-top: 3px solid #959595;
    text-align: center;
    margin-top: 50px;
}

/* Responsive Styles */
@media (max-width: 768px) {
	/*body {
		padding: 0 3%;
	}*/
	
    .header-content {
        flex-direction: column;
		height: 150px;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-container {
        flex-direction: column;
        align-items: center;
    }

    .hero-text {
        max-width: 100%;
        text-align: center;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-image img {
        max-width: 100%;
    }

    .divider-container {
        flex-direction: column;
    }
	.divider-box:last-child {
		border-left: none; /* Überschreibt das Inline-CSS */
	}

    .divider-box + .divider-box {
        border-left: none;
        margin-top: 10px;
    }

    .container {
        padding: 0 10px;
    }
	
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        padding-right: 0;
        padding-bottom: 20px;
    }

    .about-text {
        padding-left: 0;
    }
	
    .golf-container {
        flex-direction: column;
    }

    .golf-text {
        padding-right: 0;
        text-align: center;
    }

    .golf-image {
        padding-left: 0;
        margin-top: 20px;
    }
	
    .price-list {
        flex-direction: column;
    }

    .price-item {
        width: 100%;
        margin-bottom: 20px;
    }	
}
