/* =========================================================
   INDEX – HERO
========================================================= */

body.landing {

    display: flex;
    justify-content: center;
    align-items: center;

}


.hero-section {

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    padding: 120px 20px 100px;

}


.hero-content {

    width: 100%;
    max-width: 850px;

    display: flex;

    justify-content: space-between;
    align-items: stretch;

    gap: 3rem;

    padding: 55px 40px;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 22px;

}


/* =========================================================
   HERO LOGOS – HOVER ÜBER HERO-CARD
========================================================= */

.hero-content:hover .index-logos .logo {

    opacity: 1;

    filter:
        grayscale(0%)
        drop-shadow(
            0 0 10px rgba(56, 189, 248, 0.22)
        );

    transform: scale(1.05);
}


.hero-left,
.hero-right {

    flex: 1;

}


.hero-left {

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 12px;

    text-align: center;

    justify-content: flex-start;

}


.hero-right {

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

}


.hero-divider {

    width: 1px;
    min-height: 260px;

    background:
        linear-gradient(
            to bottom,
            rgba(56, 189, 248, 0.18),
            rgba(56, 189, 248, 0.45),
            rgba(56, 189, 248, 0.70),
            rgba(56, 189, 248, 0.45),
            rgba(56, 189, 248, 0.18)
        );

    box-shadow:
        0 0 10px rgba(56, 189, 248, 0.4),
        0 0 18px rgba(56, 189, 248, 0.2);

}


/* =========================================================
   INDEX – PROFILE
========================================================= */

.profile-image {

    width: 180px;
    height: 180px;

    object-fit: cover;

    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 8%;

    margin-bottom: 20px;

}


/* =========================================================
   INDEX – HERO NAME
========================================================= */

.hero-name {

    font-family: "Segoe UI", Arial, sans-serif;

    font-size: clamp(12px, 3vw, 18px);

    font-weight: 100;

    letter-spacing: 0.18em;

    text-transform: uppercase;

    color: white;

    text-shadow:
        0 0 4px rgba(255, 255, 255, 0.12);

    margin-bottom: 10px;

}


/* =========================================================
   INDEX – IHK
========================================================= */

.ihk-title {

    margin: 18px 0;

}


.ihk-topline {

    display: flex;

    justify-content: center;
    align-items: baseline;

    gap: 10px;

}


.ihk-badge {

    font-family: "Segoe UI", Arial, sans-serif;

    font-style: italic;
    font-weight: 500;

    color: #16a34a;

    font-size: 18px;

}


.ihk-main {

    font-size: 15px;

    font-weight: 200;

    letter-spacing: 0.3em;

}


.ihk-divider {

    width: 100%;
    max-width: 600px;

    height: 1px;

    margin: 6px auto 10px;

    background:
        linear-gradient(
            to right,
            transparent,
            rgba(255, 255, 255, 0.65),
            rgba(255, 255, 255, 0.90),
            rgba(255, 255, 255, 0.65),
            transparent
        );

}


.ihk-subtitle {

    text-align: center;

    font-weight: 80;

    font-size: 10px;

    letter-spacing: 0.42em;

    text-transform: uppercase;

}


.hero-text {

    margin-top: 10px;

}


/* =========================================================
   INDEX – HERO BRANDING
========================================================= */

.hero-branding {

    margin-top: 22px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 18px;

    text-align: center;

}


.hero-role {

    font-size: 22px;

    font-weight: 300;

    line-height: 1.4;

    letter-spacing: 0.16em;

    text-transform: uppercase;

    color: #ffffff;

    text-shadow:
        0 0 10px rgba(255, 255, 255, 0.08);

}


.hero-stack {

    max-width: 440px;

    font-size: 12px;

    line-height: 1.8;

    color: rgba(56, 189, 248, 0.75);

    letter-spacing: 0.2em;

    text-transform: uppercase;

}


/* =========================================================
   INDEX LOGOS
========================================================= */

.index-logos {

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 28px;

    margin-top: 28px;
}


/* =========================================================
   INDEX LOGO – GRÖSSEN
========================================================= */

.index-logo-aspnet {

    width: auto;
    height: 40px;
}


.index-logo-ad {

    width: auto;
    height: 40px;
}


.index-logo-azure {

    width: auto;
    height: 40px;
}


/* =========================================================
   INDEX – NEWSLETTER
========================================================= */

.newsletter-preview {

    margin-top: 80px;

    display: flex;
    flex-direction: column;

    align-items: center;

    gap: 18px;

}


.newsletter-header {

    display: flex;

    align-items: center;

    gap: 12px;

}


.newsletter-icon {

    width: 32px;
    height: 32px;

    filter: brightness(0) invert(1);

    opacity: 0.9;

}


.newsletter-title {

    font-size: 15px;

    letter-spacing: 0.14em;

    text-transform: uppercase;

    color: #ffffff;

}


.newsletter-description {

    max-width: 420px;

    text-align: center;

    font-size: 15px;

    line-height: 1.7;

    color: rgba(255, 255, 255, 0.65);

}


.newsletter-button {

    padding: 12px 28px;

    border: 1px solid rgba(255, 255, 255, 0.14);

    border-radius: 10px;

    background: rgba(255, 255, 255, 0.03);

    color: #ffffff;

    text-decoration: none;

    text-transform: uppercase;

    font-size: 13px;

    letter-spacing: 0.14em;

    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;

}


.newsletter-button:hover {

    background: rgba(255, 255, 255, 0.06);

    border-color: rgba(56, 189, 248, 0.45);

    box-shadow:
        0 0 18px rgba(56, 189, 248, 0.14);

}


.newsletter-button:active {

    transform: scale(0.98);

    background: rgba(56, 189, 248, 0.18);

    border-color: rgba(56, 189, 248, 0.85);

    box-shadow:
        0 0 22px rgba(56, 189, 248, 0.28),
        inset 0 0 12px rgba(56, 189, 248, 0.18);

}


/* =========================================================
   INDEX – TABLET
========================================================= */

@media (max-width: 900px) {

    .hero-content {

        flex-direction: column;

        text-align: center;

        padding: 30px 20px;

    }


    .hero-right {

        margin-top: 20px;

    }


    .hero-divider {

        display: none;

    }


    .profile-image {

        width: 140px;
        height: 140px;

    }


    .main-nav {

        margin-left: 0;

        justify-content: center;

        flex-wrap: wrap;

        gap: 16px;

    }

}


/* =========================================================
   INDEX – SMARTPHONE
========================================================= */

@media (max-width: 480px) {

    .hero-section {

        padding: 100px 10px 80px;

    }


    .hero-content {

        padding: 20px 14px;

        border-radius: 16px;

        flex-direction: column-reverse;

    }


    .hero-divider {

        display: none;

    }


    .profile-image {

        width: 110px;
        height: 110px;

    }


    .ihk-main {

        font-size: 20px;

    }


    .ihk-subtitle {

        font-size: 12px;

        letter-spacing: 0.25em;

    }

}