/* ================= GLOBAL ================= */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
scroll-behavior:smooth;
}

body{
background:#0b0b0b;
color:#ffffff;
line-height:1.6;
}

/* ================= NAVBAR ================= */

header{
position:fixed;
width:100%;
background:#0b0b0b;
z-index:1000;
border-bottom:1px solid rgba(255,122,0,0.2);
}

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 8%;
color:white;
}

.logo{
font-size:22px;
font-weight:700;
color:#ff7a00;
}

.nav-links{
list-style:none;
display:flex;
gap:25px;
}

.nav-links a{
text-decoration:none;
color:white;
transition:.3s;
}

.nav-links a:hover{
color:#ff7a00;
}

/* ================= HERO ================= */

.hero{
height:100vh;
background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.85)),
url("bg.jpg");
background-size:cover;
background-position:center;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:15px;
font-weight:700;
color:#ff7a00;
}

.hero p{
max-width:700px;
margin:auto;
margin-bottom:25px;
color:#dddddd;
}

.btn{
background:#ff7a00;
padding:12px 25px;
border-radius:6px;
color:white;
text-decoration:none;
transition:.3s;
display:inline-block;
}

.btn:hover{
background:#e66a00;
}

/* ================= SECTIONS ================= */

.section{
padding:100px 8%;
text-align:center;
}

.section h2{
margin-bottom:40px;
font-size:34px;
color:#ff7a00;
}

.dark{
background:#121212;
color:white;
}

/* ================= CARDS LAYOUT ================= */

.cards{
display:flex;
justify-content:center;
gap:25px;
flex-wrap:nowrap;
align-items:stretch;
}

/* ================= CARD ================= */

.card{
background:#1a1a1a;
padding:30px;
width:23%;
min-width:250px;
border-radius:12px;
box-shadow:0 6px 20px rgba(255,122,0,0.1);
transition:0.35s ease;
display:flex;
flex-direction:column;
justify-content:center;
border:1px solid rgba(255,122,0,0.15);
}

.card:hover{
transform:translateY(-10px);
box-shadow:0 12px 30px rgba(255,122,0,0.25);
}

.card h3{
margin-bottom:10px;
font-size:20px;
color:#ff7a00;
}

.dark .card{
background:#1f1f1f;
}

.card .btn{
margin-top:15px;
display:inline-block;
}

/* ================= ABOUT ================= */

.about-text{
max-width:800px;
margin:auto;
font-size:17px;
line-height:1.8;
color:#cccccc;
}

/* ================= COLLAB SECTION ================= */

.collab-box{
max-width:700px;
margin:auto;
background:#1a1a1a;
padding:40px;
border-radius:12px;
box-shadow:0 5px 20px rgba(255,122,0,0.2);
border:1px solid rgba(255,122,0,0.2);
}

.collab-box h3{
color:#ff7a00;
margin-bottom:10px;
}

.tagline{
font-style:italic;
color:#aaaaaa;
margin-bottom:15px;
}

/* ================= JOIN BUTTONS ================= */

.join-buttons{
display:flex;
justify-content:center;
gap:20px;
flex-wrap:wrap;
margin-top:20px;
}

.insta{
background:#e1306c;
}

.insta:hover{
background:#c8235c;
}

/* ================= FOOTER ================= */

footer{
background:#050505;
color:white;
text-align:center;
padding:20px;
font-size:14px;
border-top:1px solid rgba(255,122,0,0.2);
}

/* ================= MOBILE MENU ================= */

.menu-toggle{
display:none;
font-size:24px;
cursor:pointer;
color:white;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media(max-width:1024px){

.cards{
flex-wrap:wrap;
}

.card{
width:45%;
}
}

/* Mobile */
@media(max-width:600px){

.nav-links{
position:absolute;
top:60px;
right:0;
background:#0b0b0b;
flex-direction:column;
width:220px;
display:none;
padding:20px;
border-left:1px solid rgba(255,122,0,0.2);
}

.nav-links.active{
display:flex;
}

.menu-toggle{
display:block;
}

.hero h1{
font-size:32px;
}

.card{
width:100%;
}
}

/* ================= FOUNDER ================= */

.founder-container{
display:flex;
align-items:center;
justify-content:center;
gap:40px;
flex-wrap:wrap;
margin-top:40px;
}

.founder-img img{
width:250px;
border-radius:15px;
box-shadow:0 10px 30px rgba(255,122,0,0.3);
border:2px solid rgba(255,122,0,0.3);
}

.founder-content{
max-width:500px;
text-align:left;
}

.founder-content h3{
font-size:26px;
color:#ff7a00;
margin-bottom:5px;
}

.founder-content .role{
color:#aaaaaa;
margin-bottom:15px;
font-style:italic;
}

.founder-content p{
color:#cccccc;
line-height:1.7;
}

/* MOBILE */
@media(max-width:600px){

.founder-content{
text-align:center;
}

}