/* assets/style.css */

/* =========================================
   RESET
========================================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  scroll-behavior:smooth;
}

body{
  font-family:'Segoe UI',sans-serif;
  background:#000;
  color:#fff;
  overflow-x:hidden;
  line-height:1.7;
}

img{
  max-width:100%;
  display:block;
}

a{
  text-decoration:none;
}

ul{
  list-style:none;
}

/* =========================================
   CONTAINER
========================================= */

.container{
  width:90%;
  max-width:1250px;
  margin:auto;
}

/* =========================================
   NAVBAR
========================================= */

.navbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:999;
  background:rgba(0,0,0,.72);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.05);
  padding:18px 0;
}

.nav-wrapper{
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo{
  display:flex;
  align-items:center;
  gap:12px;
}

.theme-logo{
  width:100px;
  height:100px;
  object-fit:contain;
}

.logo-text{
  font-size:28px;
  font-weight:800;
}

.logo-text span{
  color:#E62B1E;
}

.nav-links{
  display:flex;
  gap:30px;
}

.nav-links a{
  color:#fff;
  font-size:15px;
  position:relative;
  transition:.3s;
}

.nav-links a:hover,
.nav-links .active{
  color:#E62B1E;
}

.btn{
  background:#E62B1E;
  color:#fff;
  padding:14px 30px;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.btn:hover{
  background:#ff3b2f;
  transform:translateY(-4px);
}

/* =========================================
   HERO
========================================= */

.hero{
  position:relative;
  height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
}

.hero-video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.overlay{
  position:absolute;
  inset:0;
  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,.55),
    rgba(0,0,0,.88)
  );
}

.hero-content{
  position:relative;
  z-index:5;
  max-width:950px;
}

.theme-badge{
  display:inline-block;
  padding:10px 22px;
  border-radius:40px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  margin-bottom:30px;
  font-size:13px;
  color:#ddd;
  text-transform:uppercase;
}

.hero-theme{
  font-size:80px;
  font-weight:900;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:-4px;
  margin-bottom:25px;
}

.hero-theme span{
  display:block;
  color:#E62B1E;
  text-shadow:
  0 0 25px rgba(230,43,30,.45);
}

.hero-title{
  font-size:34px;
  margin-bottom:25px;
}

.hero-text{
  color:#cfcfcf;
  font-size:18px;
  line-height:1.9;
  max-width:760px;
  margin:auto;
  margin-bottom:40px;
}

.hero-buttons{
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.hero-btn{
  background:#E62B1E;
  color:#fff;
  padding:16px 40px;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.hero-btn:hover{
  background:#ff3b2f;
  transform:translateY(-5px);
}

.btn-outline{
  padding:16px 40px;
  border-radius:50px;
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  transition:.3s;
}

.btn-outline:hover{
  background:#fff;
  color:#000;
}

/* =========================================
   SECTION
========================================= */

.section{
  padding:120px 0;
}

.dark{
  background:#0b0b0b;
}

.section-header{
  text-align:center;
  margin-bottom:70px;
}

.section-header h2{
  font-size:52px;
  font-weight:900;
  margin-bottom:20px;
  text-transform:uppercase;
}

.section-header p{
  max-width:760px;
  margin:auto;
  color:#bdbdbd;
  font-size:18px;
  line-height:1.9;
}

/* =========================================
   TEAM
========================================= */

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:30px;
}

.team-card{
  background:#111;
  border-radius:24px;
  overflow:hidden;
  transition:.35s;
  border:1px solid rgba(255,255,255,.06);
}

.team-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 20px 50px rgba(230,43,30,.12);
}

.team-image{
  height:320px;
  overflow:hidden;
}

.team-image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transition:.4s;
}

.team-card:hover img{
  transform:scale(1.05);
}

.team-content{
  padding:25px;
  text-align:center;
}

.team-content h3{
  font-size:24px;
  margin-bottom:8px;
}

.team-content p{
  color:#aaa;
}

.team-btn-wrap{
  text-align:center;
  margin-top:50px;
}

/* =========================================
   SPEAKERS
========================================= */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:25px;
}

.card{
  background:#111;
  height:260px;
  border-radius:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#E62B1E;
  font-size:24px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.05);
  transition:.35s;
}

.card:hover{
  transform:translateY(-8px);
}

/* =========================================
   SPONSORS
========================================= */

.sponsors-section{
  background:#fff;
  padding:120px 0;
}

.sponsors-section .section-header h2{
  color:#111;
}

.sponsors-section .section-header p{
  color:#666;
}

