/* Google Fonts */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Poppins:wght@300;400;500;600;700&display=swap');

:root{

--black:#050505;
--section:#0d0d0d;
--red:#ff2d2d;
--gold:#ffc247;
--white:#ffffff;
--text:#bdbdbd;

--radius:18px;

transition:var(--transition);
--container:1400px;

}

*{
margin:0;
padding:0;
box-sizing:border-box;
}

html{
scroll-behavior:smooth;
}

body{

background:var(--black);

font-family:'Poppins',sans-serif;

color:white;

overflow-x:hidden;
-webkit-font-smoothing:antialiased;
-moz-osx-font-smoothing:grayscale;
}

a{

text-decoration:none;

color:inherit;

}

img{

width:100%;

display:block;

}

.container{

max-width:1400px;

margin:auto;

padding:0 80px;

}

h1,h2,h3{

font-family:'Bebas Neue';

letter-spacing:2px;

font-weight:400;

}

section{

padding:120px 0;

position:relative;

}

/*==========================
        NAVBAR
===========================*/

#navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:22px 0;

    background:rgba(0,0,0,.45);
    backdrop-filter:blur(18px);

    z-index:1000;

    transition:.5s;
}

.nav-container{

display:flex;

justify-content:space-between;

align-items:center;

}

.logo img{

height:72px;
width:auto;

}

.nav-links{

display:flex;

gap:45px;

list-style:none;

}

.nav-links a{

position:relative;

}

.nav-links a::after{

content:"";

position:absolute;

left:0;
bottom:-8px;

width:0;

height:2px;

background:var(--red);

transition:.4s;

}

.nav-links a:hover::after{

width:100%;

}

.btn-primary{

background:
linear-gradient(
135deg,
#ff2d2d,
#d91717
);

padding:15px 32px;

border-radius:50px;

font-weight:600;

transition:.4s;

display:inline-flex;

align-items:center;

justify-content:center;

}

.btn-primary:hover{

transform:translateY(-4px);

box-shadow:0 0 30px rgba(255,45,45,.45);

}

.btn-secondary{

padding:15px 32px;

border:2px solid #fff;

border-radius:50px;

transition:.4s;

}

.btn-secondary:hover{

background:#fff;

color:#000;

}

/*==========================
          HERO
===========================*/

#hero{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:flex-start;

    position:relative;
    overflow:hidden;

    padding:120px 0 80px;
}

#hero-video{

    position:absolute;

    width:100%;

    height:100%;

    object-fit:cover;

    top:0;

    left:0;

    z-index:-2;

    transform:scale(1.08);

    animation:heroZoom 18s linear infinite alternate;

    filter:
    brightness(.85)
    contrast(1.08)
    saturate(1.05);

}
#hero-gif{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

    z-index:-2;

    transform:scale(1.08);

    animation:heroZoom 18s linear infinite alternate;

    filter:
        brightness(.85)
        contrast(1.08)
        saturate(1.05);

    pointer-events:none;

    user-select:none;

}

@keyframes heroZoom{

from{

transform:scale(1.08);

}

to{

transform:scale(1.16);

}

}

.overlay{

position:absolute;

width:100%;

height:100%;

background:
linear-gradient(
90deg,
rgba(0,0,0,.82) 0%,
rgba(0,0,0,.65) 45%,
rgba(0,0,0,.55) 100%
);

z-index:-1;

pointer-events:none;

}

.hero-content{

max-width:700px;

width:100%;

display:flex;

flex-direction:column;

justify-content:center;

align-items:flex-start;

z-index:5;

padding-top:40px;
padding-bottom:120px;
}

.hero-tag{

letter-spacing:5px;

font-size:15px;

font-weight:500;

color:var(--gold);
text-transform:uppercase;
}

.hero-content h1{

font-size:clamp(90px,8vw,150px);
line-height:0.88;
margin:25px 0;

}

.hero-content h1 span{
    color:var(--red);
}

.hero-content p{

font-size:17px;
line-height:1.9;

color:var(--text);

max-width:480px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;

gap:25px;

margin-top:35px;

}

.scroll-down{

position:absolute;

bottom:40px;

left:50%;

transform:translateX(-50%);

letter-spacing:3px;

font-size:13px;

color:white;

}

/*======================================
            LOADER
======================================*/

#loader{

position:fixed;

top:0;
left:0;

width:100%;
height:100vh;

background:#050505;

display:flex;

justify-content:center;

align-items:center;

z-index:99999;

overflow:hidden;

}

.loader-logo{

width:230px;

opacity:0;

transform:scale(.8);

}

.loader-logo img{

width:100%;

display:block;

}

/*==========================
        TRUST STRIP
===========================*/

#trust{

    margin-top:-90px;
    position:relative;
    z-index:20;

    padding-bottom:80px;
}

