/* =================================
GLOBAL
================================= */

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

body{
background:#0f172a;
color:#e5e7eb;
font-family:"Open Sans",sans-serif;
}


/* =================================
HERO SECTION
================================= */

.hero-section{
min-height:100vh;
display:flex;
align-items:center;
justify-content:center;

background:
linear-gradient(rgba(15,23,42,0.35), rgba(15,23,42,0.55)),
url("../img/home-page/hero-image.jpeg") center/cover no-repeat;
}


/* =================================
HERO TITLE STYLE
================================= */

.Name-section{
padding-top:80px;
padding-bottom:80px;

color:#ffffff;

font-size:56px;
font-weight:300;

display:flex;
flex-direction:column;
align-items:center;
justify-content:center;

width:100%;
text-align:center;
}

.Name-section .line1{
display:block;
letter-spacing:2px;
margin:6px 0;
}


/* =================================
MEMBER CTA
================================= */

.member-section{
padding:60px 0;
background:#111827;
text-align:center;
}

.member-btn{
padding:16px 45px;
margin:10px;
border-radius:40px;
font-weight:600;
letter-spacing:1px;

background:linear-gradient(135deg,#2563eb,#06b6d4);
border:none;
color:white;

transition:transform .25s ease, box-shadow .25s ease;
}

.member-btn:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(37,99,235,0.35);
}

.member-btn-outline{
padding:16px 45px;
margin:10px;

border-radius:40px;
border:2px solid #2563eb;
color:#2563eb;

background:transparent;

transition:all .25s ease;
}

.member-btn-outline:hover{
background:#2563eb;
color:white;
box-shadow:0 10px 25px rgba(37,99,235,0.35);
}


/* =================================
MISSION SECTION
================================= */

.about-container{
padding:100px 0;
background:#0f172a;
}

.object-name{
font-size:42px;
font-weight:700;
margin-bottom:20px;
}

.object-name-content{
font-size:18px;
line-height:1.7;
opacity:0.9;
}


/* =================================
OBJECTIVES
================================= */

.objective-container{
padding:100px 0;
background:#111827;
}

.objective-heading{
font-size:42px;
font-weight:700;
margin-bottom:40px;
}

.objective-box{
background:#1f2937;
border-radius:12px;
padding:30px;
min-height:220px;

display:flex;
align-items:center;
justify-content:center;
text-align:center;

border-top:3px solid #2563eb;

box-shadow:0 12px 30px rgba(0,0,0,0.45);
transition:transform .3s ease, box-shadow .3s ease;
}

.objective-box:hover{
transform:translateY(-8px);
box-shadow:0 20px 45px rgba(0,0,0,0.6);
}

.objective-box p{
font-size:16px;
line-height:1.6;
}


/* video */

.video-box video{
width:100%;
border-radius:10px;
}


/* image */

#MLCphoto{
background:url("../img/home-page/transformer-image.jpeg") center/cover no-repeat;
min-height:220px;
}


/* =========================
SECTION HEADER
========================= */

.section-header{
text-align:center;
margin-bottom:60px;
}

.section-header h2{
font-size:44px;
font-weight:700;
color:#e5e7eb;
position:relative;
display:inline-block;
padding:0 30px;
}

.section-header h2::before,
.section-header h2::after{
content:"";
position:absolute;
top:50%;
width:60px;
height:3px;
background:#2563eb;
}

.section-header h2::before{
right:100%;
margin-right:15px;
}

.section-header h2::after{
left:100%;
margin-left:15px;
}

.section-header p{
margin-top:12px;
font-size:18px;
color:#9ca3af;
}


/* =========================
MISSION LAYOUT
========================= */

.mission-layout{
margin-top:40px;
}

.mission-image img{
width:100%;
border-radius:14px;
box-shadow:0 20px 40px rgba(0,0,0,0.5);
}

.mission-text{
padding-left:30px;
}

.mission-points{
display:grid;
grid-template-columns:1fr 1fr;
gap:20px;
margin-top:30px;
}


/* =========================
MISSION CARDS
========================= */

.mission-card{
background:#1f2937;

padding:25px;

border-radius:14px;

text-align:center;

box-shadow:0 12px 35px rgba(0,0,0,0.45);

transition:0.3s;

height:100%;
}

.mission-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.6);
}

.mission-card i{
font-size:30px;
color:#3b82f6;
margin-bottom:12px;
}

.mission-card h4{
font-size:18px;
margin-bottom:6px;
}

.mission-card p{
font-size:14px;
color:#9ca3af;
}


/* =========================
JOIN SECTION
========================= */

.join-container{
padding:100px 0;
background:#111827;
}

.join-card{
background:#1f2937;
padding:30px;
border-radius:14px;
text-align:left;
box-shadow:0 12px 35px rgba(0,0,0,0.45);
transition:0.3s;
height:100%;
}

.join-card i{
font-size:28px;
color:#3b82f6;
margin-bottom:15px;
}

.join-card h4{
font-size:18px;
margin-bottom:10px;
}

.join-card p{
font-size:14px;
color:#9ca3af;
}

.join-card:hover{
transform:translateY(-8px);
box-shadow:0 18px 45px rgba(0,0,0,0.6);
}


/* =========================
MISSION VIDEO
========================= */

.mission-video{
display:flex;
align-items:center;
justify-content:center;
}

.video-container{
width:100%;
border-radius:14px;
overflow:hidden;
box-shadow:0 20px 50px rgba(0,0,0,0.5);
background:#000;
}

.video-container video{
width:100%;
height:100%;
object-fit:cover;
display:block;
}

.video-container::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(
transparent,
rgba(15,23,42,0.6)
);
}

.mission-top{
margin-top:40px;
margin-bottom:60px;
}


/* =========================
VIDEO SECTION
========================= */

.mlc-video{
padding:100px 0;
background:#0f172a;
}

.video-wrapper video{
width:100%;
max-width:900px;
border-radius:14px;
box-shadow:0 20px 50px rgba(0,0,0,0.6);
}


/* =========================
FINAL JOIN CTA
========================= */

.join-cta{
padding:80px 0;
background:#111827;
text-align:center;
}

.cta-title{
font-size:34px;
font-weight:700;
margin-bottom:30px;
}

.cta-button{
display:inline-block;
padding:14px 40px;
border-radius:40px;
background:linear-gradient(135deg,#2563eb,#06b6d4);
color:white;
font-weight:600;
text-decoration:none;
transition:0.3s;
}

.cta-button:hover{
transform:translateY(-3px);
box-shadow:0 10px 25px rgba(37,99,235,0.4);
}


/* =================================
RESPONSIVE
================================= */

@media (max-width:768px){

.hero-section h1{
font-size:36px;
}

.Name-section{
font-size:34px;
}

.mission-layout{
flex-direction:column;
}

.mission-text{
padding-left:0;
margin-top:30px;
}

.mission-points{
grid-template-columns:1fr;
}

.mission-cards-row{
margin-top:40px;
}

.objective-heading{
font-size:30px;
}

}