.sponsors-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:25px;
}

.sponsor-card{
  background:#fff;
  border-radius:22px;
  padding:28px;
  text-align:center;
  border:1px solid #eee;
  transition:.35s;
}

.sponsor-card:hover{
  transform:translateY(-8px);
  box-shadow:
  0 18px 40px rgba(230,43,30,.12);
}

.sponsor-logo-box{
  height:90px;
  background:#fafafa;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:18px;
}

.sponsor-logo-box img{
  max-width:110px;
  max-height:55px;
  object-fit:contain;
}

.sponsor-card h3{
  color:#111;
  font-size:15px;
}

.empty-sponsor{
  background:#111;
  color:#fff;
  padding:40px;
  border-radius:18px;
  text-align:center;
}

/* =========================================
   CTA
========================================= */

.cta{
  padding:130px 0;
  text-align:center;
  background:
  radial-gradient(
    circle at top,
    rgba(230,43,30,.15),
    transparent 50%
  ),
  #050505;
}

.cta h2{
  font-size:64px;
  font-weight:900;
  margin-bottom:25px;
}

.cta p{
  max-width:760px;
  margin:auto;
  color:#bdbdbd;
  font-size:18px;
}

/* =========================================
   FORM
========================================= */

.form{
  max-width:760px;
  margin:auto;
  display:flex;
  flex-direction:column;
  gap:18px;

  background:#111;
  padding:45px;
  border-radius:30px;
}

.form input,
.form textarea{
  background:#1a1a1a;
  border:none;
  padding:18px;
  border-radius:14px;
  color:#fff;
}

.form textarea{
  min-height:180px;
  resize:none;
}

.form button{
  background:#E62B1E;
  color:#fff;
  border:none;
  padding:18px;
  border-radius:50px;
  font-weight:700;
  cursor:pointer;
  transition:.3s;
}

.form button:hover{
  background:#ff3b2f;
}

/* =========================================
   FOOTER
========================================= */

.footer{
  background:#050505;
  padding:80px 0 30px;
  text-align:center;
}

.footer-logo{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:15px;
  margin-bottom:20px;
}

.footer-theme-logo{
  width:55px;
  height:55px;
}

.footer-logo h2{
  font-size:34px;
}

.footer-logo span{
  color:#E62B1E;
}

.footer p{
  max-width:700px;
  margin:auto;
  color:#aaa;
  margin-bottom:25px;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:25px;
  flex-wrap:wrap;
  margin-bottom:25px;
}

.footer-links a{
  color:#fff;
}

.footer-links a:hover{
  color:#E62B1E;
}

.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:20px;
  color:#666;
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:768px){

  .nav-links{
    display:none;
  }

  .hero-theme{
    font-size:30px;
    letter-spacing:-1px;
  }

  .hero-title{
    font-size:24px;
  }

  .hero-text{
    font-size:16px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:center;
  }

  .hero-btn,
  .btn-outline{
    width:100%;
    max-width:280px;
  }

  .section-header h2{
    font-size:34px;
  }

  .cta h2{
    font-size:40px;
  }

  .sponsors-grid{
    grid-template-columns:repeat(2,1fr);
  }

}
/* ===================================
   IMAGE LOGO SYSTEM
=================================== */

.main-logo{
  width:190px;
  height:auto;
  object-fit:contain;
  transition:.3s ease;
}

.main-logo:hover{
  transform:scale(1.03);
}

/* FOOTER LOGO */

.footer-main-logo{
  width:220px;
  margin:auto;
  object-fit:contain;
  opacity:.95;
}

/* REMOVE OLD TEXT LOGO */

.logo-text,
.footer-logo h2{
  display:none;
}

/* MOBILE */

@media(max-width:768px){

  .main-logo{
    width:150px;
  }

  .footer-main-logo{
    width:180px;
  }

}
/* ===================================
   SITELOCK BADGE
=================================== */

.footer-security{
  margin-top:30px;
  margin-bottom:20px;
  text-align:center;
}

.sitelock-badge{
  width:120px;
  height:auto;
  transition:.3s ease;
  opacity:.95;
}

.sitelock-badge:hover{
  transform:translateY(-3px) scale(1.03);
  opacity:1;
}
/* TICKET HELP */

.ticket-help{
  margin-top:20px;
  font-size:14px;
  color:#777;
  line-height:1.7;
}

.ticket-help a{
  color:#E62B1E;
  font-weight:bold;
  text-decoration:none;
}

.ticket-help a:hover{
  text-decoration:underline;
}