/* Fonts */
@font-face {
    font-family: 'MuseoSansRounded';
    src: url('../fonts/MuseoSansRounded-300.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MuseoSansRounded';
    src: url('../fonts/MuseoSansRounded-500.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'MuseoSansRounded';
    src: url('../fonts/MuseoSansRounded-700.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'MuseoSansRounded', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    color: #1d1d1d;
    background-color: #ffffff;
    line-height: 1.5;
}

/* Layout */
.page {
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.typeform-container {
    flex: 1 0 auto;
    width: 100%;
}

/* Header */
.header {
    background-image: url('../images/header-bg.jpg');
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo-link {
    display: block;
}

.logo {
    height: 50px;
    width: auto;
}

.title {
    font-family: 'MuseoSansRounded', sans-serif;
    font-weight: 700;
    font-size: 54px;
    line-height: 1.19;
    text-align: center;
    color: #ffffff;
    padding: 22px 20px 15px;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8), 0 0 20px rgba(0, 0, 0, 0.6);
}

.subtitle {
    font-family: 'MuseoSansRounded', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.4;
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px 20px 30px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8), 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Footer */
.footer {
    background-color: #f5f5f5;
    padding: 15px 20px;
    margin-top: auto;
}

.footer-text {
    font-family: 'MuseoSansRounded', sans-serif;
    font-weight: 300;
    font-size: 12px;
    line-height: 1.5;
    color: #666666;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}


/* Responsive */
@media (max-width: 520px) {
    .header {
        background-image: url('../images/header-bg-mobile.png');
    }

    .logo {
        height: 40px;
    }

    .title {
        font-family: 'MuseoSansRounded', sans-serif;
        font-weight: 500;
        font-size: 28px;
        max-width: 331px;
        margin: 0 auto;
        padding: 20px 20px 15px;
    }

    .subtitle {
        font-family: 'MuseoSansRounded', sans-serif;
        font-weight: 300;
        font-size: 14px;
        text-align: center;
        max-width: 300px;
        padding: 10px 15px 20px;
        color: #ffffff;
    }

    .footer-text {
        font-size: 11px;
    }
}

@media (min-width: 1200px) {
    .logo {
        height: 60px;
    }

    .title {
        font-size: 54px;
        padding: 30px 20px 50px;
    }
}
