﻿/* =====================================
   GLOBAL
===================================== */

body {
    font-family: 'Segoe UI',sans-serif;
    background: radial-gradient(circle at top left,#dbeafe 0%,transparent 35%), radial-gradient(circle at top right,#ede9fe 0%,transparent 35%), radial-gradient(circle at bottom,#dcfce7 0%,transparent 35%), #f8fafc;
    color: #1f2937;
    overflow-x: hidden;
}

/* =====================================
   WELCOME TEXT
===================================== */

.welcome-text {
    font-size: 56px;
    font-weight: 800;
    color: #fff;
    text-shadow: 0 5px 25px rgba(0,0,0,.45);
    animation: fadeSlide 1.5s ease;
}

.welcome-sub {
    font-size: 22px;
    color: #facc15;
    font-weight: 600;
    animation: fadeSlide 2.2s ease;
}

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =====================================
   HERO
===================================== */

.hero {
    text-align: center;
    padding-top: 30px;
    padding-right: 0;
    padding-bottom: 0;
    padding-left: 0;
}

    .hero h1 {
        font-size: 60px;
        font-weight: 900;
        background: linear-gradient( 90deg, #4338ca, #2563eb, #06b6d4, #14b8a6);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        margin-bottom: 10px;
    }

    .hero p {
        color: #64748b;
        font-size: 20px;
    }

/* =====================================
   DIVIDER
===================================== */

.divider {
    text-align: center;
    margin: 20px 0;
    position: relative;
}

    .divider:before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1px;
        background: #ddd;
    }

    .divider span {
        background: white;
        padding: 0 15px;
        position: relative;
    }

/* =====================================
   MOBILE
===================================== */

@media(max-width:768px) {

    .welcome-text {
        font-size: 30px;
    }

    .welcome-sub {
        font-size: 16px;
    }

    .hero h1 {
        font-size: 30px;
    }

    .hero p {
        font-size: 16px;
    }
}
