/* style.css */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    background-color: #ffffff;
    color: #000;
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffffff;
    padding: 1rem 2rem;
    color: #1a2b6b;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.navbar .logo {
    font-weight: 600;
    font-size: 1.5rem;
    color: #1a2b6b;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: #1a2b6b;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #FF8C00;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #1a2b6b;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Mobile Optimierungen */
@media screen and (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 0.5rem 0;
    }

    .navbar {
        padding: 0.5rem 1rem;
    }

    .navbar .logo {
        font-size: 1.1rem;
    }

    .logo-img {
        height: 25px;
    }

    section {
        padding: 2rem 1rem;
    }

    .service-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-item {
        padding: 1rem;
    }

    .service-image {
        height: 180px;
    }

    .contact-form {
        padding: 0;
    }

    .container {
        padding: 20px;
    }
    
    .header h1 {
        font-size: 2em;
    }
    
    .header p {
        font-size: 1.1em;
    }
    
    .contact-info {
        padding: 0 1rem;
    }
    
    .contact-info p {
        font-size: 1rem;
    }
    
    .contact-info a {
        text-align: center;
    }

    .hero {
        padding: 6rem 2rem;
        min-height: 400px;
        justify-content: flex-start;
    }

    .hero-content {
        padding-left: 2rem;
    }

    .hero h1 {
        font-size: 1.6rem;
        text-align: left;
        white-space: normal;
        margin-bottom: 1rem;
        line-height: 1.3;
    }

    .hero p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }

    .cta-button {
        margin: 1rem 0;
        display: inline-block;
    }
}

/* Kleine Mobile Geräte */
@media screen and (max-width: 480px) {
    .navbar .logo {
        font-size: 1rem;
    }

    .logo-img {
        height: 20px;
    }

    .hero {
        padding: 4rem 1.5rem;
        min-height: 350px;
    }

    .hero-content {
        padding-left: 1.5rem;
    }

    .hero h1 {
        font-size: 1.3rem;
        text-align: left;
        white-space: normal;
        margin-bottom: 0.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.9rem;
        text-align: left;
        margin-bottom: 1.2rem;
        line-height: 1.3;
    }

    .cta-button {
        margin: 1rem 0;
        display: inline-block;
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Sehr kleine Mobile Geräte */
@media screen and (max-width: 360px) {
    .navbar .logo {
        font-size: 0.9rem;
    }

    .hero {
        padding: 3rem 1rem;
        min-height: 300px;
    }

    .hero-content {
        padding-left: 1rem;
    }

    .hero h1 {
        font-size: 1.1rem;
        text-align: left;
        white-space: normal;
        margin-bottom: 0.6rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 0.8rem;
        text-align: left;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .cta-button {
        margin: 0.8rem 0;
        display: inline-block;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }
}

.hero {
    padding: 8rem 2rem;
    background-image: url('hero.png');
    background-size: cover;
    background-position: 45% 0%;
    background-repeat: no-repeat;
    text-align: center;
    margin-top: 4rem;
    position: relative;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    white-space: normal;
}

.hero p {
    margin-top: 1rem;
    font-size: 1.5rem;
    color: #ffffff;
    font-weight: 500;
}

.cta-button {
    margin: 2rem auto;
    display: inline-block;
    background-color: #1a2b6b;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 500;
    border: 2px solid #1a2b6b;
}

.cta-button:hover {
    background-color: #ffffff;
    color: #1a2b6b;
}

section {
    padding: 4rem 2rem;
}

section h2 {
    color: #1a2b6b;
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 600;
    font-size: 2.2rem;
}

.about-content, .services-content, .booking-content, .contact-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
}

.service-item {
    background: #ffffff;
    padding: 0;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    min-height: 350px;
    display: flex;
    flex-direction: column;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.service-item h3 {
    font-weight: 600;
    margin: 1.5rem 1.5rem 1rem;
    padding: 0;
    font-size: 1.3rem;
    color: #1a2b6b;
}

.service-item p {
    margin: 0 1.5rem 1.5rem;
    padding: 0;
    line-height: 1.6;
    color: #666;
    flex-grow: 1;
}

.service-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin: 0;
    border-radius: 12px 12px 0 0;
}

/* Desktop-spezifische Anpassungen für Service-Grid */
@media screen and (min-width: 1200px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

@media screen and (min-width: 1600px) {
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 3rem;
    }
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #1a2b6b;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.form-group textarea {
    height: 150px;
}

.booking-content {
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1.6;
    text-align: center;
}

.booking-content .cta-button {
    margin: 2rem auto;
    display: inline-block;
}

.hero-image {
    width: 100%;
    max-width: 600px;
    height: 300px;
    object-fit: cover;
    margin-bottom: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto 2rem;
    text-align: center;
    color: #1a2b6b;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-info a {
    color: #1a2b6b;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #FF8C00;
}

.contact-info p:last-child {
    margin-bottom: 0;
}

#booking {
    background-color: #1a2b6b;
    color: #ffffff;
}

#booking h2 {
    color: #ffffff;
}

#booking p {
    color: #ffffff;
}

#booking .cta-button {
    background-color: #ffffff;
    color: #1a2b6b;
    border: 2px solid #ffffff;
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 500;
}

#booking .cta-button:hover {
    background-color: transparent;
    color: #ffffff;
}

#booking .calendar-icon {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

#booking .cta-button:hover .calendar-icon {
    stroke: #ffffff;
}

.footer {
    background-color: #1a2b6b;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #ff7200ff;
}

.copyright {
    font-size: 0.8rem;
    opacity: 0.8;
    margin: 0;
}

/* Mobile Optimierungen für Footer */
@media screen and (max-width: 768px) {
    .footer {
        padding: 1.5rem 0;
    }

    .footer-content {
        padding: 0 1rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-links a {
        font-size: 0.85rem;
    }

    .copyright {
        font-size: 0.75rem;
    }
}

.legal-content {
    max-width: 800px;
    margin: 8rem auto 4rem;
    padding: 0 2rem;
}

.legal-content h1 {
    color: #1a2b6b;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content section {
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #1a2b6b;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #1a2b6b;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.legal-content p {
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Mobile Optimierungen für rechtliche Seiten */
@media screen and (max-width: 768px) {
    .legal-content {
        margin: 6rem auto 3rem;
        padding: 0 1rem;
    }

    .legal-content h1 {
        font-size: 2rem;
    }

    .legal-content h2 {
        font-size: 1.3rem;
    }

    .legal-content h3 {
        font-size: 1.1rem;
    }
}