/* ===========================================
   CAKRA BHASKARA AULIYA
   Premium Style
=========================================== */

:root{
    --gold:#D4AF37;
    --red:#7A0019;
    --dark:#111111;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    scroll-behavior:smooth;
}

body{
    font-family:Segoe UI,Arial,sans-serif;
    background:#fafafa;
    color:#333;
    overflow-x:hidden;
}

/* Navbar */

.navbar{
    background:rgba(0,0,0,.55);
    backdrop-filter:blur(10px);
    transition:.4s;
}

.navbar-brand{
    font-weight:bold;
    color:var(--gold)!important;
}

.nav-link{
    color:white!important;
    margin-left:15px;
    transition:.3s;
}

.nav-link:hover{
    color:var(--gold)!important;
}

/* Hero */

.hero{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;

    background:
    linear-gradient(rgba(0,0,0,.55),rgba(0,0,0,.55)),
    linear-gradient(135deg,#5a0012,#9b111e,#d4af37);

    color:white;
}

.hero h1{
    font-size:65px;
    font-weight:800;
    color:var(--gold);

    text-shadow:
    0 0 10px rgba(255,215,0,.6);
}

.hero h3{
    margin-top:20px;
    margin-bottom:25px;
}

.hero .btn{
    margin:10px;
    padding:15px 35px;
    border-radius:50px;
    font-weight:bold;
}

/* Section */

section{
    padding:90px 0;
}

section h2{
    color:var(--red);
    font-weight:bold;
    margin-bottom:30px;
    text-align:center;
}

#tentang{
    background:white;
}

#visi{
    background:#f4f4f4;
}

#kontak{
    background:white;
}

/* Card */

.card-premium{

background:white;

border:none;

border-radius:20px;

box-shadow:0 15px 35px rgba(0,0,0,.12);

padding:30px;

transition:.4s;

}

.card-premium:hover{

transform:translateY(-8px);

}

/* Footer */

footer{

background:#111;

color:white;

padding:25px;

text-align:center;

}

/* WhatsApp Floating */

.whatsapp{

position:fixed;

bottom:25px;

right:25px;

width:65px;

height:65px;

border-radius:50%;

background:#25D366;

display:flex;

align-items:center;

justify-content:center;

font-size:32px;

color:white;

text-decoration:none;

box-shadow:0 10px 25px rgba(0,0,0,.3);

z-index:999;

}

/* Responsive */

@media(max-width:768px){

.hero h1{

font-size:38px;

}

.hero h3{

font-size:20px;

}

.navbar-brand span{

display:none;

}

}
.galeri-img{
transition:.4s;
cursor:pointer;
}

.galeri-img:hover{
transform:scale(1.06);
box-shadow:0 20px 40px rgba(0,0,0,.25);
}

form input,
form textarea{
border-radius:12px;
padding:14px;
}

.btn-warning{
background:#D4AF37;
border:none;
font-weight:bold;
}

.btn-warning:hover{
background:#c29c2a;
}