/* ==========================
GOOGLE FONT RESET
========================== */

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

body{
background:#070707;
color:white;
font-family:'Inter',sans-serif;
overflow-x:hidden;
}

img{
display:block;
max-width:100%;
}

a{
text-decoration:none;
}

/* ==========================
SCROLL BAR
========================== */

.scroll-bar{
position:fixed;
top:0;
left:0;
height:4px;
width:0%;
background:#d4af37;
z-index:9999;
}

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

nav{
position:fixed;
top:0;
left:0;
width:100%;
padding:28px 8%;
display:flex;
justify-content:space-between;
align-items:center;
z-index:999;
transition:.35s;
}

nav.scrolled{
background:rgba(8,8,8,.92);
backdrop-filter:blur(12px);
padding:18px 8%;
box-shadow:0 10px 35px rgba(0,0,0,.45);
}

.logo{
font-family:'Bebas Neue',sans-serif;
font-size:34px;
letter-spacing:2px;
color:white;
}

nav ul{
display:flex;
gap:45px;
list-style:none;
}

nav a{
color:white;
font-size:15px;
letter-spacing:1px;
transition:.3s;
}

nav a:hover{
color:#d4af37;
}

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

.hero{
height:100vh;
position:relative;
display:flex;
justify-content:center;
align-items:center;
background:url("hero-bg.jpg.png") center center/cover;
overflow:hidden;
}

.overlay{
position:absolute;
inset:0;
background:linear-gradient(to right,
rgba(0,0,0,.78),
rgba(0,0,0,.45),
rgba(0,0,0,.25));
}

.hero-content{
position:relative;
z-index:5;
width:85%;
max-width:1400px;
}

.eyebrow{
color:#d4af37;
letter-spacing:5px;
margin-bottom:15px;
font-size:15px;
}

.hero h1{
font-family:'Bebas Neue',sans-serif;
font-size:150px;
line-height:.88;
letter-spacing:3px;
margin-bottom:25px;
}

.hero-text{
max-width:560px;
font-size:21px;
line-height:1.8;
color:#d8d8d8;
margin-bottom:40px;
}

/* ==========================
BUTTONS
========================== */

.btn,
.btn-outline{

display:inline-block;
padding:16px 40px;
border-radius:50px;
font-weight:600;
transition:.35s;
}

.btn{
background:#d4af37;
color:black;
}

.btn:hover{
transform:translateY(-4px);
box-shadow:0 18px 45px rgba(212,175,55,.4);
}

.btn-outline{
border:2px solid #d4af37;
color:#d4af37;
margin-top:35px;
}

.btn-outline:hover{
background:#d4af37;
color:black;
}

/* ==========================
SERVING CARD
========================== */

.markets-card{
position:absolute;
right:8%;
bottom:7%;
z-index:5;
padding:28px 32px;
background:rgba(15,15,15,.75);
backdrop-filter:blur(14px);
border:1px solid rgba(212,175,55,.25);
border-radius:20px;
box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.markets-card h3{
color:#d4af37;
margin-bottom:12px;
}

.markets-card p{
margin:7px 0;
color:#ddd;
}

/* ==========================
SECTIONS
========================== */

section{
padding:130px 9%;
}

h2{
font-family:'Bebas Neue',sans-serif;
font-size:72px;
letter-spacing:2px;
margin-bottom:35px;
}

.about{
display:grid;
grid-template-columns:1fr 480px;
gap:90px;
align-items:center;
background:#0d0d0d;
}

.about span{
color:#d4af37;
letter-spacing:4px;
font-size:14px;
}

.about p{
margin-top:25px;
line-height:2;
color:#bfbfbf;
font-size:17px;
}

.about-image{
display:flex;
justify-content:center;
}

.about-image img{
width:100%;
max-width:420px;
border-radius:24px;
border:2px solid rgba(212,175,55,.4);
box-shadow:0 35px 80px rgba(0,0,0,.6);
}

/* ==========================
MARKETS
========================== */

.market-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:28px;
}

.market-card{
height:430px;
border-radius:20px;
overflow:hidden;
display:flex;
align-items:flex-end;
padding:35px;
font-family:'Bebas Neue';
font-size:36px;
letter-spacing:2px;
background:
linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.75)),
url("hero-bg.jpg.png");
background-size:cover;
background-position:center;
transition:.4s;
cursor:pointer;
}

.market-card:hover{
transform:translateY(-12px);
}

/* ==========================
INSIGHTS
========================== */

.insight-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

.insight{
padding:40px;
background:#121212;
border-radius:20px;
border:1px solid rgba(212,175,55,.2);
transition:.35s;
}

.insight:hover{
transform:translateY(-8px);
border-color:#d4af37;
}

.insight h3{
font-family:'Bebas Neue';
font-size:34px;
margin-bottom:15px;
}

.insight p{
line-height:1.8;
color:#bdbdbd;
}

/* ==========================
QUOTE
========================== */

.quote{
text-align:center;
background:#090909;
}

.quote-line{
width:90px;
height:3px;
background:#d4af37;
margin:auto auto 35px;
}

.quote h2{
max-width:900px;
margin:auto;
font-size:70px;
}

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

.contact{
text-align:center;
background:#111;
}

.contact p{
margin-bottom:45px;
color:#bdbdbd;
}

.social-buttons{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:20px;
}

.social-buttons a{
padding:18px 38px;
border-radius:50px;
background:#1a1a1a;
color:white;
border:1px solid rgba(212,175,55,.25);
transition:.35s;
}

.social-buttons a:hover{
background:#d4af37;
color:black;
transform:translateY(-5px);
}

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

footer{
padding:45px;
text-align:center;
color:#666;
background:#080808;
}

/* ==========================
FADE ANIMATION
========================== */

.fade{
opacity:0;
transform:translateY(60px);
transition:1s;
}

.fade.show{
opacity:1;
transform:none;
}

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

@media(max-width:1000px){

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

.about{
grid-template-columns:1fr;
text-align:center;
}

.market-grid{
grid-template-columns:1fr;
}

.insight-grid{
grid-template-columns:1fr;
}

.markets-card{
display:none;
}

nav ul{
display:none;
}

h2{
font-size:50px;
}

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

}
