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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fff9f0;
    color: #333;
    animation: bgAnimation 8s infinite alternate;
}

/* --------------------
   Header Layout
--------------------- */
.header {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 24px;
}

/* --------------------
   Logo
--------------------- */
.logo {
    width: 180px;
    max-width: 70%;
    height: auto;
    margin-bottom: 18px;
}

/* --------------------
   Tagline
--------------------- */
.tagline {
    font-size: 22px;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 30px;
    line-height: 1.4;

    /* Fade-in animation */
    opacity: 0;
    animation: fadeIn 2s ease forwards;
}

/* --------------------
   Animations
--------------------- */

/* Fade-in animation */
@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Animated Background */
@keyframes bgAnimation {
    0% {
        background-color: #fff9f0;
    }
    50% {
        background-color: #fef4e3;
    }
    100% {
        background-color: #fff9f0;
    }
}

/* --------------------
   CTA Buttons (Icons)
--------------------- */
.cta-buttons {
    display: flex;
    gap: 24px;
}

/* Icon button wrapper */
.icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

/* Icon images (reduced size) */
.icon-btn img {
    width: 48px;
    height: 48px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

/* Hover effect */
.icon-btn:hover img {
    transform: scale(1.12);
    opacity: 0.9;
}

/* --------------------
   Responsive
--------------------- */
@media (max-width: 768px) {
    .tagline {
        font-size: 18px;
    }

    .logo {
        width: 150px;
    }

    .icon-btn img {
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .cta-buttons {
        gap: 16px;
    }

    .icon-btn img {
        width: 40px;
        height: 40px;
    }
}
