/* RESET */

*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial, Helvetica, sans-serif;
}

/* BODY */

body{
background:#111;
color:white;
line-height:1.6;
}

/* NAVBAR */

.navbar{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 40px;
background:#000;
position:sticky;
top:0;
z-index:1000;
}

.logo{
font-size:22px;
font-weight:bold;
}

.navbar ul{
display:flex;
list-style:none;
gap:25px;
}

.navbar a{
color:white;
text-decoration:none;
font-size:16px;
transition:0.3s;
}

.navbar a:hover{
color:#ff5722;
}

/* HERO SECTION */

.hero{
height:90vh;
background:url("images/speech.jpeg") center/cover no-repeat;
display:flex;
align-items:center;
padding-left:80px;
}

.overlay{
background:rgba(0,0,0,0.65);
padding:50px;
border-radius:10px;
max-width:500px;
}

.hero h1{
font-size:48px;
margin-bottom:10px;
}

.typing{
font-size:20px;
margin-bottom:20px;
}

/* BUTTON */

.btn{
background:#ff5722;
color:white;
padding:12px 24px;
border-radius:6px;
text-decoration:none;
display:inline-block;
transition:0.3s;
}

.btn:hover{
background:#e64a19;
}

/* SECTIONS */

section{
padding:80px 40px;
text-align:center;
}

section h2{
font-size:32px;
margin-bottom:20px;
}

/* CARDS */

.cards{
display:flex;
flex-wrap:wrap;
justify-content:center;
gap:20px;
margin-top:30px;
}

.card{
background:#1e1e1e;
padding:20px;
border-radius:8px;
width:220px;
transition:0.3s;
}

.card:hover{
transform:translateY(-5px);
background:#2b2b2b;
}

/* GALLERY */

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:20px;
margin-top:30px;
}

.grid img{
width:100%;
border-radius:10px;
}

/* REGISTRATION FORM */

#registration form{
max-width:500px;
margin:auto;
display:flex;
flex-direction:column;
gap:12px;
margin-top:20px;
}

#registration input,
#registration select,
#registration textarea{
padding:10px;
border:none;
border-radius:6px;
}

#registration textarea{
resize:none;
}

/* CONTACT */

#contact p{
margin:10px 0;
}

/* FOOTER */

footer{
background:#000;
text-align:center;
padding:20px;
}

/* WHATSAPP FLOAT */

.whatsapp{
position:fixed;
bottom:20px;
right:20px;
background:#25D366;
color:white;
font-size:24px;
padding:14px;
border-radius:50%;
text-decoration:none;
box-shadow:0 4px 10px rgba(0,0,0,0.4);
}

