*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

body{
background:#f5f7fa;
}



/* CONTAINER */

.container{
max-width:1140px;
margin:auto;
padding:0 15px;
}



/* HEADER */

.header{
width:100%;
background:#ffffff;
position:sticky;
top:0;
z-index:999;
box-shadow:0 2px 8px rgba(0,0,0,0.08);
}



.navbar{
display:flex;
align-items:center;
justify-content:space-between;
height:70px;
}



/* LOGO */

.logo{
display:flex;
align-items:center;
gap:10px;
font-size:20px;
font-weight:bold;
color:#000;
}

.logo img{
height:40px;
}



/* MENU */

.menu{
display:flex;
gap:30px;
}

.menu a{
color:#000;
text-decoration:none;
font-weight:500;
transition:0.2s;
}

.menu a:hover{
color:#d60000;
}



/* BUTTON */

.auth{
display:flex;
gap:10px;
}

.btn{
padding:8px 14px;
border-radius:6px;
text-decoration:none;
font-size:14px;
}

.login{
border:1px solid #000;
color:#000;
}

.login:hover{
background:#000;
color:#fff;
}

.daftar{
background:#d60000;
color:white;
}

.daftar:hover{
background:#a80000;
}



/* BURGER */

.burger{
display:none;
font-size:26px;
cursor:pointer;
color:#000;
}



/* MOBILE MENU */

.mobile-menu{
position:fixed;
top:0;
right:-100%;
width:280px;
height:100%;
background:#ffffff;
padding:20px;
transition:0.3s;
z-index:9999;
box-shadow:-3px 0 10px rgba(0,0,0,0.2);
}

.mobile-menu.active{
right:0;
}



/* CLOSE BUTTON */

.close-btn{
font-size:20px;
cursor:pointer;
margin-bottom:20px;
display:inline-block;
padding:6px 10px;
background:#d60000;
color:#fff;
border-radius:5px;
font-weight:bold;
}



/* MOBILE LINK */

.mobile-menu a{
display:block;
color:#000;
text-decoration:none;
margin:15px 0;
font-weight:500;
}

.mobile-menu a:hover{
color:#d60000;
}



/* RESPONSIVE */

@media(max-width:992px){

.menu,
.auth{
display:none;
}

.burger{
display:block;
}

}

/* HERO */

