/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
}

/* BODY */
body{
font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
background:linear-gradient(135deg,#ff9ec4,#ffd6ec);
overflow-x:hidden;
overflow-y:auto;
min-height:100vh;
display:flex;
justify-content:center;
align-items:center;
padding:20px;
}

/* CONTAINER */
.container{
max-width:420px;
width:100%;
text-align:center;
position:relative;
z-index:2;
padding-bottom:40px;
}

/* PHOTO */
.photo-section{
margin-bottom:20px;
animation:fadeIn 2s ease forwards;
}

.main-photo{
width:180px;
height:180px;
border-radius:50%;
object-fit:cover;
border:6px solid white;
box-shadow:0 15px 30px rgba(0,0,0,0.3);
animation:zoomIn 1.5s ease;
}

/* BOUQUET */
.bouquet{
font-size:60px;
margin:20px 0;
animation:float 3s ease-in-out infinite;
}

/* QUESTION BOX */
.question-box{
margin-top:20px;
animation:fadeIn 1.5s ease;
}

.question-box h2{
font-size:20px;
color:#e60073;
margin-bottom:15px;
}

.options{
margin-top:15px;
display:flex;
justify-content:center;
gap:15px;
flex-wrap:wrap;
}

/* BUTTONS */
.yes-btn, .no-btn{
padding:12px 25px;
border:none;
border-radius:30px;
cursor:pointer;
font-size:15px;
transition:0.3s;
min-width:100px;
}

/* YES BUTTON */
.yes-btn{
background:#e60073;
color:white;
box-shadow:0 10px 20px rgba(230,0,115,0.3);
animation:pulse 2s infinite;
}

.yes-btn:hover{
transform:scale(1.1);
}

/* NO BUTTON */
.no-btn{
background:white;
color:#e60073;
position:relative;
}

/* CARD WRAPPER */
.card-wrapper{
margin-top:30px;
perspective:1000px;
display:none;
}

/* CARD */
.card{
width:100%;
height:420px;
position:relative;
}

.card-inner{
width:100%;
height:100%;
transition:transform 1s;
transform-style:preserve-3d;
-webkit-transform-style:preserve-3d;
position:relative;
}

.card.flip .card-inner{
transform:rotateY(180deg);
}

/* CARD FRONT & BACK */
.card-front, .card-back{
position:absolute;
width:100%;
height:100%;
backface-visibility:hidden;
-webkit-backface-visibility:hidden;
border-radius:20px;
padding:25px;
box-shadow:0 20px 40px rgba(0,0,0,0.3);
background:white;
}

/* FRONT */
.card-front{
display:flex;
justify-content:center;
align-items:center;
font-size:22px;
font-weight:bold;
color:#e60073;
}

/* BACK */
.card-back{
transform:rotateY(180deg);
overflow-y:auto;
}

.card-back h3{
color:#e60073;
margin-bottom:15px;
}

.card-back p{
line-height:1.6;
font-size:15px;
color:#444;
margin-bottom:20px;
}

.card-back h4{
color:#e60073;
}

/* ANIMATIONS */

@keyframes zoomIn{
0%{transform:scale(0);opacity:0;}
100%{transform:scale(1);opacity:1;}
}

@keyframes float{
0%,100%{transform:translateY(0);}
50%{transform:translateY(-10px);}
}

@keyframes pulse{
0%{box-shadow:0 0 0 0 rgba(230,0,115,0.4);}
70%{box-shadow:0 0 0 15px rgba(230,0,115,0);}
100%{box-shadow:0 0 0 0 rgba(230,0,115,0);}
}

@keyframes fadeIn{
0%{opacity:0;}
100%{opacity:1;}
}

/* MOBILE SAFE */
@media (max-width:480px){

.main-photo{
width:150px;
height:150px;
}

.card{
height:450px;
}

.question-box h2{
font-size:18px;
}

}
