body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff0f5;
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #ff69b4;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 10px;
    padding-left: 0px;
    flex-wrap: wrap;
    z-index: 1000;
}

.logo {
    font-size: 30px;
    animation: rotate 4s infinite linear;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

nav button {
    background: white;
    border: none;
    padding: 8px 12px;
    margin-left: 10px;
    cursor: pointer;
    border-radius: 20px;
    font-weight: bold;
    color: #ff1493;
}

/* CITATION */
.quote {
    margin-top: 80px;
    padding: 40px 20px;
    text-align: center;
    background: linear-gradient(135deg, #ffe4e1, #fff0f5);
}

.quote p {
    font-size: 22px;
    font-style: italic;
    color: #ff1493;
    max-width: 700px;
    margin: auto;
    line-height: 1.6;
}


/* SECTION */
section {
    padding: 120px 20px 60px 20px;
}

h2 {
    text-align: center;
    color: #ff1493;
}

/* FLOWERS GRID */
.flowers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.card {
    background: white;
    border-radius: 15px;
    padding: 15px;
    text-align: center;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

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

.card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 10px;
}

.buy-btn {
    margin-top: 10px;
    padding: 8px 15px;
    border: none;
    background-color: #ff69b4;
    color: white;
    border-radius: 20px;
    cursor: pointer;
}

/* ANIMATION ENTREE */
.card {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.card.show {
    opacity: 1;
    transform: translateY(0);
}


/* CONTACT */
.contact {
    background-color: #ffe4e1;
    text-align: center;
}

/* FOOTER */
footer {
    background-color: #ff69b4;
    color: white;
    text-align: center;
    padding: 15px;
}

/* MESSAGE FORM */
.message-section {
    padding: 60px 20px;
    background-color: #fff0f5;
    text-align: center;
}

.contact-form {
    max-width: 500px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #ff69b4;
    font-size: 14px;
    outline: none;
}

.contact-form button {
    padding: 10px;
    border: none;
    border-radius: 20px;
    background-color: #ff69b4;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #ff1493;
}

/* MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.modal-content p {
    color: #ff1493;
    font-size: 18px;
    font-weight: bold;
}

.close {
    float: right;
    font-size: 22px;
    cursor: pointer;
    color: #ff69b4;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}



/* RESPONSIVE */
@media (max-width: 795px){

}

@media (max-width: 768px) {
    .quote{
        margin-top: 180px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav {
        margin-top: 10px;
    }

    .card img {
        height: 150px;
    }
}

@media (min-width: 769px){
  header{
    padding: 0px 10px;
  }

  nav{
    margin-right: 20px;
  }
}


@media (min-width: 1280px){
 h1{
    margin-left: 12%;
 }
}

@media (min-width: 1200px) and (max-width: 1279px){
 h1{
    margin-left: 14%;
 }
}

@media (min-width: 1000px) and (max-width: 2000px){
 h1{
    margin-left: 16%;
 }
}

@media (min-width: 761px) and (max-width: 1000px){
 h1{
    margin-left: 20%;
 }
}