.trust-box{

display:flex;

justify-content:space-between;

align-items:center;

background:rgba(12,12,12,.85);

backdrop-filter:blur(20px);

border:1px solid rgba(255,255,255,.08);

border-radius:24px;

padding:55px 40px;
 box-shadow:
        0 30px 80px rgba(0,0,0,.45),
        0 0 25px rgba(255,45,45,.05);

    max-width:1200px;
    margin:auto;

}

.trust-item{

flex:1;

text-align:center;

position:relative;

}

.trust-item:not(:last-child)::after{

content:"";

position:absolute;

right:0;

top:50%;

transform:translateY(-50%);

width:1px;

height:60px;

background:rgba(255,255,255,.08);

}

.trust-item h2{

font-size:72px;

color:var(--red);

line-height:1;

}

.trust-item span{

display:block;

margin-top:12px;

font-size:15px;

letter-spacing:1px;

text-transform:uppercase;

color:var(--text);

}

/*==========================
     BRAND STATEMENT
===========================*/

#statement{

    padding:60px 0 140px;
    text-align:center;
    background:var(--black);

}

.section-tag{

display:inline-block;

color:var(--gold);

letter-spacing:4px;

font-size:14px;

margin-bottom:18px;

}
.section-tag::before{
    content:"";
    display:block;
    width:60px;
    height:2px;
    background:var(--red);
    margin:0 auto 18px;
}       

#statement h2{

font-size:clamp(60px,6vw,110px);

line-height:.95;
    max-width:950px;
    margin:auto;

}

#statement h2 span{

color:var(--red);

}

#statement p{

max-width:700px;

margin:45px auto 0;

font-size:18px;

line-height:2;

color:var(--text);

}

/*==========================
            ABOUT
===========================*/

#about{

    padding:140px 0;
    background:var(--section);

}

.about-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:100px;
    align-items:center;

}

/*-------------------------
      IMAGE STACK
--------------------------*/

.about-image{

    position:relative;

    width:500px;
    height:680px;

    margin:auto;

}

.image-bg{

    position:absolute;

    width:100%;
    height:100%;

    top:18px;
    left:-18px;

    border-radius:30px;

    background:rgba(255,45,45,.12);

    transform:rotate(-5deg);

    z-index:0;

}

.photo{

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    object-fit:cover;

    border-radius:28px;

    border:4px solid #111;

    cursor:pointer;

    user-select:none;

    box-shadow:
        0 35px 70px rgba(0,0,0,.45);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

}

.photo:hover{

    box-shadow:
        0 45px 90px rgba(0,0,0,.55);

}

/*-------------------------
      CONTENT
--------------------------*/

.about-content{

    display:flex;
    flex-direction:column;

}

.about-content h2{

    font-size:clamp(70px,5vw,110px);

    line-height:.9;

    margin:20px 0 35px;

}

.about-content h2 span{

    color:var(--red);

}

.about-content p{

    color:var(--text);

    font-size:18px;

    line-height:2;

    margin-bottom:40px;

}

/*-------------------------
      FEATURES
--------------------------*/

.about-features{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:22px;

    margin-bottom:45px;

}

.feature{

    display:flex;

    align-items:center;

    gap:14px;

    font-size:17px;

    color:white;

}

.feature span{

    width:34px;
    height:34px;

    border-radius:50%;

    background:rgba(255,45,45,.15);

    color:var(--red);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

    flex-shrink:0;

}

/*-------------------------
      BUTTON
--------------------------*/

.about-content .btn-primary{

    width:fit-content;

    margin-top:10px;

}

/*==========================
        SERVICES
===========================*/

#services{

    padding:140px 0;
    background:#080808;

    text-align:center;

}

.section-title{

    font-size:clamp(65px,6vw,110px);

    line-height:.9;

    margin:20px auto;

    max-width:900px;

}

.section-title span{

    color:var(--red);

}

.section-description{

    max-width:720px;

    margin:35px auto 90px;

    color:var(--text);

    line-height:2;

    font-size:18px;

}

.services-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:35px;

}

.service-card{

    position:relative;

    height:520px;

    overflow:hidden;

    border-radius:28px;

    cursor:pointer;

}

.service-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s ease;

}

.service-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    align-items:flex-start;

    padding:45px;

    background:linear-gradient(
        to top,
        rgba(0,0,0,.88),
        rgba(0,0,0,.15)
    );

    transition:.5s;

}

.service-overlay span{

    color:var(--gold);

    letter-spacing:3px;

    font-size:14px;

    text-transform:uppercase;

}

.service-overlay h3{

    font-size:56px;

    line-height:.9;

    margin:18px 0;

}

.service-overlay a{

    font-weight:600;

    color:white;

    transition:.4s;

}

.service-card:hover img{

    transform:scale(1.08);

}

.service-card:hover .service-overlay{

    background:linear-gradient(
        to top,
        rgba(0,0,0,.95),
        rgba(0,0,0,.05)
    );

}

