/* =================================
SITAGLOBE GLOBAL STYLE
================================= */

/* RESET */

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

/* BODY */

body{
font-family:'Poppins', sans-serif;
background:#f5f5f5;
color:#333;
line-height:1.6;
}

/* LINKS */

a{
text-decoration:none;
color:inherit;
}

/* CONTAINER */

.container{
width:90%;
max-width:1200px;
margin:auto;
}

/* =================================
NAVBAR
================================= */

.navbar{
background:#111;
padding:18px 8%;
position:sticky;
top:0;
z-index:1000;
}

.nav-container{
display:flex;
justify-content:space-between;
align-items:center;
}

.logo a{
color:white;
font-size:22px;
font-weight:600;
}

/* MENU */

.nav-menu{
display:flex;
align-items:center;
}

.nav-menu a{
color:white;
margin-left:25px;
font-weight:500;
transition:0.3s;
}

.nav-menu a:hover{
color:#ff6b00;
}

/* CTA */

.btn-contact{
background:#ff6b00;
padding:10px 18px;
border-radius:5px;
}

/* HAMBURGER */

.hamburger{
display:none;
flex-direction:column;
cursor:pointer;
}

.hamburger span{
height:3px;
width:25px;
background:white;
margin:4px 0;
}

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

.hero{
height:90vh;
background:
linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)),
url('../images/hero.jpg');
background-size:cover;
background-position:center;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:white;
padding:20px;
}

.hero h1{
font-size:48px;
margin-bottom:20px;
}

.hero p{
font-size:20px;
margin-bottom:30px;
max-width:700px;
margin:auto;
}

.hero-btn{
background:#ff6b00;
padding:15px 30px;
border-radius:5px;
font-weight:500;
display:inline-block;
margin-top:20px;
}

/* =================================
ABOUT SECTION
================================= */

.about{
padding:80px 0;
background:white;
text-align:center;
}

.about h2{
font-size:32px;
margin-bottom:20px;
}

.about p{
max-width:800px;
margin:auto;
font-size:18px;
}

/* =================================
SERVICES
================================= */

.services{
padding:80px 0;
background:#f5f5f5;
}

.services h2{
text-align:center;
margin-bottom:50px;
font-size:32px;
}

.services-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:30px;
}

.service-card{
background:white;
padding:30px;
border-radius:10px;
box-shadow:0 5px 20px rgba(0,0,0,0.1);
text-align:center;
transition:0.3s;
}

.service-card:hover{
transform:translateY(-5px);
}

.service-card h3{
margin-bottom:10px;
color:#ff6b00;
}

/* =================================
INVEST SECTION
================================= */

.invest{
padding:80px 0;
background:white;
text-align:center;
}

.invest h2{
font-size:32px;
margin-bottom:20px;
}

.invest p{
max-width:800px;
margin:auto;
font-size:18px;
}

/* =================================
CONTACT SECTION
================================= */

.contact{
padding:80px 0;
background:#222;
color:white;
text-align:center;
}

.contact h2{
margin-bottom:20px;
}

.contact p{
margin-bottom:10px;
}

/* =================================
FOOTER
================================= */

.footer{
background:#111;
color:white;
padding:60px 8% 20px;
}

.footer-container{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:40px;
}

.footer-col h3{
margin-bottom:15px;
}

.footer-col p{
line-height:1.6;
}

.footer-col ul{
list-style:none;
}

.footer-col ul li{
margin-bottom:10px;
}

.footer-col ul li a{
color:white;
transition:0.3s;
}

.footer-col ul li a:hover{
color:#ff6b00;
}

/* SOCIAL */

.socials{
margin-top:15px;
}

.socials a{
color:white;
margin-right:10px;
font-size:18px;
}

/* COPYRIGHT */

.footer-bottom{
text-align:center;
margin-top:40px;
border-top:1px solid #333;
padding-top:15px;
font-size:14px;
}

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

@media(max-width:768px){

.hero h1{
font-size:34px;
}

.hero p{
font-size:18px;
}

.nav-menu{
position:absolute;
top:70px;
left:0;
width:100%;
background:#111;
flex-direction:column;
display:none;
text-align:center;
}

.nav-menu a{
display:block;
padding:15px;
margin:0;
border-top:1px solid #333;
}

.nav-menu.active{
display:flex;
}

.hamburger{
display:flex;
}

}