/* =====================================
   AXION SHOWS & CONFERENCES
   STYLE.CSS
===================================== */

:root{

    --navy:#04111F;
    --blue:#0B2D4F;
    --accent:#2C69A8;
    --accent-light:#4B8FD8;

    --orange:#F28A2A;
    --red:#D61F26;
    --cyan:#00AEEF;

    --white:#ffffff;
    --light:#F5F7FA;
    --grey:#A8B3C2;

    --radius:20px;

}

/* =====================================
   GLOBAL
===================================== */

html{
    scroll-behavior:smooth;
}

body{

    font-family:'Inter',sans-serif;
    background:#fff;
    color:#1d2939;
    overflow-x:hidden;

}

img{
    max-width:100%;
}

a{
    text-decoration:none;
    transition:.3s;
}

.section{

    padding:120px 0;

}

.section-label{

    color:var(--accent);
    font-weight:700;
    letter-spacing:2px;
    font-size:.8rem;

}

h1,h2,h3,h4{

    font-weight:800;

}

h2{

    font-size:3rem;
    margin-bottom:20px;

}

p{

    line-height:1.8;

}

/* =====================================
   NAVIGATION
===================================== */

.navbar{

    padding:20px 0;
    transition:.3s;
    background:rgba(4,17,31,.85);
    backdrop-filter:blur(10px);

}

.navbar-brand img{

    height:80px;

}

.nav-link{

    color:white !important;
    margin-left:20px;
    font-weight:500;

}

.nav-link:hover{

    color:var(--accent-light) !important;

}

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

.hero{

    height:100vh;
    min-height:800px;
    position:relative;
    overflow:hidden;
    display:flex;
    align-items:center;
    background-image:url("../img/hero.png");
   background-position:center;
   background-repeat:no-repeat;
   background-size:cover;

}

.hero video{

    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;

}

.hero-overlay{

    position:absolute;
    inset:0;
    background:
    linear-gradient(
        135deg,
        rgba(4,17,31,.65),
        rgba(11,45,79,.80)
    );

}

.hero-content{

    position:relative;
    z-index:2;
    color:white;

}

.hero h1{

    font-size:5rem;
    line-height:1.1;
    max-width:850px;
    margin-bottom:30px;

}

.hero p{

    font-size:1.25rem;
    max-width:700px;
    margin-bottom:40px;
    color:#d9e2ef;

}

.hero-buttons{

    display:flex;
    gap:15px;
    flex-wrap:wrap;

}

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

.btn-primary{

    background:var(--accent);
    border:none;
    padding:15px 35px;
    border-radius:50px;
    font-weight:600;

}

.btn-primary:hover{

    background:var(--accent-light);
    transform:translateY(-2px);

}

.btn-outline-light{

    border-radius:50px;
    padding:15px 35px;

}

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

.about-panel{
    background:white;
    border-radius:var(--radius);
    padding:10px;
    box-shadow:
    0 20px 60px
    rgba(0,0,0,.08);
}

.about-panel img {
	 border-radius:var(--radius);
}

.about-panel h3{
    font-size:3rem;
    color:var(--accent);
}

.about-panel p{
    margin-bottom:35px;
}

.contact-card{

background:rgba(255,255,255,.08);
backdrop-filter:blur(15px);
border:1px solid rgba(255,255,255,.10);
border-radius:24px;
padding:50px;

}

.contact-card h2{


color:white;


}

.contact-card p{


color:rgba(255,255,255,.8);

margin-bottom:30px;


}

.contact-card .form-control{


background:rgba(255,255,255,.10);

border:1px solid rgba(255,255,255,.15);

color:white;

padding:15px;


}

.contact-card .form-control:focus{


background:rgba(255,255,255,.15);

color:white;

border-color:white;

box-shadow:none;


}

.contact-card .form-control::placeholder{


color:rgba(255,255,255,.6);


}


/* =====================================
   EVENTS
===================================== */

.bg-dark-section{

    background:
    linear-gradient(
        180deg,
        var(--navy),
        #08192d
    );

    color:white;

}

.event-card{

    background:#0d1725;

    border-radius:24px;

    padding:40px;

    height:100%;

    position:relative;

    overflow:hidden;

    transition:.35s ease;

    border:1px solid rgba(255,255,255,.05);

    box-shadow:
        0 15px 40px rgba(0,0,0,.15);

}

.event-card:hover{

    transform:translateY(-8px);

}

/* Logo Panel */

.event-logo-panel{

    position:relative;

    display:flex;

    align-items:center;

    justify-content:center;

    min-height:110px;

    margin-bottom:25px;

    padding:20px;

    border-radius:18px;

    background:
        linear-gradient(
            90deg,
            rgba(255,255,255,.95),
            rgba(255,255,255,.85)
        );

    overflow:hidden;

}

