*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    line-height: 1;
}

@import url('https://fonts.googleapis.com/css2?family=Rancho&family=Source+Sans+Pro:wght@400;600&display=source+sans+pro');

h1 {
    font-family: 'Rancho', sans-serif;
    font-weight: 400;
}

p, a {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}

.body-bg {
    background: linear-gradient(to bottom right, #ffffff, rgb(240, 240, 240));
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

.flex-column {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero {
    text-align: center;
    padding: 6rem 1rem;
    background: radial-gradient(circle, rgba(13, 189, 50, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
}

.fridgeTapeLogo {
    animation: bounceIn 1s ease-out;
}

.hero-title {
    font-size: 2.5rem;
    color: #333;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    animation: fadeIn 1.2s ease-out;
    margin: 1rem 0;
}

.coming-soon-text {
    font-size: 1.2rem;
    color: #333;
    max-width: 600px;
    line-height: 1.5;
    margin: 0 auto 2rem;
    font-weight: 500;
}

.contact-cta {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-link, .home-link {
    display: inline-block;
    font-size: 1.25rem;
    font-weight: 600;
    color: #0dbd32;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 2px solid #0dbd32;
    border-radius: 8px;
    transition: all 0.2s ease-in-out;
}

.contact-link:hover, .home-link:hover {
    background: #0dbd32;
    color: #fff;
}

.footer {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(to right, #0dbd32, #00941e);
    color: #fff;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 0; 
    width: 100%;
}

.footer-text {
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5;
}

@keyframes bounceIn {
    0% { transform: scale(0.8); opacity: 0; }
    60% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(1); }
}

@keyframes fadeIn {
    0% { opacity: 0; transform: translateY(10px); }
    100% { opacity: 1; transform: translateY(0); }
}

@media screen and (max-width: 768px) {
    .hero {
        padding: 4rem 1rem;
    }

    .fridgeTapeLogo {
        width: 250px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .coming-soon-text {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .contact-link, .home-link {
        font-size: 1.1rem;
        padding: 0.6rem 1.2rem;
    }
}