body {
    font-family: 'Poppins', sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding-bottom: 50px;
}

header {
    background: #2d3436;
    color: white;
    padding: 2rem 1rem;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

h1 {
    font-family: 'Bungee Spice', cursive;
    margin: 0;
    font-size: 3rem;
}

main {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

section {
    background: white;
    margin: 20px 0;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

/* Gallery Styling */
.gallery {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cat-card {
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    transition: transform 0.3s ease;
}

.cat-card:hover {
    transform: translateY(-5px);
}

img {
    max-width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
}

/* Form Styling */
.payment-sim {
    border-top: 4px solid #ff7675;
}

.form-group {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

input[type="email"] {
    padding: 10px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    width: 250px;
}

button {
    background: #6c5ce7;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: background 0.3s;
}

button:hover {
    background: #a29bfe;
}

#refresh-btn {
    margin-top: 15px;
    background: #00b894;
}