.event-logo-panel img{

    max-height:150px;

    width:auto;

    position:relative;

    z-index:2;

}

/* Event Regions */

.event-region{

    display:inline-block;

    padding:8px 14px;

    border-radius:40px;

    font-size:.75rem;

    font-weight:700;

    text-transform:uppercase;

    letter-spacing:1px;

    margin-bottom:15px;

    background:rgba(255,255,255,.08);

}

/* Headings */

.event-card h3{

    font-size:1.75rem;

    line-height:1.2;

    margin-bottom:15px;

    color:white;

}

.event-card p{

    color:rgba(255,255,255,.75);

    margin-bottom:25px;

}

/* CTA */

.event-link{

    color:white;

    font-weight:700;

}

.event-link i{

    margin-left:8px;

    transition:.3s;

}

.event-card:hover .event-link i{

    transform:translateX(5px);

}

/* Motorsport */

.event-orange .event-logo-panel{

    border-left:6px solid #F28A2A;

}

.event-orange:hover{

    box-shadow:
        0 0 35px rgba(242,138,42,.20);

}

/* Materials USA */

.event-red .event-logo-panel{

    border-left:6px solid #D61F26;

}

.event-red:hover{

    box-shadow:
        0 0 35px rgba(214,31,38,.20);

}

/* Engineering Europe */

.event-blue .event-logo-panel{

    border-left:6px solid #1E9BE6;

}

.event-blue:hover{

    box-shadow:
        0 0 35px rgba(30,155,230,.20);

}

/* PEM Europe */

.event-cyan .event-logo-panel{

    border-left:6px solid #00AEEF;

}

.event-cyan:hover{

    box-shadow:
        0 0 35px rgba(0,174,239,.20);

}



/* =====================================
   INDUSTRIES
===================================== */

.industry-card{

    background:white;

    border-radius:16px;

    padding:30px;

    text-align:center;

    font-weight:700;

    box-shadow:
    0 10px 30px
    rgba(0,0,0,.06);

    transition:.3s;

}

.industry-card:hover{

    transform:translateY(-5px);

}

/* =====================================
   CTA
===================================== */

.contact-hero{

    padding:180px 0 120px;
    background:
        linear-gradient(
            135deg,
            #04111F,
            #0B2D4F
        );

    color:white;
    position:relative;

}

.contact-hero h1{

    font-size:4rem;
    margin-bottom:25px;

}

.contact-hero p{

    max-width:700px;
    margin:0 auto 40px;
    color:rgba(255,255,255,.8);

}

.thank-you-section{

    min-height:calc(100vh - 450px);
    display:flex;
    align-items:center;
    justify-content:center;

}

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

footer{


background:
    linear-gradient(
        180deg,
        #04111F,
        #020913
    );

color:white;

padding:80px 0 30px;

border-top:1px solid rgba(255,255,255,.05);


}

.footer-logo{


max-height:70px;

width:auto;

margin-bottom:25px;


}

footer h5{


color:white;

font-size:1rem;

font-weight:700;

margin-bottom:20px;

text-transform:uppercase;

letter-spacing:1px;


}

footer p{


color:rgba(255,255,255,.70);

line-height:1.8;


}

footer a{


color:white;

transition:.3s ease;


}

footer a:hover{


color:var(--accent-light);


}

.footer-contact{


margin-bottom:0;


}

.footer-address{


font-size:.95rem;


}

.footer-divider{


border:0;

height:1px;

background:
    rgba(255,255,255,.08);

margin:40px 0 25px;


}

.footer-small{


font-size:.875rem;

color:rgba(255,255,255,.50);

margin:0;


}

/* Hover glow on logo */

.footer-logo{


transition:.3s ease;


}

.footer-logo:hover{


filter:
    drop-shadow(
        0 0 20px rgba(75,143,216,.35)
    );


}

/* Mobile */

@media(max-width:768px){


footer{

    text-align:center;

}

.footer-small{

    margin-bottom:10px;

}


}


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

@media(max-width:992px){

    .hero h1{

        font-size:3.5rem;

    }

    h2{

        font-size:2.5rem;

    }

}

@media(max-width:768px){

    .section{

        padding:80px 0;

    }

    .hero{

        min-height:700px;

    }

    .hero h1{

        font-size:2rem;

    }

    .hero p{

        font-size:1rem;

    }

    .about-panel h3 {
    	font-size: 2rem;
    }

    h2{

        font-size:2rem;

    }

    .event-card{

        padding:35px;

    }

    .about-panel{

        margin-top:40px;

    }

}

@media(max-width:576px){

    .navbar-brand img{

        height:70px;

    }

    .navbar-brand img{

        height:70px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn{

        width:100%;

    }

}