/* ===== Body & Header ===== */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    background-color: #fff0f5; /* soft pink background */
    color: #333;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
    z-index: 0;
}

/* ===== Confetti Container ===== */
.confetti {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999; /* stays above content */
    background: transparent;
}

.confetti span {
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background-color: #ff69b4; /* bright pink confetti */
    opacity: 0.6;
    border-radius: 50%;
    top: -10px;
    animation: fall 7s linear infinite;
}

/* Random positions and timings for confetti pieces */
.confetti span:nth-child(1) { left: 5%; animation-delay: 0s; animation-duration: 6s; }
.confetti span:nth-child(2) { left: 15%; animation-delay: 1s; animation-duration: 7s; }
.confetti span:nth-child(3) { left: 25%; animation-delay: 2s; animation-duration: 8s; }
.confetti span:nth-child(4) { left: 35%; animation-delay: 3s; animation-duration: 7.5s; }
.confetti span:nth-child(5) { left: 45%; animation-delay: 1.5s; animation-duration: 6.5s; }
.confetti span:nth-child(6) { left: 55%; animation-delay: 2.5s; animation-duration: 8.5s; }
.confetti span:nth-child(7) { left: 65%; animation-delay: 0.5s; animation-duration: 7.2s; }
.confetti span:nth-child(8) { left: 75%; animation-delay: 1.8s; animation-duration: 6.8s; }
.confetti span:nth-child(9) { left: 85%; animation-delay: 2.2s; animation-duration: 7.7s; }
.confetti span:nth-child(10){ left: 95%; animation-delay: 3.5s; animation-duration: 8s; }

/* Confetti falling animation */
@keyframes fall {
    0% { transform: translateY(0) rotate(0deg); opacity: 0.8; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ===== Header ===== */
header {
    text-align: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    position: relative;
    z-index: 1; /* above body, below confetti */
}

h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
    margin-top: 5px;
}

/* ===== Wishlist Section ===== */
.wishlist {
    display: flex;
    flex-direction: column;
    gap: 25px;
    max-width: 800px;
    margin: 20px auto;
    padding: 0 15px;
}

/* Section Headings */
.wishlist h2 {
    font-size: 2rem;
    color: #ff1493;
    margin-bottom: 10px;
    position: relative;
}

.wishlist h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #ff69b4;
    margin-top: 5px;
    border-radius: 3px;
}

/* Card Styling */
.card {
    background-color: #fff0f5; /* soft pink */
    border: 2px dashed #ff69b4;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

/* Item inside Card */
.item {
    text-align: center;
}

/* Image Styling */
.item img {
    max-width: 100%;
    border-radius: 12px;
    margin-bottom: 10px;
    width: 100px;
    height: auto;
}

/* Text Styling */
.item p {
    margin-top: 10px;
    color: #555;
    font-size: 1rem;
    line-height: 1.5;
}

/* ===== Footer ===== */
footer {
    text-align: center;
    padding: 25px 20px;
    background: linear-gradient(135deg, #ffb6c1, #ff69b4);
    color: #fff;
    margin-top: 30px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1;
}

footer p strong {
    display: block;
    margin-top: 5px;
    font-size: 1.1rem;
}

/* ===== WhatsApp Button ===== */
.whatsapp-link {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #25D366; /* WhatsApp green */
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.2s;
}

.whatsapp-link:hover {
    background-color: #1ebe57;
}
