/* =======================================================
EVENT LANDING 2026
Bootstrap 5.3
Author: ChatGPT
======================================================= */

/*=======================================================
ROOT
=======================================================*/

:root{

    --primary:#3B82F6;
    --primary-dark:#2563EB;

    --secondary:#22C55E;

    --dark:#0F172A;
    --dark-light:#1E293B;

    --light:#F8FAFC;

    --white:#ffffff;

    --gray:#94A3B8;

    --border:rgba(255,255,255,.08);

    --glass:rgba(255,255,255,.08);

    --shadow:0 15px 45px rgba(0,0,0,.20);

    --radius:20px;

    --transition:.35s ease;

}

/*=======================================================
RESET
=======================================================*/

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Inter',sans-serif;

    background:var(--light);

    color:var(--dark);

    overflow-x:hidden;

    line-height:1.7;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    transition:var(--transition);

}

section{

    position:relative;

}

.py-5{

    padding-top:7rem!important;
    padding-bottom:7rem!important;

}

/*=======================================================
TYPOGRAPHY
=======================================================*/

h1,h2,h3,h4,h5{

    font-weight:700;

    line-height:1.2;

    color:var(--dark);

}

.display-3{

    font-weight:800;

    letter-spacing:-2px;

}

.lead{

    font-size:1.2rem;

    color:#E2E8F0;

}

.text-muted{

    color:#64748B!important;

}

/*=======================================================
BUTTONS
=======================================================*/

.btn{

    border-radius:50px;

    padding:.95rem 2rem;

    transition:var(--transition);

    font-weight:600;

}

.btn-primary{

    background:var(--primary);

    border:none;

}

.btn-primary:hover{

    background:var(--primary-dark);

    transform:translateY(-3px);

    box-shadow:0 15px 35px rgba(37,99,235,.35);

}

.btn-outline-light{

    border:2px solid rgba(255,255,255,.5);

}

.btn-outline-light:hover{

    background:white;

    color:var(--dark);

}

/*=======================================================
NAVBAR
=======================================================*/

.navbar{

    padding:1.2rem 0;

    transition:.4s;

    background:transparent;

}

.navbar.scrolled{

    background:rgba(15,23,42,.82);

    backdrop-filter:blur(14px);

    box-shadow:0 8px 30px rgba(0,0,0,.15);

}

.navbar-brand{

    font-size:1.4rem;

    letter-spacing:2px;

}

.nav-link{

    color:white!important;

    margin-left:20px;

    font-weight:500;

    position:relative;

}

.nav-link::after{

    content:"";

    position:absolute;

    left:0;
    bottom:-6px;

    width:0;

    height:2px;

    background:white;

    transition:.3s;

}

.nav-link:hover::after{

    width:100%;

}

/*=======================================================
HERO
=======================================================*/

.hero-section{

    position:relative;

    min-height:100vh;

    overflow:hidden;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#000;

}

.hero-video{

    position:absolute;

    top:50%;

    left:50%;

    width:100%;

    height:100%;

    object-fit:cover;

    transform:translate(-50%,-50%);

    z-index:1;

}

.hero-overlay{

    position:absolute;

    inset:0;

    z-index:2;

    background:
        linear-gradient(
            to bottom,
            rgba(15,23,42,.55),
            rgba(15,23,42,.78)
        );

}

.hero-section .container{

    position:relative;

    z-index:5;

}

.hero-section h1{

    color:#fff;

    font-size:clamp(3rem,6vw,5.5rem);

    margin-bottom:1rem;

    text-shadow:0 5px 25px rgba(0,0,0,.35);

}

.hero-section p{

    max-width:760px;

    margin:auto;

}

.hero-section .btn{

    margin-top:15px;

}

/*=======================================================
COUNTDOWN
=======================================================*/

.countdown{

    margin-top:70px;

}

.count-box{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

    border-radius:18px;

    padding:25px 15px;

    transition:var(--transition);

}

.count-box:hover{

    transform:translateY(-8px);

    background:rgba(255,255,255,.12);

}

.count-box span{

    display:block;

    color:#fff;

    font-size:2.6rem;

    font-weight:700;

    line-height:1;

}

.count-box small{

    display:block;

    margin-top:10px;

    color:#CBD5E1;

    text-transform:uppercase;

    letter-spacing:2px;

    font-size:.75rem;

}

/*=======================================================
ABOUT
=======================================================*/

#about{

    background:#fff;

}

#about h2{

    font-size:2.6rem;

    margin-bottom:20px;

}

#about p{

    font-size:1.15rem;

    color:#64748B;

}

.feature-box{

    background:white;

    border-radius:20px;

    padding:35px;

    box-shadow:var(--shadow);

    transition:var(--transition);

    height:100%;

}

