/* ======================================================
   347 CAR MEETS
   Premium Styles v2
====================================================== */

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{
font-family:'Montserrat',sans-serif;
background:#080808;
color:#fff;
overflow-x:hidden;
line-height:1.6;
}

img{
max-width:100%;
display:block;
}

a{
text-decoration:none;
color:#fff;
}

.container{
width:92%;
max-width:1300px;
margin:auto;
}

/* ======================================================
   Navigation
====================================================== */

nav{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;

background:rgba(10,10,10,.82);

backdrop-filter:blur(18px);

border-bottom:1px solid rgba(255,255,255,.08);

transition:.35s;
}

.nav-container{

height:82px;

display:flex;

align-items:center;

justify-content:space-between;

}

.logo{

font-size:1.8rem;

font-weight:900;

letter-spacing:1px;

}

.logo span{

color:#e11d2e;

}

.nav-links{

display:flex;

align-items:center;

gap:35px;

list-style:none;

}

.nav-links a{

font-weight:600;

transition:.3s;

}

.nav-links a:hover{

color:#ff4040;

}

.register-btn{

padding:13px 28px;

border-radius:50px;

background:#e11d2e;

font-weight:700;

transition:.3s;

}

.register-btn:hover{

background:#fff;

color:#111;

}

.menu-btn{

display:none;

background:none;

border:none;

font-size:32px;

color:#fff;

cursor:pointer;

}

/* ======================================================
   Hero
====================================================== */

.hero{

position:relative;

height:100vh;

display:flex;

align-items:center;

background:

linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.82)),

url("images/hero.jpg");

background-size:cover;

background-position:center;

overflow:hidden;

}

.hero-overlay{

position:absolute;

inset:0;

background:

radial-gradient(circle at top,rgba(225,29,46,.25),transparent 60%);

}

.hero-content{

position:relative;

z-index:2;

max-width:760px;

}

.hero-tag{

display:inline-block;

padding:8px 18px;

border:1px solid rgba(255,255,255,.25);

border-radius:30px;

letter-spacing:2px;

font-size:.8rem;

margin-bottom:22px;

}

.hero h1{

font-size:clamp(3.5rem,8vw,6rem);

font-weight:900;

line-height:.95;

margin-bottom:30px;

text-transform:uppercase;

}

.hero-description{

font-size:1.15rem;

color:#d5d5d5;

max-width:650px;

margin-bottom:45px;

}

.hero-buttons{

display:flex;

gap:20px;

flex-wrap:wrap;

margin-bottom:70px;

}

/* ======================================================
   Hero Stats
====================================================== */

.hero-stats{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

max-width:700px;

}

.hero-stats div{

background:rgba(255,255,255,.05);

border:1px solid rgba(255,255,255,.08);

padding:20px;

border-radius:15px;

backdrop-filter:blur(8px);

}

.hero-stats h2{

font-size:2rem;

color:#ff4040;

margin-bottom:5px;

}

.hero-stats span{

font-size:.9rem;

color:#bbb;

}

/* ======================================================
   Scroll Button
====================================================== */

.scroll-down{

position:absolute;

bottom:30px;

left:50%;

transform:translateX(-50%);

font-size:2rem;

animation:bounce 2s infinite;

}

@keyframes bounce{

0%,100%{

transform:translate(-50%,0);

}

50%{

transform:translate(-50%,10px);

}

}

/* ======================================================
   Buttons
====================================================== */

.btn-primary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

background:#e11d2e;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.btn-primary:hover{

background:#fff;

color:#111;

transform:translateY(-3px);

}

.btn-secondary{

display:inline-flex;

align-items:center;

justify-content:center;

padding:16px 34px;

border:2px solid #fff;

border-radius:50px;

font-weight:700;

transition:.35s;

}

.btn-secondary:hover{

background:#fff;

color:#111;

}

/* ======================================================
   Section Titles
====================================================== */

section{

padding:110px 0;

}

.section-heading{

text-align:center;

max-width:850px;

margin:auto auto 70px;

}

.section-heading span{

color:#ff4040;

font-weight:700;

letter-spacing:3px;

font-size:.85rem;

}

.section-heading h2{

font-size:clamp(2.5rem,5vw,4rem);

margin:15px 0;

font-weight:900;

text-transform:uppercase;

}

.section-heading p{

color:#bdbdbd;

font-size:1.05rem;

}
/* ======================================================
   Featured Event
====================================================== */

.featured-event{
background:#0d0d0d;
}

.event-card{

display:grid;

grid-template-columns:1.1fr 1fr;

gap:50px;

align-items:center;

background:#141414;

border-radius:24px;

overflow:hidden;

border:1px solid rgba(255,255,255,.06);

box-shadow:0 20px 60px rgba(0,0,0,.45);

}

.event-image{

height:100%;

}

.event-image img{

width:100%;

height:100%;

min-height:550px;

object-fit:cover;

transition:.5s;

}

.event-card:hover img{

transform:scale(1.05);

}

.event-info{

padding:60px;

}

.event-badge{

display:inline-block;

padding:8px 18px;

background:#e11d2e;

border-radius:30px;

font-size:.8rem;

font-weight:700;

margin-bottom:25px;

}

.event-info h3{

font-size:2.4rem;

margin-bottom:20px;

font-weight:900;

}

.event-info p{

color:#bdbdbd;

margin-bottom:25px;

}

.event-info ul{

list-style:none;

margin-bottom:35px;

}

.event-info li{

padding:10px 0;

border-bottom:1px solid rgba(255,255,255,.06);

color:#ddd;

}

