/*
Theme Name: Nevolat Coming Soon
Theme URI: https://example.com
Author: Aricoma
Description: Jednoduchý coming soon WP theme pro Luntin.
Version: 1.0
*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700;800;900&display=swap');

body {
    margin: 0;
    padding: 40px 80px 80px;
    font-family: 'Montserrat', sans-serif;
    color: white;
}

.container {
    max-width: 1200px;
    padding: 40px 20px;
}

header img {
    width: 160px;
}

.content {
    margin-top: 80px;
    max-width: 800px;
}

.content h1 {
    font-size: 72px;
    font-weight: 900;
    line-height: 1.2;
}

.blue-block {
    background: linear-gradient(180deg, #0d56a4 0%, #2ba8c6 100%);
    min-height: 70vh;
    position: relative;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 40px;
}

/* ---------- FEATHER DEFAULT ---------- */
.feather {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    width: 38%;
    max-width: 420px;
    pointer-events: none;
    opacity: 0.9;
}

/* ---------- TABLET ---------- */
@media (max-width: 900px) {
    .content h1 {
        font-size: 48px;
    }
    .feather {
        width: 32%;
        max-width: 300px;
        right: 20px;
        opacity: 0.7;
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 600px) {
    header img {
        width: 130px;
    }

    body {
        padding: 20px;
    }

    .content h1 {
        font-size: 32px;
    }

    .feather {
        width: 55%;
        right: 0;
        top: auto;
        bottom: 10px;
        transform: none;
        opacity: 0.35;
    }

    .blue-block {
        padding: 30px 20px;
    }
}