.feature-box:hover{

    transform:translateY(-10px);

}

.feature-icon{

    width:70px;

    height:70px;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    background:linear-gradient(
        135deg,
        var(--primary),
        #60A5FA
    );

    color:white;

    font-size:28px;

    margin-bottom:25px;

}

/*=======================================================
TIMELINE
=======================================================*/

.timeline{

    position:relative;

    max-width:900px;

    margin:auto;

}

.timeline::before{

    content:"";

    position:absolute;

    left:30px;

    top:0;

    width:3px;

    height:100%;

    background:var(--primary);

}

.timeline-item{

    position:relative;

    margin-left:80px;

    margin-bottom:45px;

    background:#fff;

    padding:30px;

    border-radius:18px;

    box-shadow:var(--shadow);

}

.timeline-item::before{

    content:"";

    position:absolute;

    left:-63px;

    top:32px;

    width:20px;

    height:20px;

    border-radius:50%;

    background:var(--primary);

    border:5px solid #fff;

    box-shadow:0 0 0 5px rgba(59,130,246,.20);

}

.timeline-item h5{

    color:var(--primary);

    margin-bottom:10px;

}

/*=======================================================
SPEAKERS
=======================================================*/

#speakers{

    background:#f8fafc;

}

.speaker-card{

    background:#fff;

    border-radius:24px;

    overflow:hidden;

    text-align:center;

    box-shadow:0 15px 40px rgba(15,23,42,.08);

    transition:all .35s ease;

}

.speaker-card:hover{

    transform:translateY(-12px);

    box-shadow:0 25px 60px rgba(15,23,42,.15);

}

.speaker-card img{

    width:100%;

    height:380px;

    object-fit:cover;

    transition:transform .5s;

}

.speaker-card:hover img{

    transform:scale(1.05);

}

.speaker-card h5{

    margin-top:25px;

    font-weight:700;

}

.speaker-card p{

    color:#64748B;

    margin-bottom:25px;

}

/*=======================================================
GALLERY
=======================================================*/

.gallery-img{

    width:100%;

    height:280px;

    object-fit:cover;

    border-radius:20px;

    cursor:pointer;

    transition:all .45s ease;

    box-shadow:0 12px 30px rgba(15,23,42,.08);

}

.gallery-img:hover{

    transform:scale(1.04);

    box-shadow:0 25px 60px rgba(15,23,42,.18);

}

/*=======================================================
SPONSOR
=======================================================*/

.sponsor-logo{

    opacity:.65;

    transition:.3s;

    filter:grayscale(100%);

}

.sponsor-logo:hover{

    opacity:1;

    filter:none;

    transform:scale(1.05);

}

/*=======================================================
FAQ
=======================================================*/

.accordion-item{

    border:none;

    margin-bottom:18px;

    border-radius:16px !important;

    overflow:hidden;

    box-shadow:0 8px 30px rgba(15,23,42,.05);

}

.accordion-button{

    font-weight:600;

    padding:22px;

}

.accordion-button:not(.collapsed){

    background:#EFF6FF;

    color:#2563EB;

}

.accordion-button:focus{

    box-shadow:none;

}

.accordion-body{

    color:#64748B;

    line-height:1.8;

}

/*=======================================================
CONTACT
=======================================================*/

#contact{

    background:white;

}

.form-control{

    border-radius:14px;

    padding:16px;

    border:1px solid #E2E8F0;

    box-shadow:none;

}

.form-control:focus{

    border-color:#3B82F6;

    box-shadow:0 0 0 .25rem rgba(59,130,246,.12);

}

/*=======================================================
FOOTER
=======================================================*/

.footer{

    background:#0F172A;

    color:#CBD5E1;

    padding:80px 0 40px;

}

.footer h4,
.footer h5{

    color:#fff;

}

.footer hr{

    border-color:rgba(255,255,255,.08);

    margin:40px 0;

}

.footer a{

    color:#CBD5E1;

}

.footer a:hover{

    color:#fff;

}

.social{

    display:flex;

    justify-content:flex-end;

    gap:15px;

}

.social a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:rgba(255,255,255,.08);

    display:flex;

    align-items:center;

    justify-content:center;

    transition:.35s;

}

.social a:hover{

    background:#3B82F6;

    transform:translateY(-5px);

}

/*=======================================================
SCROLL TOP
=======================================================*/

#scrollTop{

    position:fixed;

    right:25px;

    bottom:25px;

    width:54px;

    height:54px;

    border:none;

    border-radius:50%;

    background:#3B82F6;

    color:#fff;

    cursor:pointer;

    display:none;

    z-index:9999;

    box-shadow:0 12px 30px rgba(59,130,246,.35);

    transition:.3s;

}

