/* Body styling */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background: url('assets/images/eid_back.png') no-repeat center center/cover;
    background-size: cover;
    margin: 0;
    padding: 0;
    color: #fff;
    overflow-x: hidden;
}

/* Gift card styling */
.gift-card-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.gift-card {
    background-color: #fff;
    color: #333;
    border-radius: 20px;
    padding: 30px;
    width: 90%;
    max-width: 600px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.gift-card-header {
    text-align: center;
    margin-bottom: 20px;
}

.gift-card-header h2 {
    font-size: 28px;
    color: #f28d6c;
    margin: 0;
}

.gift-card-body {
    margin-bottom: 20px;
}

.gift-info {
    font-size: 16px;
    line-height: 1.8;
}

.gift-info p {
    margin: 10px 0;
}

.gift-card-footer {
    text-align: center;
}

button {
    background-color: #28a745;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 30px;
    font-size: 18px;
    cursor: pointer;
    margin: 10px;
    transition: background-color 0.3s;
}

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

.btn-download {
    background-color: #007bff;
}

.btn-download:hover {
    background-color: #0056b3;
}

@media (max-width: 768px) {
    .gift-card {
        padding: 20px;
    }

    .gift-card-header h2 {
        font-size: 22px;
    }

    .gift-info p {
        font-size: 14px;
    }

    button {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .gift-card {
        padding: 15px;
    }

    .gift-card-header h2 {
        font-size: 20px;
    }

    .gift-info p {
        font-size: 12px;
    }

    button {
        font-size: 12px;
    }
}
