*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Lora',serif;
    color:#4a3728;

    background:url('../images/template.jpg');
    background-size:cover;
    background-position:center;
    background-attachment:fixed;
    background-repeat:no-repeat;
}

/* =====================
   COVER
===================== */

#welcome-modal{
    position:fixed;
    inset:0;
    z-index:9999;

    background:url('../images/wallpaper.jpg');
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
}

#welcome-modal::before{
    content:'';
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.welcome-content{
    position:relative;
    z-index:2;

    width:90%;
    max-width:420px;

    text-align:center;

    padding:40px 25px;

    background:rgba(0,0,0,.35);
    backdrop-filter:blur(8px);

    border-radius:30px;

    border:1px solid rgba(197,160,89,.4);

    color:white;
}

.subtitle{
    font-size:20px;
    margin-bottom:10px;
}

.guest-label{
    font-size:20px;
    margin-top:15px;
}

.guest-name{
    font-size:28px;
    font-weight:bold;
    margin-top:10px;
}

.cover-title{
    font-family:'Dancing Script',cursive;
    font-size:85px;
    color:#C5A059;
    margin:20px 0;
    text-shadow:0 5px 20px rgba(0,0,0,.5);
}

.btn-open{
    margin-top:25px;

    background:#C5A059;
    color:white;

    border:none;

    padding:15px 40px;

    border-radius:50px;

    font-size:18px;
    font-weight:bold;

    cursor:pointer;

    transition:.3s;
}

.btn-open:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 20px rgba(197,160,89,.4);
}

/* =====================
   HERO
===================== */

.hero{
    min-height:100vh;

    background:
    linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.55)
    ),
    url('../images/template.jpg');

    background-size:cover;
    background-position:center;
    background-attachment:fixed;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;
}

.hero-content{
    color:white;
    padding:20px;
}

.hero-title{
    font-family:'Dancing Script',cursive;
    font-size:100px;
    color:#C5A059;
    margin:20px 0;
}

.hero-date{
    font-size:22px;
}

#countdown{
    margin-top:25px;

    font-size:22px;
    font-weight:bold;

    color:#fff;
}

/* =====================
   SECTION
===================== */

.section{
    width:95%;
    max-width:1100px;

    margin:25px auto;

    padding:80px 20px;

    text-align:center;

    background:transparent;

    box-shadow:none;
}
.section-title{
    font-family:'Dancing Script',cursive;

    font-size:60px;

    color:#D8B46A;

    text-shadow:
        0 3px 10px rgba(0,0,0,.7);

    margin-bottom:30px;
}

/* =====================
   PROFIL
===================== */

.profile-image{
    width:250px;
    height:250px;

    border-radius:50%;

    object-fit:cover;

    margin:auto;

    box-shadow:0 10px 30px rgba(0,0,0,.2);
}

.profile-text{
    margin-top:20px;

    font-size:24px;

    color:white;

    font-weight:600;

    text-shadow:
        0 2px 5px rgba(0,0,0,.8),
        0 0 15px rgba(0,0,0,.6);
}

/* =====================
   DOA
===================== */

.arabic{
    font-size:42px;
    line-height:2;

    color:#ffffff;

    text-shadow:
        0 2px 5px rgba(0,0,0,.8),
        0 0 15px rgba(0,0,0,.6);

    margin-bottom:25px;
}

.doa-text{
    max-width:700px;
    margin:auto;
    line-height:1.8;
}
.section-dark{
    background:rgba(0,0,0,.35);
    backdrop-filter:blur(3px);

    border-radius:25px;

    padding:50px 20px;
}


/* =====================
   CARD ACARA
===================== */

.card{
    background:rgba(255,255,255,.92);

    backdrop-filter:blur(8px);

    max-width:500px;

    margin:auto;

    padding:30px;

    border-radius:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.card p{
    margin:10px 0;
    font-size:18px;
}
.glass-card{
    max-width:900px;
    margin:auto;

    background:rgba(0,0,0,.35);

    backdrop-filter:blur(10px);
    -webkit-backdrop-filter:blur(10px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:30px;

    padding:50px 30px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.3);
}

/* =====================
   GALERI
===================== */

.gallery{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:15px;
}

.gallery img{
    width:100%;
    height:300px;

    object-fit:cover;

    border-radius:15px;

    cursor:pointer;

    transition:.3s;
}

.gallery img:hover{
    transform:scale(1.03);
}

/* =====================
   MAPS
===================== */

.maps{
    width:100%;
    height:450px;

    border:none;

    border-radius:20px;
}

/* =====================
   REKENING
===================== */

.rekening-card{
    max-width:450px;

    margin:auto;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(8px);

    color:#4a3728;

    padding:30px;

    border-radius:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}
.rekening-card h3{
    margin-bottom:10px;
}

.rekening-card h4{
    font-size:28px;
    margin-bottom:10px;
}

.rekening-card button{
    margin-top:15px;

    background:#C5A059;
    color:white;

    border:none;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;
}

/* =====================
   UCAPAN
===================== */
.ucapan-form{
    max-width:650px;

    margin:auto;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(8px);

    padding:30px;

    border-radius:25px;

    box-shadow:0 10px 25px rgba(0,0,0,.15);
}

.ucapan-form input,
.ucapan-form select,
.ucapan-form textarea{
    width:100%;

    padding:15px;

    margin-bottom:15px;

    border:1px solid #ddd;

    border-radius:10px;
}

.ucapan-form textarea{
    min-height:120px;
}

.ucapan-form button{
    background:#C5A059;
    color:white;

    border:none;

    padding:12px 25px;

    border-radius:30px;

    cursor:pointer;
}
.ucapan-card{
    background:rgba(255,255,255,.92);

    backdrop-filter:blur(8px);

    padding:20px;

    border-radius:20px;

    margin-bottom:15px;

    box-shadow:0 5px 15px rgba(0,0,0,.1);
}

/* =====================
   FOOTER
===================== */

footer{
    background:#4a3728;

    color:white;

    text-align:center;

    padding:60px 20px;

    margin-top:30px;
}

footer h2{
    margin-bottom:15px;
}

/* =====================
   MUSIC BUTTON
===================== */

.music-btn{
    position:fixed;

    right:20px;
    bottom:20px;

    width:60px;
    height:60px;

    border:none;

    border-radius:50%;

    background:#C5A059;

    color:white;

    font-size:22px;

    cursor:pointer;

    z-index:10000;

    box-shadow:0 4px 15px rgba(0,0,0,.3);

    transition:.3s;
}

.music-btn:hover{
    transform:scale(1.1);
}

/* =====================
   MOBILE
===================== */

@media(max-width:768px){

    .cover-title{
        font-size:65px;
    }

    .hero-title{
        font-size:65px;
    }

    .section-title{
        font-size:45px;
    }

    .profile-image{
        width:200px;
        height:200px;
    }

    .music-btn{
        width:55px;
        height:55px;
    }

    .guest-name{
        font-size:24px;
    }
}