h1,
h2,a{
    font-family: "Sour Gummy", sans-serif;
    font-optical-sizing: auto;
    font-weight: 600;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}

.pacifico-regular {
    font-family: "Pacifico", cursive;
    font-weight: 400;
    font-style: normal;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 1);
}

p,
li {
    font-family: "Delius", cursive;
    font-weight: 400;
    font-style: normal;
    text-align: left;
}

main, footer {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
}


ul.alternate-bullets {
    list-style: none;
    padding-left: 0;
}

ul.alternate-bullets li::before {
    content: "⭐ ";
    margin-right: 0.5rem;
}

ul.alternate-bullets li:nth-child(even)::before {
    content: "❤️ ";
}

.subheading {
    color: #4d4d4d;
    margin-top: -7px;
    text-align: center;
}

/* General Styles */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  font-family: Arial, sans-serif;
  text-align: center;
  background: linear-gradient(to bottom, #fef2c2 0%, #fef2c2 40%, #ffffff 100%);
  background-repeat: no-repeat;
  background-size: cover; /* Ensures it stretches fully */
}


header {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'><defs><linearGradient id='waveGradient' x1='0%' y1='0%' x2='0%' y2='100%'><stop offset='0%' stop-color='%23ffdac1'/><stop offset='33%' stop-color='%23ffd6e0'/><stop offset='66%' stop-color='%23e0c3fc'/><stop offset='100%' stop-color='%23c1e1ff'/></linearGradient></defs><path fill='url(%23waveGradient)' d='M0,160 C480,80 960,240 1440,160 L1440,0 L0,0 Z'/></svg>");
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    text-align: center;
}

li {
    text-align: left;
}

.intro {
    width: 80%;
    margin: 20px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    border-left: 5px solid #23c1e1ff;
    /* text-align: left; */
}

.intro h1 {
    text-align: center;
}


header h1 {
    margin: 0;
    font-size: 3rem;
    color: #3a1d75;
    text-shadow: 1px 1px 5px rgba(255, 255, 255, 1);
}

h2 {
    font-size: 1.2rem;
    color: #3c3c3c;
}

/* Box Layout */
.box {
    display: inline-block;
    width: 35%;
    padding: 20px;
    margin: 10px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    min-height: 230px;
    vertical-align: top;
}

.giver {
    border-left: 5px solid #ff6600;
}

.receiver {
    border-left: 5px solid #0066ff;
}

.how {
    border-left: 5px solid #92cf92;
    width: 80%
}

.impact {
    border-left: 5px solid #f7a6f0e0
}

.receiver {
    border-left: 5px solid #0066ff;
}

footer {
    border-top: 1px solid #3c3c3c;
    min-height: 10px;
    text-align: right;
    padding: 10px;
    margin-top:20px;
}
a {
    text-decoration: none;
    color:#ff9800
}

/* Button */
button {
    padding: 10px 20px;
    background-color: #b2e8be;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

#compliment-display {
    font-size: 18px;
    margin-top: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    display: none;
    /* Hidden initially */
    width: 60%;
    margin: 20px auto;
}

.glow-emoji {
    font-size: 48px;
    display: inline-block;
    color: #ffc107;
    text-shadow:
        0 0 5px #ffc107,
        0 0 10px #ffc107,
        0 0 15px #ff9800,
        0 0 20px #ff5722;
    animation: pulse-glow 2s infinite ease-in-out;
    text-align: center;
}

/* Animate glow + scale */
@keyframes pulse-glow {

    0%,
    100% {
        transform: scale(1);

    }

    50% {
        transform: scale(1.1);

    }
}




/* Mobile Responsiveness */
@media screen and (max-width: 768px) {
    .box {
        display: block;
        width: 80%;
        margin: 20px auto;
    }

    header {
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    button {
        font-size: 14px;
        padding: 8px 16px;
    }
}

@media screen and (max-width: 480px) {
    .box {
        width: 90%;
    }

    h1 {
        font-size: 20px;
    }

    button {
        font-size: 12px;
        padding: 6px 12px;
    }
}
