/* === Global === */
body {
    font-family: 'Helvetica', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    margin: 0;
    padding: 0;
}

nav, header, section, footer {
    padding: 20px;
    margin-bottom: 20px;
}

h1, h2, h3 {
    color: #333;
}

a {
    color: #0066cc;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* === Navigation === */
.navbar-wrapper {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1440px;
    margin: 0 auto;
    padding: 24px 32px;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #252B42;
}

.nav-links {
    display: flex;
    gap: 21px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #737373;
    text-decoration: none;
}

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

/* === Search Field === */
.search input {
    padding: 10px 16px;
    border: 1px solid #dadada;
    border-radius: 5px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    background-color: #f5f5f5;
    color: #737373;
}

/* === Responsiv === */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        padding-top: 10px;
    }

    .search {
        margin-top: 12px;
        width: 100%;
    }
}


/* Styling für die Content Card auf der Startseite */

/* content-card-item-5 */
.content-card-item-5 {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 0;

    position: absolute;
    width: 763px;
    height: 260px;
    left: 268px;
    top: 181px;

    background: #FFFFFF;
    border-radius: 5px;
}

/* media */
.content-card-item-5 .media {
    width: 245px;
    height: 260px;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* cover */
.content-card-item-5 .cover {
    box-sizing: border-box;

    position: absolute;
    width: 245px;
    left: 0;
    top: 0;
    bottom: 0;

    background: url("/Volumes/Web/website/bilder/Bildschirmfoto 2025-03-28 um 15.10.32.png");
    border: 1px solid #DDDDDD;
}

/* card-content */
.content-card-item-5 .card-content {
    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 50px;
    gap: 15px;

    width: 518px;
    height: 260px;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

/* h3 */
.content-card-item-5 .card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    /* or 133% */
    letter-spacing: 0.1px;

    /* text-color */
    color: #252B42;

    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

/* paragraph */
.content-card-item-5 .card-content p {
    width: 346px;
    height: 52px;

    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    /* or 162% */
    letter-spacing: 0.2px;

    color: #858585;

    /* Inside auto layout */
    flex: none;
    order: 1;
    flex-grow: 0;
}

.card-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 50px;
    gap: 15px;
    width: 100%;
    max-width: 721px;
    margin: 0 auto;
    box-sizing: border-box;
}

/* Überschrift (h3) */
.card-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.1px;
    color: #252B42;
    margin: 0;
}

/* Absatz (p) */
.card-content p {
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #858585;
    max-width: 580px;
    margin: 0;
}

/* card-content */

.impressum-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 25px 50px;
    gap: 15px;
    width: 100%;
    max-width: 721px;
    margin: 0 auto;
    box-sizing: border-box;
}


.impressum-content h3 {
    font-family: 'Montserrat', 'sans-serif';
    font-style: normal;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: 0.1px;
    color: #252B42;
    margin: 0;
}


.impressum-content p {
    font-family: 'Montserrat', 'sans-serif';
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0.2px;
    color: #858585;
    max-width: 580px;
    margin: 0;
}

.form-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 40px 60px;
    max-width: 657px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.form-card h5 {
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    color: #252B42;
    margin: 0;
}

.form-card h2 {
    text-align: center;
    font-weight: 700;
    font-size: 40px;
    line-height: 57px;
    color: #252B42;
    margin: 0;
}

.form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-control {
    flex: 1;
    min-width: 240px;
    height: 50px;
    padding: 0 16px;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 14px;
    color: #737373;
}

.form-textarea {
    width: 100%;
    height: 140px;
    padding: 16px;
    border: 1px solid #bdbdbd;
    border-radius: 5px;
    background: #f9f9f9;
    font-size: 14px;
    color: #737373;
    resize: vertical;
}

.btn.primary {
    background-color: #1a1a1a;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 15px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    align-self: center;
}

.btn.primary:hover {
    background-color: #1a1a1a;
}

.btn {

    /* Auto layout */
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 36px;
    gap: 10px;

    position: relative;
    width: 122px;
    height: 58px;
    left: 1238px;
    top: 926px;

    /* primary-color */
    background: #1a1a1a;
    border-radius: 37px;
}

/* btn-text */
.btn-text {
    width: 50px;
    height: 28px;

    /* btn-text */
    font-family: 'Montserrat', sans-serif;
    font-style: normal;
    font-weight: 700;
    font-size: 14px;
    line-height: 28px;
    /* identical to box height, or 200% */
    text-align: center;
    letter-spacing: 0.2px;

    /* light-text-color */
    color: #FFFFFF;


    /* Inside auto layout */
    flex: none;
    order: 0;
    flex-grow: 0;
}

