*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#fffdf8;
    color:#3b3b3b;
}

h1,h2,h3{
    font-family:'Playfair Display',serif;
}

.cover{
    height:100vh;
    background:url("assets/cover3.png") center/cover;
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.cover-content{
    position:relative;
    z-index:2;
    color:white;
    padding:20px;
}

.cover h1{
    font-size:55px;
    margin:20px 0;
}

.cover h2{
    margin-bottom:30px;
}

.btn-gold{
    background:linear-gradient(45deg,#d4af37,#f7e7a9);
    color:#333;
    padding:15px 35px;
    border:none;
    border-radius:50px;
    cursor:pointer;
    text-decoration:none;
    display:inline-block;
    transition:.3s;
    font-weight:600;
}

.btn-gold:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(212,175,55,.4);
}

#mainContent{
    display:none;
}

.section{
    padding:80px 20px;
    text-align:center;
}

.section-title{
    margin-bottom:40px;
    color:#b89028;
}

.profile-photo{
    width:220px;
    height:220px;
    border-radius:50%;
    object-fit:cover;
    border:8px solid #fff;
    box-shadow:0 10px 30px rgba(0,0,0,.1);
}

.card{
    max-width:700px;
    margin:auto;
    background:white;
    padding:40px;
    border-radius:25px;
    box-shadow:0 10px 40px rgba(0,0,0,.08);
}

.countdown{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.countdown div{
    width:120px;
    padding:25px;
    border-radius:20px;
    background:white;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.countdown span{
    display:block;
    font-size:40px;
    color:#d4af37;
    font-weight:bold;
}

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:20px;
}

.gallery img{
    width:100%;
    border-radius:20px;
    transition:.4s;
}

.gallery img:hover{
    transform:scale(1.08);
}

input,textarea{
    width:100%;
    max-width:600px;
    margin:10px auto;
    padding:15px;
    border-radius:15px;
    border:1px solid #ddd;
    display:block;
}

.message{
    max-width:600px;
    margin:20px auto;
    background:white;
    padding:20px;
    border-radius:20px;
    box-shadow:0 5px 20px rgba(0,0,0,.08);
}

.qris{
    width:250px;
}

.envelope{
    width:150px;
}

.music-btn{
    position:fixed;
    right:20px;
    bottom:20px;
    width:65px;
    height:65px;
    border:none;
    border-radius:50%;
    background:#d4af37;
    color:white;
    font-size:28px;
    z-index:999;
    cursor:pointer;
}

.rotate{
    animation:spin 4s linear infinite;
}

@keyframes spin{
    from{transform:rotate(0);}
    to{transform:rotate(360deg);}
}

.hidden{
    opacity:0;
    transform:translateY(40px);
    transition:1s;
}

.show{
    opacity:1;
    transform:translateY(0);
}

footer{
    padding:50px 20px;
    text-align:center;
    background:#f8f2e3;
}

@media(max-width:768px){

    .cover h1{
        font-size:36px;
    }

    .countdown div{
        width:90px;
    }
}