/* START CURSOR CHANGES 2026-01-12 */

/* ===== CSS Variables ===== */
:root {
    --color-primary: #1E5FBE;
    --color-primary-dark: #1a4f9e;
    --color-white: #FFFFFF;
    --color-text-dark: #1A1A2E;
    --color-text-gray: #6B7280;
    --color-border: #E5E7EB;
    --font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.3);
    --transition: all 0.3s ease;
}

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

html, body {
    height: 100%;
}

body {
    font-family: var(--font-family);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
}

/* ===== Hero Section - Full Viewport ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('../images/background.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Dark overlay for text readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 26, 46, 0.7) 0%,
        rgba(26, 26, 46, 0.5) 40%,
        rgba(26, 26, 46, 0.6) 100%
    );
    z-index: 1;
}

/* Hero Content Container */
.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 650px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

/* ===== Logo ===== */
.logo {
    display: block;
    margin-bottom: 40px;
}

.logo-image {
    height: 60px;
    width: auto;
}

/* ===== Typography ===== */
.hero-title {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-white);
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.3);
}

.text-blue {
    color: #5BA3F5;
    font-weight: 600;
}

/* ===== Form Card ===== */
.form-card {
    width: 100%;
    background-color: var(--color-white);
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: var(--shadow-lg);
}

.form-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    text-align: center;
}

/* ===== Iframe Container ===== */
.iframe-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.web-form-iframe {
    width: 100%;
    max-width: 580px;
    height: 680px;
    border: none;
}

/* ===== Responsive Design ===== */
@media (max-width: 768px) {
    .hero-content {
        padding: 30px 16px;
    }

    .logo-image {
        height: 50px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .form-card {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .form-card-title {
        font-size: 20px;
    }

    .web-form-iframe {
        max-width: 100%;
        height: 900px;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 20px 12px;
    }

    .logo-image {
        height: 45px;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .form-card {
        padding: 20px 16px;
    }

    .form-card-title {
        font-size: 18px;
        margin-bottom: 16px;
    }

    .web-form-iframe {
        height: 950px;
    }
}

/* END CURSOR CHANGES */
