/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Global Styles */
body {
    font-family: Arial, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Container for centering content */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid #ccc;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.logo {
    font-size: 2em;
    font-weight: bold;
    color: #333;
}
.nav-links {
    display: flex;
    gap: 20px;
}
.nav-links li {
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}
.nav-links a:hover {
    color: #00d1b2;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.5);
}
.menu-button {
    padding: 10px 20px;
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.menu-button:hover {
    background-color: #00d1b2;
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 50px;
    background: url('banner.jpg') no-repeat center center/cover;
    position: relative;
    overflow: hidden;
    color: #fff;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}
.hero-content {
    flex: 1;
    position: relative;
    z-index: 1;
}
.hero h1 {
    font-size: 3em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}
.hero p {
    margin-top: 20px;
    font-size: 1.5em;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}
.hero-buttons {
    margin-top: 30px;
}
.start-button, .learn-button {
    padding: 15px 30px;
    margin-right: 10px;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: transform 0.3s ease;
}
.start-button {
    background-color: #333;
    color: #fff;
}
.start-button:hover {
    background-color: #38761d;
    transform: translateY(-3px);
}
.learn-button {
    background-color: #fff;
    color: #333;
    border: 1px solid #333;
}
.learn-button:hover {
    transform: translateY(-3px);
}
.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Fitness Offerings */
.fitness-offerings {
    text-align: center;
    padding: 50px 20px;
    background-color: #f7f7f7;
}
.offer-cards {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.offer-card {
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #fff;
}
.offer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Über uns */
.about-us {
    padding: 60px 20px;
    background-color: #fff;
    text-align: center;
}
.about-us h2 {
    font-size: 2.5em;
    margin-bottom: 25px;
    color: #333;
    transition: color 0.3s ease;
}
.about-us p {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #555;
}
.about-us img {
    margin-top: 30px;
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Testimonials */
.testimonials {
    padding: 50px;
    text-align: center;
    background-color: #fff;
}
.testimonial {
    margin: 20px auto;
    padding: 20px;
    border: 1px solid #ccc;
    max-width: 600px;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Studio Benefits */
.studio-benefits {
    text-align: center;
    padding: 50px 20px;
    background-color: #fff;
}
.studio-benefits img {
    margin-top: 20px;
    width: 100%;
    max-width: 500px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Call-to-Action */
.cta {
    padding: 50px;
    text-align: center;
    background-color: #6aa84f;
    color: #fff;
}
.cta button {
    padding: 15px 30px;
    background-color: #fff;
    color: #333;
    border: none;
    cursor: pointer;
    border-radius: 50px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.3s ease;
}
.cta button:hover {
    background-color: #38761d;
    transform: translateY(-3px);
}

/* FAQ Section */
.faq {
    padding: 50px;
    max-width: 800px;
    margin: auto;
    background-color: #f7f7f7;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.faq details {
    margin: 20px 0;
    padding: 10px;
    border: 1px solid #ccc;
    background-color: #fff;
    border-radius: 5px;
}
.faq summary {
    cursor: pointer;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 50px;
    text-align: center;
    background-color: #6aa84f;
    color: #fff;
}
.contact a {
    color: #00d1b2;
    text-decoration: none;
    transition: color 0.3s ease;
}
.contact a:hover {
    color: #007b74;
}

/* Footer */
footer {
    padding: 20px;
    text-align: center;
    background-color: #333;
    color: #fff;
}
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 10px;
}
.footer-links li {
    list-style: none;
}
.footer-links a {
    color: #00d1b2;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-links a:hover {
    color: #fff;
}

/* Social Media in Contact Section */
.social-media a {
    margin: 0 10px;
    display: inline-block;
    transition: transform 0.3s ease;
}
.social-media a:hover {
    transform: scale(1.1);
}
