/* ================= GLOBAL ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(to bottom right, #f8fbf9, #eef7f3);
    color: #1d1d1d;
}

/* ================= HEADER ================= */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo img {
    height: 55px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #08724F;
    font-weight: 500;
    transition: 0.3s ease;
}

nav a:hover {
    opacity: 0.7;
}

/* ================= HERO ================= */

main {
    padding: 20px 6%;
    text-align: center;
}

.container {
    max-width: 1100px;
    margin: auto;
    animation: fadeIn 1.2s ease-in-out;
}

.launch-text {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #b3a018;
    letter-spacing: -0.5px;
}

/* Banner */
.banner-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease;
}

.banner-image:hover {
    transform: scale(1.02);
}

/* ================= WAITLIST BUTTON ================= */

.cta-section {
    margin-top: 50px;
}

.primary-btn {
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    background: #08724F;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(8, 114, 79, 0.2);
}

.primary-btn:hover {
    background: #065f41;
    transform: translateY(-3px);
}

/* ================= FOOTER ================= */

footer {
    margin-top: 0px;
    padding: 20px 6%;
    background: #ffffff;
    border-top: 1px solid #eee;

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;

    flex-wrap: wrap;
    text-align: center;
}

footer span {
    font-size: 0.95rem;
    color: #666;
}

.sm-logo {
    height: 40px;
    width: auto;
    display: block;
}

/* Floating Social Icons */
.floating-social {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

/* Icon Style */
.social-icon {
    width: 50px;
    height: 50px;
    background: #ffffff;
    border-radius: 10%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

/* ================= ANIMATION ================= */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effect (Desktop Only) */
@media (hover: hover) {
    .social-icon:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    }
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    header {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .launch-text {
        font-size: 1.2rem;
    }

    main {
        padding: 20px 20px;
    }

    .banner-image {
        border-radius: 12px;
    }

    footer {
        margin-top: 0px;
        margin-bottom: 0px;
        padding: 10px 6%;
    }

    .floating-social {
        right: 12px;
        gap: 12px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

    .floating-social {
        top: 20%;
    }
}