/* Import Montserrat — MUST be first */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base styles */
html, body {
    height: 100%;
}

body {
    font-family: 'Montserrat', Arial, sans-serif;
    line-height: 1.6;
    color: #222;
}

/* Ensure images and SVGs scale properly */
img, svg {
    max-width: 100%;
    height: auto;
    display: block;
}

/* FOOTER — fixed to bottom of viewport, no scrolling */
.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: left;
    padding: 20px;
    background: #2ab2a0;
    color: #16395c;
}

/* HERO SECTION — full viewport, padded so logo clears fixed footer */
.hero {
    height: 100vh;
    height: 100dvh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px 20px 80px 20px;
}

/* HERO CONTENT — fill available width */
.hero-content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* HERO LOGO — as large as possible */
.hero-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* TAGLINE */
.hero-tagline {
    font-size: 24px;
    color: #2ab2a0;
}

/* 📱 Mobile adjustments */
@media (max-width: 600px) {

    .hero {
        padding: 20px 20px 80px 20px;
    }

    .hero-logo img {
        width: 100%;
    }

    .hero-tagline {
        font-size: 18px;
    }
}