/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FULL PAGE */
html, body {
    height: 100%;
}

body {
    font-family: Arial, sans-serif;
    background: #f0f0f0;
    color: #044851;

    display: flex;
    flex-direction: column;
}

/* HEADER */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
}

.logo {
    height: 70px;
}

.tagline {
    font-size: 18px;
    letter-spacing: 2px;
}

/* MAIN */
.main {
    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    padding: 0 20px;
}

.main h1 {
    font-size: 70px;
    margin-bottom: 15px;
}

.main p {
    max-width: 600px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #333;
}

/* WHATSAPP BUTTON */
.whatsapp-btn {
    display: inline-block;
    margin-top: 5px;
    padding: 12px 30px;

    border: 2px solid #18b879;
    border-radius: 30px;

    color: #18b879;
    text-decoration: none;
    font-weight: bold;
}

/* FOOTER */
.footer {
    width: 100%;
    padding: 20px 60px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    /* ✅ KEY FIX */
    flex-wrap: nowrap; /* prevents dropping */
}

/* LEFT SIDE */
.footer .left {
    font-size: 14px;
    color: black;
}

/* RIGHT SIDE ICONS */
.footer .right {
    display: flex;
    gap: 15px;

    /* ✅ keep icons always right */
    flex-shrink: 0;
}

/* ICON SIZE */
.footer .right i {
    font-size: 28px;
}

/* INSTAGRAM */
.instagram i {
    background: radial-gradient(circle at 30% 107%, 
    #fdf497 0%, #fdf497 5%, 
    #fd5949 45%, #d6249f 60%, 
    #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LINKEDIN */
.linkedin i {
    color: #0077B5;
}

/* ✅ MOBILE FIX */
@media (max-width: 768px) {

    .header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .main h1 {
        font-size: 36px;
    }

    /* ✅ allow stacking ONLY on small screens */
    .footer {
        flex-direction: column;
        flex-wrap: wrap;
        text-align: center;
        gap: 15px;
        padding: 20px;
    }

