/* General Page Styling */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffe6f2;
    text-align: center;
    padding: 20px;
    margin: 0;
}

/* Love Generator Container */
#generator {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    display: inline-block;
    max-width: 500px;
    margin: auto;
}

/* Input Fields */
input, select {
    width: 90%;
    padding: 8px;
    margin: 8px 0;
    border: 1px solid #ff80ab;
    border-radius: 5px;
    outline: none;
}

/* Button Styling */
button {
    background: #ff4081;
    color: white;
    border: none;
    padding: 10px 15px;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.3s;
}

button:hover {
    background: #d81b60;
}

/* Flower Container */
#flowerDisplay {
    display: none;
    position: relative;
    margin-top: 20px;
    width: 150px;
    height: 150px;
    margin: auto;
}

/* Flower Animation */
@keyframes bloom {
    0% { transform: scale(0.5); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

/* Petal Styling */
.petal {
    width: 50px;
    height: 80px;
    background: pink;
    position: absolute;
    border-radius: 50%;
    animation: bloom 1s ease-in-out;
}

.petal:nth-child(1) { top: 10px; left: 50px; transform: rotate(45deg); }
.petal:nth-child(2) { top: 10px; right: 50px; transform: rotate(-45deg); }
.petal:nth-child(3) { bottom: 10px; left: 50px; transform: rotate(-135deg); }
.petal:nth-child(4) { bottom: 10px; right: 50px; transform: rotate(135deg); }

/* Flower Center */
.center {
    width: 30px;
    height: 30px;
    background: yellow;
    border-radius: 50%;
    position: absolute;
    top: 60px;
    left: 60px;
}

/* Flower Stick */
.stick {
    width: 8px;
    height: 100px;
    background: green;
    position: absolute;
    top: 120px;
    left: 71px;
    border-radius: 5px;
}

/* Quote Display */
#quoteDisplay {
    margin-top: 20px;
    font-size: 18px;
    font-style: italic;
    font-weight: bold;
    color: #d81b60;
}

/* Share Buttons */
.share-buttons {
    margin-top: 10px;
}

.share-buttons button {
    background: #4CAF50;
}

.share-buttons button:hover {
    background: #388E3C;
}