.hero{

background:linear-gradient(135deg,#0b1c2c,#0f2f47,#1f5f8b);

color:white;

padding:90px 0;

position:relative;

overflow:hidden;

}

.hero::after{

content:"";

position:absolute;

width:600px;

height:600px;

background:rgba(255,255,255,0.05);

border-radius:50%;

top:-200px;

right:-200px;

}


.hero-wrap{

display:flex;

align-items:center;

justify-content:space-between;

gap:40px;

}


.hero-left{

flex:1;

}


.hero-left h1{

font-size:42px;

margin-bottom:20px;

font-weight:700;

}


.hero-left p{

font-size:18px;

line-height:1.6;

margin-bottom:25px;

max-width:500px;

}


.hero-btn{

display:flex;

gap:15px;

}


.btn.merah{

background:white;

color:#b30000;

font-weight:bold;

}


.btn.outline{

border:2px solid white;

color:white;

}


.btn.outline:hover{

background:white;

color:#b30000;

}


.hero-right{

flex:1;

text-align:right;

}


.hero-right img{

max-width:100%;

height:auto;

}



/* RESPONSIVE HERO */

@media(max-width:992px){

.hero-wrap{

flex-direction:column;

text-align:center;

}

.hero-right{

text-align:center;

}

.hero-left p{

margin:auto;

}

.hero-btn{

justify-content:center;

}

}

/* ABOUT */

.about{
padding:80px 0;
background:#ffffff;
}


.about-wrap{
display:flex;
gap:50px;
align-items:flex-start;
}


.section-title{
font-size:32px;
font-weight:700;
margin-bottom:10px;
color:#111;
}


.line{
width:60px;
height:4px;
background:#d60000;
margin-bottom:20px;
}


.about-left{
flex:1;
}


.about-left p{
margin-bottom:15px;
line-height:1.7;
font-size:16px;
color:#333;
}


.about-right{
flex:1;
display:flex;
flex-direction:column;
gap:20px;
}


.about-box{
background:#f7f7f7;
padding:20px;
border-left:5px solid #d60000;
border-radius:6px;
box-shadow:0 3px 8px rgba(0,0,0,0.05);
}


.about-box h3{
margin-bottom:10px;
color:#d60000;
}


.about-box ul{
padding-left:18px;
}


.about-box li{
margin-bottom:8px;
}



/* RESPONSIVE */

@media(max-width:992px){

.about-wrap{
flex-direction:column;
}

}

/* PENGURUS */

.pengurus{
padding:80px 0;
background:#f5f7fa;
}


.section-title.center{
text-align:center;
}


.line.center{
margin:10px auto 40px auto;
}


.pengurus-wrap{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}


.card{

background:#fff;

border-radius:8px;

overflow:hidden;

text-align:center;

box-shadow:0 3px 10px rgba(0,0,0,0.08);

transition:0.3s;

}


.card:hover{

transform:translateY(-5px);

box-shadow:0 8px 20px rgba(0,0,0,0.15);

}


.card img{

width:100%;

height:250px;

object-fit:cover;

}


.card h3{

margin-top:15px;

font-size:18px;

}


.card span{

display:block;

color:#d60000;

margin-bottom:15px;

font-weight:500;

}



/* RESPONSIVE */

@media(max-width:992px){

.pengurus-wrap{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.pengurus-wrap{

grid-template-columns:1fr;

}

}
.center-btn{
text-align:center;
margin-top:40px;
}


.btn-merah{

display:inline-block;

background:#d60000;

color:white;

padding:12px 22px;

border-radius:6px;

text-decoration:none;

font-weight:600;

transition:0.3s;

}


.btn-merah:hover{

background:#a80000;

transform:translateY(-2px);

box-shadow:0 4px 10px rgba(0,0,0,0.15);

}

/* EVENT */

.event{
padding:80px 0;
background:#ffffff;
}


.event-wrap{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:30px;

}


.event-card{

background:#fff;

border-radius:8px;

overflow:hidden;

box-shadow:0 3px 10px rgba(0,0,0,0.08);

transition:0.3s;

}


.event-card:hover{

transform:translateY(-5px);

box-shadow:0 8px 20px rgba(0,0,0,0.15);

}


.event-card img{

width:100%;

height:200px;

object-fit:cover;

}


.event-content{

padding:15px;

}


.event-date{

color:#1f5f8b;

font-weight:bold;

font-size:14px;

margin-bottom:5px;

}


.event-content h3{

font-size:18px;

margin-bottom:8px;

}


.event-content p{

font-size:14px;

line-height:1.5;

margin-bottom:10px;

color:#444;

}


.event-btn{

display:inline-block;

color:#d60000;

text-decoration:none;

font-weight:600;

}


.event-btn:hover{

text-decoration:underline;

}



/* RESPONSIVE */

@media(max-width:992px){

.event-wrap{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.event-wrap{

grid-template-columns:1fr;

}

}

/* CTA */

.cta{

background:linear-gradient(135deg,#0b1c2c,#123a5a,#1f5f8b);

padding:80px 0;

color:white;

text-align:center;

}


.cta-box{

max-width:800px;

margin:auto;

}


.cta h2{

font-size:34px;

margin-bottom:15px;

}


.cta p{

font-size:18px;

line-height:1.6;

margin-bottom:25px;

}


.cta-btn{

display:flex;

gap:15px;

justify-content:center;

flex-wrap:wrap;

}


/* BUTTON */

.btn-putih{

background:white;

color:#0b1c2c;

padding:12px 22px;

border-radius:6px;

text-decoration:none;

font-weight:bold;

}


.btn-putih:hover{

background:#e5e5e5;

}


.btn-outline-putih{

border:2px solid white;

color:white;

padding:12px 22px;

border-radius:6px;

text-decoration:none;

font-weight:bold;

}


.btn-outline-putih:hover{

background:white;

color:#0b1c2c;

}

/* CABANG PREMIUM */

.cabang{

padding:80px 0;

background:#f5f7fa;

}


.cabang-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

}


.cabang-item{

background:white;

border-radius:10px;

padding:30px 20px;

text-align:center;

box-shadow:0 3px 12px rgba(0,0,0,0.08);

transition:0.3s;

}


.cabang-item:hover{

transform:translateY(-6px);

box-shadow:0 10px 25px rgba(0,0,0,0.15);

}


.cabang-icon{

width:60px;

height:60px;

border-radius:50%;

background:#eaf2f8;

display:flex;

align-items:center;

justify-content:center;

font-size:26px;

margin:0 auto 10px auto;

color:#1f5f8b;

}


.cabang-item h3{

margin-bottom:5px;

font-size:18px;

}


.cabang-item p{

color:#555;

margin-bottom:10px;

}


.cabang-link{

text-decoration:none;

color:#d60000;

font-weight:600;

}


.cabang-link:hover{

text-decoration:underline;

}



/* RESPONSIVE */

@media(max-width:992px){

.cabang-grid{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.cabang-grid{

grid-template-columns:1fr;

}

}

/* FOOTER */

.footer{

background:#0b1c2c;

color:white;

padding:60px 0 20px 0;

}


.footer-wrap{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}


.footer-col h3{

margin-bottom:10px;

}


.footer-col h4{

margin-bottom:10px;

}


.footer-col p{

font-size:14px;

line-height:1.6;

color:#ddd;

}


.footer-col ul{

list-style:none;

padding:0;

}


.footer-col ul li{

margin-bottom:8px;

}


.footer-col ul li a{

color:#ddd;

text-decoration:none;

font-size:14px;

}


.footer-col ul li a:hover{

color:#fff;

}


.footer-bottom{

text-align:center;

margin-top:30px;

border-top:1px solid rgba(255,255,255,0.2);

padding-top:15px;

font-size:14px;

color:#ccc;

}



/* RESPONSIVE */

@media(max-width:992px){

.footer-wrap{

grid-template-columns:repeat(2,1fr);

}

}


@media(max-width:600px){

.footer-wrap{

grid-template-columns:1fr;

}

}