* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
   	font-family: "Quicksand", sans-serif;
    background: linear-gradient(
        to bottom,
        #DFF3FF 0%,
        #FFF8E7 75%
    );
}


/* Main layout */

.container {
     min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
    position: relative;
    z-index: 2;
    margin-top:100px;
}


/* Zephy */

.zephy {
    width: 330px;
    max-width: 85vw;
    animation: bounce 3s infinite ease-in-out;
    filter: drop-shadow(0 15px 15px rgba(0,0,0,0.15));
}


.compass {
    width: 80px;
    max-width:15vw;
    /*animation: compassMagic 5s ease-in-out infinite;
	transform-origin: top center;*/
	animation: compassSway 5s ease-in-out infinite;
    transform-origin: center center;
	vertical-align: middle;
}

/*@keyframes compassMagic {
    0% {
        transform: rotate(-6deg) translateY(0);
    }

    25% {
        transform: rotate(4deg) translateY(-6px);
    }

    50% {
        transform: rotate(8deg) translateY(0);
    }

    75% {
        transform: rotate(-3deg) translateY(-4px);
    }

    100% {
        transform: rotate(-6deg) translateY(0);
    }
}*/

@keyframes compassSway {
    0% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

    100% {
        transform: rotate(-8deg);
    }
}

/* Typography */

h1 {
    margin-top: 15px;
    color: #5A3415;
    font-size: 3rem;
}


h2 {
    margin-top: 10px;
    color: #D97524;
    font-size: 1.7rem;
    font-style: italic;
}


p {
    margin-top: 20px;
    max-width: 550px;
    color: #6C584C;
    line-height: 1.7;
    font-size: 1.15rem;
}


/* Email form */

.signup {
    margin-top: 30px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}


input {
    padding: 15px 20px;
    width: 280px;
    border-radius: 50px;
    border: 3px solid #F4D7A1;
    font-size: 1rem;
    outline: none;
}


button {
    background: #E96B34;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px 28px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: .3s;
}


button:hover {
    background: #D85B24;
    transform: translateY(-4px);
}


/* Decorative elements */

.cloud {
    position: absolute;
    width: 120px;
    height: 50px;
    background: white;
    border-radius: 50px;
    opacity: .8;
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;
    background: white;
    border-radius: 50%;
}

.cloud::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 15px;
}

.cloud::after {
    width: 70px;
    height: 70px;
    top: -35px;
    right: 15px;
}


.cloud1 {
    top: 80px;
    left: 10%;
    animation: drift 25s infinite linear;
}


.cloud2 {
    top: 150px;
    right: 15%;
    animation: drift 30s infinite linear;
}


.leaves {
    position: absolute;
    font-size: 3rem;
    opacity: .45;
    z-index: 1;
}


.left {
    bottom: 10px;
    left: 35px;
}


.right {
    top: 70px;
    right: 20px;
}


.footprints {
    margin-top: 25px;
    font-size: 2rem;
    opacity: .7;
    animation: walk 3s infinite;
}


/* Animations */

@keyframes bounce {
    0%,100% {
        transform: translateY(0);
    }
    
    50% {
        transform: translateY(-18px);
    }
}


@keyframes drift {
    from {
        transform: translateX(-30px);
    }

    to {
        transform: translateX(30px);
    }
}


@keyframes walk {
    50% {
        transform: translateX(10px);
    }
}


/*.coming-soon-badge {
    position: absolute;
    top: 25px;
    left: 25px;

    background: #E96B34;
    color: white;

    padding: 10px 18px;
    border-radius: 50px;

    font-size: 0.9rem;
    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    z-index: 10;
}*/

.coming-soon-badge {
    position: fixed;
    top: 35px;
    left: -70px;

    width: 260px;
    padding: 12px 0;

    background: #E96B34;
    color: white;

    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 1px;

    transform: rotate(-45deg);
    transform-origin: center;

    z-index: 100;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);

    font-family: "Quicksand", sans-serif;
}

button {
    animation: explorerPulse 8s infinite;
}

@keyframes explorerPulse {
    0%, 85%, 100% {
        transform: scale(1);
    }

    90% {
        transform: scale(1.08);
    }

    95% {
        transform: scale(1.04);
    }
}

.tiny-note {
    font-size: 0.85rem;
    margin-top: 12px;
    color: #8C7A68;
}

.music-button {
    position: fixed;
    top: 25px;
    right: 10px;
    background: #D97524;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 12px 18px;
    font-family: "Quicksand", sans-serif;
    font-weight: 700;
    cursor: pointer;
    z-index: 20;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.success-card {
    display: none;

    margin-top: 30px;
    max-width: 500px;

    background: white;
    padding: 25px 30px;

    border-radius: 25px;

    box-shadow:
        0 10px 25px rgba(0,0,0,0.12);

    animation: fadeIn 0.8s ease;
}


.success-card h3 {
    color: #5A3415;
    margin-bottom: 10px;
    font-size: 1.5rem;
}


.success-card p {
    margin: 0;
    color: #6C584C;
}


.success-compass {
    /*font-size: 3rem;
    margin-bottom: 10px;
    width:40px;*/
    margin:auto;
    max-width:15vw;
    animation: compassSway 3s ease-in-out infinite;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}







/* Mobile */

@media (max-width: 600px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p {
        font-size: 1rem;
    }

    .zephy {
        width: 260px;
    }

    .cloud {
        transform: scale(.8);
    }
    
 .coming-soon-badge {
        width: 200px;
        left: -60px;
        top: 28px;
        font-size: 0.8rem;
        padding: 10px 0;
    }

}