.service-card:hover a{

    color:var(--red);

    transform:translateX(10px);

}
.service-btn{

    width:60px;
    height:60px;

    border-radius:50%;

    background:rgba(255,255,255,.12);

    backdrop-filter:blur(12px);

    display:flex;

    align-items:center;

    justify-content:center;

    margin-top:15px;

    transition:.45s;

    transform:translateY(30px);

    opacity:0;

    border:1px solid rgba(255,255,255,.15);

}

.service-btn svg{

    transition:.4s;

}
.service-card:hover a{

    color:var(--red);

    transform:translateX(10px);

}
.service-card:hover .service-btn{

    opacity:1;

    transform:translateY(0);

    background:var(--red);

}

.service-card:hover .service-btn svg{

    transform:rotate(-45deg);

}
/*==========================
      FEATURED EVENTS
===========================*/

#featured-events{

    padding:150px 0;

    background:var(--black);

}

.featured-main{

    position:relative;

    height:650px;

    overflow:hidden;

    border-radius:30px;

    margin-top:80px;

    cursor:pointer;

}

.featured-main img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:1s;

}

.featured-main:hover img{

    transform:scale(1.08);

}

.featured-overlay{

    position:absolute;

    inset:0;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:60px;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.92),

        rgba(0,0,0,.15)

    );

}

.featured-overlay span{

    color:var(--gold);

    letter-spacing:3px;

    text-transform:uppercase;

}

.featured-overlay h3{

    font-size:90px;

    margin:15px 0;

}

.featured-overlay p{

    color:var(--text);

}

.featured-overlay a{

    margin-top:25px;

    color:white;

    font-weight:600;

}

.featured-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:30px;

    margin-top:40px;

}

.featured-card{

    position:relative;

    overflow:hidden;

    border-radius:24px;

    height:320px;

    cursor:pointer;

}

.featured-card img{

    width:100%;
    height:100%;

    object-fit:cover;

    transition:.8s;

}

.featured-card:hover img{

    transform:scale(1.08);

}

.card-overlay{

    position:absolute;

    inset:0;

    display:flex;

    align-items:flex-end;

    padding:35px;

    background:linear-gradient(

        to top,

        rgba(0,0,0,.85),

        transparent

    );

}

.card-overlay h4{

    font-size:42px;

}

/*==========================
        WHY US
===========================*/

#why-us{

    padding:150px 0;

    background:var(--section);

}

.why-wrapper{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:100px;

    align-items:center;

}

.why-content h2{

    font-size:clamp(70px,5vw,110px);

    line-height:.9;

    margin:20px 0 35px;

}

.why-content h2 span{

    color:var(--red);

}

.why-content p{

    color:var(--text);

    line-height:2;

    font-size:18px;

    margin-bottom:40px;

}

/* Grid */

.why-grid{

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:30px;

}

/* Offset every alternate card */

.offset{

    margin-top:70px;

}

/* Card */

.why-card{

    background:rgba(255,255,255,.03);

    border:1px solid rgba(255,255,255,.08);

    border-radius:24px;

    padding:40px;

    backdrop-filter:blur(15px);

    transition:.4s ease;

}

.why-card:hover{

    transform:translateY(-10px);

    border-color:rgba(255,45,45,.5);

    box-shadow:
        0 20px 60px rgba(255,45,45,.12);

}

.icon{

    width:70px;

    height:70px;

    border-radius:18px;

    background:rgba(255,45,45,.15);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:32px;

    margin-bottom:25px;

}

.why-card h3{

    font-size:34px;

    margin-bottom:15px;

}

.why-card p{

    color:var(--text);

    line-height:1.8;

}
/*==========================
          FOOTER
===========================*/

#footer{

    background:#070707;

    padding:100px 0 40px;

    border-top:1px solid rgba(255,255,255,.08);

}

.footer-top{

    display:grid;

    grid-template-columns:2fr 1fr 1fr 1.3fr;

    gap:60px;

    margin-bottom:70px;

}

.footer-about img{

    width:90px;

    margin-bottom:25px;

}

.footer-about p{

    color:var(--text);

    line-height:2;

    max-width:330px;

}

.footer-links,
.footer-services,
.footer-contact{

    display:flex;

    flex-direction:column;

    gap:16px;

}

.footer-top h3{

    font-size:24px;

    margin-bottom:20px;

    color:white;

}

.footer-top a{

    color:var(--text);

    transition:.35s;

}

.footer-top a:hover{

    color:var(--red);

    padding-left:8px;

}

.footer-contact p{

    color:var(--text);

    line-height:1.8;

}

.footer-map{

    margin-bottom:50px;

    overflow:hidden;

    border-radius:24px;

}

.footer-map iframe{

    width:100%;

    height:320px;

    border:none;

    filter:grayscale(100%) invert(92%) contrast(.9);

}

.footer-bottom{

    text-align:center;

    color:#777;

    padding-top:30px;

    border-top:1px solid rgba(255,255,255,.08);

}