.event-buttons{

display:flex;

gap:15px;

flex-wrap:wrap;

}

/* ======================================================
   Why 347
====================================================== */

.why347{

background:#090909;

}

.features-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.feature-card{

background:#151515;

padding:40px 30px;

border-radius:18px;

text-align:center;

border:1px solid rgba(255,255,255,.06);

transition:.35s;

}

.feature-card:hover{

transform:translateY(-10px);

border-color:#e11d2e;

box-shadow:0 20px 45px rgba(225,29,46,.15);

}

.feature-icon{

font-size:3rem;

margin-bottom:20px;

}

.feature-card h3{

font-size:1.35rem;

margin-bottom:15px;

}

.feature-card p{

color:#bdbdbd;

}

/* ======================================================
   Statistics
====================================================== */

.stats{

background:#101010;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:30px;

}

.stat{

background:#181818;

padding:45px 25px;

text-align:center;

border-radius:20px;

transition:.3s;

}

.stat:hover{

transform:translateY(-8px);

}

.stat h2{

font-size:3rem;

font-weight:900;

color:#ff4040;

margin-bottom:10px;

}

.stat p{

color:#bcbcbc;

font-weight:500;

}

/* ======================================================
   Gallery
====================================================== */

.gallery{

background:#080808;

}

.gallery-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:25px;

margin-bottom:50px;

}

.gallery-grid img{

width:100%;

height:320px;

object-fit:cover;

border-radius:20px;

transition:.4s;

cursor:pointer;

}

.gallery-grid img:hover{

transform:scale(1.04);

box-shadow:0 18px 40px rgba(0,0,0,.45);

}

.center{

text-align:center;

}
/* ======================================================
   Vendor CTA
====================================================== */

.vendor-cta{
background:#111;
}

.vendor-wrapper{
display:grid;
grid-template-columns:1fr 1fr;
gap:60px;
align-items:center;
}

.vendor-wrapper img{
width:100%;
border-radius:22px;
box-shadow:0 20px 50px rgba(0,0,0,.45);
}

.section-tag{
display:inline-block;
color:#ff4040;
font-weight:700;
letter-spacing:3px;
margin-bottom:20px;
}

.vendor-wrapper h2{
font-size:3rem;
font-weight:900;
margin-bottom:20px;
}

.vendor-wrapper p{
color:#cfcfcf;
margin-bottom:35px;
font-size:1.05rem;
line-height:1.8;
}

/* ======================================================
   Partners
====================================================== */

.partners{
background:#090909;
}

.partner-grid{
display:grid;
grid-template-columns:repeat(4,1fr);
gap:25px;
}

.partner-logo{
background:#151515;
height:140px;
display:flex;
align-items:center;
justify-content:center;
border-radius:18px;
border:1px solid rgba(255,255,255,.08);
font-weight:700;
color:#888;
transition:.35s;
}

.partner-logo:hover{
border-color:#ff4040;
transform:translateY(-6px);
color:#fff;
}

/* ======================================================
   CTA
====================================================== */

.cta{
background:linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.75)),
url("images/cta.jpg");
background-size:cover;
background-position:center;
text-align:center;
}

.cta h2{
font-size:clamp(2.5rem,5vw,4rem);
font-weight:900;
margin-bottom:25px;
}

.cta p{
max-width:700px;
margin:0 auto 40px;
color:#ddd;
font-size:1.05rem;
}

/* ======================================================
   Footer
====================================================== */

footer{
background:#050505;
padding:80px 0 30px;
border-top:2px solid #e11d2e;
}

.footer-grid{
display:grid;
grid-template-columns:2fr 1fr 1fr;
gap:50px;
margin-bottom:50px;
}

.footer-grid h3,
.footer-grid h4{
margin-bottom:20px;
}

.footer-grid p{
color:#999;
}

.footer-grid a{
display:block;
margin-bottom:12px;
color:#bbb;
transition:.3s;
}

.footer-grid a:hover{
color:#ff4040;
}

.copyright{
text-align:center;
padding-top:30px;
border-top:1px solid rgba(255,255,255,.08);
color:#777;
}

/* ======================================================
   Mobile
====================================================== */

@media(max-width:992px){

.features-grid,
.stats-grid,
.partner-grid{
grid-template-columns:repeat(2,1fr);
}

.event-card,
.vendor-wrapper{
grid-template-columns:1fr;
}

.gallery-grid{
grid-template-columns:repeat(2,1fr);
}

.footer-grid{
grid-template-columns:1fr;
text-align:center;
}

.hero-stats{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:768px){

.menu-btn{
display:block;
font-size:32px;
}

.nav-container{
height:70px;
}

.logo{
font-size:1.3rem;
}

.nav-links{
position:absolute;
top:70px;
left:0;
width:100%;
background:#111;
display:none;
flex-direction:column;
padding:25px;
gap:20px;
border-top:1px solid rgba(255,255,255,.08);
}

.nav-links.active{
display:flex;
}

.hero{
height:auto;
min-height:100vh;
padding:120px 0 70px;
}

.hero h1{
font-size:2.7rem;
}

.hero-description{
font-size:1rem;
}

.hero-buttons{
flex-direction:column;
}

.hero-buttons a{
width:100%;
text-align:center;
}

.hero-stats{
grid-template-columns:1fr;
}

.gallery-grid,
.features-grid,
.stats-grid,
.partner-grid{
grid-template-columns:1fr;
}

.event-image img{
min-height:300px;
}

.event-info{
padding:35px;
}

.vendor-wrapper h2,
.cta h2{
font-size:2.2rem;
}

section{
padding:80px 0;
}

}