@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #ffffff;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Sahel', sans-serif;

}

.container {
    text-align: center;
}

.logo-box img {
    width: 260px;
    margin-bottom: 40px;
}

.buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.btn {
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 30px;
    font-size: 16px;
    transition: 0.3s ease;
}

/* Instagram button */
.btn.insta {
    background: #f3c1d9;
    color: #000;
}

.btn.insta:hover {
    background: #e8a8c8;
}

/* Order button */
.btn.order {
    background: #ffffff;
    color: #d16ba5;
    border: 2px solid #f3c1d9;
}

.btn.order:hover {
    background: #fdf1f7;
}


/* Falling flowers */
.flowers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}

.flower {
    position: absolute;
    top: -50px;
    animation-name: fall;
    animation-timing-function: linear;
}

@keyframes fall {
    to {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0.8;
    }
}

/* Ensure content stays above flowers */
.container {
    position: relative;
    z-index: 2;
}

.note {
            margin-top: 25px;
            font-size: 13px;
            color: #999; }