/* ===== VARIABLES ===== */
:root {
    --ocean-blue: #2872A1;
    --cloudy-sky: #CBDDE9;
}

/* ===== RESET ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", "Segoe UI", system-ui, sans-serif;
}

/* ===== HERO ===== */
.hero {
    min-height: calc(100vh - 200px);
    background: linear-gradient(
        135deg,
        #DDECF5,
        #F7FBFE
    );

    display: flex;
    align-items: center;
    justify-content: flex-start;
}

/* ===== HERO CONTENT (SPLIT) ===== */
.hero-content {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 100px 80px;
}

/* LEFT SIDE (LOGO) */
.hero-left {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    max-width: 305px;
    width: 100%;
}

/* RIGHT SIDE (TEXT) */
.hero-right {
    flex: 0 0 60%;
    padding-left: 40px;
}

/* ===== TEXT STYLES ===== */
.title {
    font-size: 5rem;
    font-weight: 500;
    line-height: 2.2;

    background: linear-gradient(
        90deg,
        #2F5E7E,
        #A8C8DC
    );

    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.subtitle {
    font-size: 1.4rem;
    opacity: 0.95;
    color: #1f3f54;
}

/* ===== TEXT ANIMATION ===== */
.animate-text {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideIn 1.2s ease forwards;
}

.delay-1 {
    animation-delay: 0.3s;
}

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ===== FOOTER ===== */
.details {
    background: var(--cloudy-sky);
    color: #1f3f54;
    padding: 40px 0;
}

.footer-icon {
    font-size: 1.8rem;
    color: var(--ocean-blue);
}

.footer-title {
    font-weight: 600;
    font-size: 2rem;
    color: #1f3f54;
}

.address {
    font-size: 1rem;
    line-height: 1.5;
}

/* Powered by link */
.powered-by a {
    text-decoration: none;
    color: inherit;
    font-weight: 500;
}

/* ===== FOOTER BOTTOM BAR ===== */
.footer-bottom {
    border-top: 2px solid #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.15rem;
    opacity: 0.85;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .hero-content {
        padding: 80px 40px;
    }

    .title {
        font-size: 5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        justify-content: center;
        text-align: center;
    }

    .hero-content {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-left,
    .hero-right {
        flex: 100%;
        padding: 0;
    }

    .hero-right {
        margin-top: 20px;
    }

    .title {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .footer-bottom {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}