#scrollTop:hover{

    transform:translateY(-4px);

    background:#2563EB;

}

/*=======================================================
REVEAL ANIMATION
=======================================================*/

.reveal{

    opacity:0;

    transform:translateY(50px);

    transition:all .8s ease;

}

.reveal.active{

    opacity:1;

    transform:none;

}

/*=======================================================
SECTION TITLE
=======================================================*/

section h2{

    font-size:clamp(2rem,4vw,3rem);

    margin-bottom:20px;

}

section p{

    font-size:1.05rem;

}

/*=======================================================
LOCATION
=======================================================*/

iframe{

    border:0;

    border-radius:20px;

    box-shadow:0 15px 40px rgba(15,23,42,.10);

}

/*=======================================================
UTILITY
=======================================================*/

.section-title{

    margin-bottom:60px;

    text-align:center;

}

.section-title h2{

    font-size:clamp(2rem,4vw,3rem);

    font-weight:700;

}

.section-title p{

    max-width:700px;

    margin:auto;

    color:#64748B;

}

.shadow-soft{

    box-shadow:0 20px 50px rgba(15,23,42,.08);

}

.rounded-xl{

    border-radius:24px;

}

.glass{

    background:rgba(255,255,255,.08);

    backdrop-filter:blur(18px);

    border:1px solid rgba(255,255,255,.15);

}

/*=======================================================
SCROLLBAR
=======================================================*/

::-webkit-scrollbar{

    width:10px;

}

::-webkit-scrollbar-track{

    background:#E2E8F0;

}

::-webkit-scrollbar-thumb{

    background:#3B82F6;

    border-radius:20px;

}

::-webkit-scrollbar-thumb:hover{

    background:#2563EB;

}

/*=======================================================
SELECTION
=======================================================*/

::selection{

    background:#3B82F6;

    color:#fff;

}

/*=======================================================
IMAGE HOVER
=======================================================*/

img{

    transition:transform .35s ease;

}

img:hover{

    transform:translateY(-2px);

}

/*=======================================================
LINKS
=======================================================*/

a{

    transition:all .30s ease;

}

/*=======================================================
ANIMATION
=======================================================*/

@keyframes fadeUp{

    from{

        opacity:0;

        transform:translateY(50px);

    }

    to{

        opacity:1;

        transform:none;

    }

}

.fade-up{

    animation:fadeUp .8s ease forwards;

}

@keyframes pulse{

    0%{

        transform:scale(1);

    }

    50%{

        transform:scale(1.04);

    }

    100%{

        transform:scale(1);

    }

}

.pulse{

    animation:pulse 2.5s infinite;

}

/*=======================================================
RESPONSIVE
=======================================================*/

@media (max-width:1200px){

.hero-section h1{

font-size:4rem;

}

}

@media (max-width:992px){

.navbar{

padding:15px 0;

}

.hero-section{

text-align:center;

}

.hero-section h1{

font-size:3rem;

}

.timeline::before{

display:none;

}

.timeline-item{

margin-left:0;

}

.timeline-item::before{

display:none;

}

.social{

justify-content:center;

margin-top:30px;

}

.footer{

text-align:center;

}

}

@media (max-width:768px){

.py-5{

padding-top:80px!important;

padding-bottom:80px!important;

}

.display-3{

font-size:2.4rem;

}

.count-box{

margin-bottom:15px;

padding:18px;

}

.count-box span{

font-size:2rem;

}

.gallery-img{

height:220px;

}

.speaker-card img{

height:300px;

}

.btn{

width:100%;

margin-bottom:15px;

}

.hero-section .btn{

margin-right:0!important;

}

}

@media (max-width:576px){

.hero-section{

min-height:90vh;

}

.hero-section h1{

font-size:2rem;

}

.lead{

font-size:1rem;

}

.navbar-brand{

font-size:1.1rem;

}

.timeline-item{

padding:20px;

}

}

/*=======================================================
per page.html
=======================================================*/

/*=======================================================
PAGE HEADER
=======================================================*/

.page-header{

    position:relative;

    height:55vh;

    min-height:420px;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;

    background:#0F172A;

}

.page-header-image{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    object-fit:cover;

}

.page-overlay{

    position:absolute;

    inset:0;

    background:linear-gradient(
        rgba(15,23,42,.55),
        rgba(15,23,42,.82)
    );

}

.page-header .container{

    position:relative;

    z-index:2;

}

.page-header h1{

    color:#fff;

    font-size:clamp(2.8rem,5vw,4.5rem);

    margin-bottom:15px;

}

.page-header p{

    color:#E2E8F0;

    font-size:1.2rem;

    margin-bottom:0;

}

#scarica li a {
    color:#fff;
}
