/* Griechenlandinfo.at – kleine Ankündigungsseite */

:root {
    --blue-dark: #003f7d;
    --blue-main: #005fae;
    --text: #17304f;
    --white: #ffffff;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    min-height: 100vh;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    color: var(--text);
    background: #dceffc;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.hero {
    position: relative;
    min-height: calc(100vh - 58px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
    /*     radial-gradient(ellipse at 23% 29%,  */
    /*        rgba(255,255,255,.98) 0%,  */
    /*        rgba(255,255,255,.92) 20%,  */
    /*        rgba(255,255,255,.63) 40%,  */
    /*        rgba(255,255,255,.18) 62%,  */
    /*        rgba(255,255,255,0) 78%),  */
    /*    linear-gradient(90deg,  */
    /*        rgba(255,255,255,.82) 0%,  */
    /*        rgba(255,255,255,.50) 35%,  */
    /*        rgba(255,255,255,.10) 66%,  */
    /*        rgba(255,255,255,0) 100%),  */
        url("../img/hero-background-hires.png");
    background-size: cover;
    background-position: 68% center;
    z-index: 0;
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 45%;
    /* background: linear-gradient(180deg, rgba(255,255,255,0), rgba(255,255,255,.90)); */
    z-index: 1;
}

.header {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    padding: 34px clamp(22px, 5vw, 70px);
}

.logo {
    width: clamp(70px, 7.4vw, 108px);
    height: auto;
    margin-right: 18px;
    filter:
        drop-shadow(0 1px 0 rgba(255,255,255,.95))
        drop-shadow(0 0 8px rgba(255,255,255,.7));
}

.brand h1 {
    margin: 0;
    color: #004982;
    font-family: Cambria, Georgia, "Times New Roman", serif;
    font-size: clamp(40px, 6vw, 78px);
    line-height: .95;
    letter-spacing: -1.2px;
    text-shadow:
        0 1px 0 rgba(255,255,255,.95),
        0 0 12px rgba(255,255,255,.78);
}

.brand p {
    margin: 12px 0 0;
    color: #244772;
    font-size: clamp(15px, 1.6vw, 22px);
    line-height: 1.3;
    text-shadow:
        0 1px 0 rgba(255,255,255,.95),
        0 0 8px rgba(255,255,255,.72);
}

.content {
    position: relative;
    z-index: 2;
    width: min(760px, calc(100% - 44px));
    margin: auto auto 9vh clamp(22px, 6vw, 88px);
    padding: clamp(22px, 3vw, 36px);
    background: rgba(255,255,255,.80);
    border: 1px solid rgba(164,205,237,.78);
    border-radius: 16px;
    box-shadow: 0 12px 35px rgba(0,58,112,.16);
    backdrop-filter: blur(5px);
}

.badge {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 12px;
    color: #fff;
    background: linear-gradient(180deg, #0874c7, #00569c);
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.content h2 {
    margin: 0 0 14px;
    color: #004982;
    font-family: Cambria, Georgia, "Times New Roman", serif;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.05;
}

.content p {
    margin: 0 0 16px;
    font-size: clamp(15px, 1.35vw, 18px);
    line-height: 1.65;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-top: 22px;
}

.features span {
    display: inline-block;
    padding: 8px 11px;
    color: #004982;
    background: #edf7ff;
    border: 1px solid #c3dff4;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.footer {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 18px clamp(22px, 5vw, 70px);
    color: #fff;
    background: linear-gradient(180deg, #0068b5, #003f7d);
    font-size: 13px;
}

.footer a {
    color: #fff;
    font-weight: 700;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.footer-links {
    display: flex;
    gap: 12px;
}

@media (max-width: 720px) {
    .hero::before {
        background-position: 64% center;
    }

    .header {
        align-items: flex-start;
        padding-top: 24px;
    }

    .logo {
        width: 56px;
        margin-right: 14px;
    }

    .brand h1 {
        font-size: 36px;
    }

    .brand p {
        font-size: 14px;
    }

    .content {
        margin: auto 18px 7vh;
        width: auto;
    }

    .footer {
        flex-direction: column;
    }
}


/* Coming Soon V2 – echte Säule mit transparentem Hintergrund */
.logo {
    object-fit: contain;
}


/* Coming Soon V4 – hochauflösender Hintergrund */
.hero::before {
    background-size: cover;
}

@media (max-width: 720px) {
    .hero::before {
        background-position: 74% center;
    }
}


/* Coming Soon V5 – Impressum */
.impressum-box {
    max-width: 680px;
}

.impressum-box a {
    color: #004982;
    font-weight: 700;
}

.back-link {
    margin-top: 26px;
}


/* Coming Soon V6 – Überschrift in zwei Größen */
.content h2 {
    line-height: 1.08;
}

.content h2 .headline-main {
    display: block;
    font-size: 1em;
}

.content h2 .headline-sub {
    display: block;
    margin-top: 4px;
    font-size: 0.74em;
    line-height: 1.12;
}


/* Coming Soon V7 – Mobile Header-Fix */
@media (max-width: 720px) {
    .header {
        display: grid;
        grid-template-columns: 58px minmax(0, 1fr);
        align-items: center;
        gap: 12px;
        padding: 22px 18px 18px;
    }

    .logo {
        width: 54px;
        margin-right: 0;
    }

    .brand {
        min-width: 0;
        max-width: 100%;
    }

    .brand h1 {
        font-size: clamp(27px, 7.4vw, 32px);
        line-height: 1;
        letter-spacing: -0.5px;
        white-space: nowrap;
        max-width: 100%;
    }

    .brand p {
        margin-top: 8px;
        font-size: clamp(13px, 3.4vw, 15px);
        line-height: 1.25;
        max-width: 100%;
        overflow-wrap: normal;
    }
}

@media (max-width: 380px) {
    .header {
        grid-template-columns: 50px minmax(0, 1fr);
        gap: 10px;
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo {
        width: 48px;
    }

    .brand h1 {
        font-size: clamp(24px, 7vw, 28px);
    }

    .brand p {
        font-size: 12.5px;
    }
}
