/* Blitz Events - Modern, Premium, Responsive Style.css */

/* =============== GLOBAL RESET =============== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
  }
  
  body {
    background: #f5f7fb;
    color: #222;
    overflow-x: hidden;
  }
  
  a {
    text-decoration: none;
  }
  
  /* =============== NAVBAR =============== */
  .navbar {
    width: 100%;
    background: #0d0d0d;
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
  }
  
  .nav-container {
    width: 90%;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    color: #00eaff;
    font-weight: 700;
    letter-spacing: 1px;
  }
  
  .logo img {
    width: 45px;
    height: 45px;
    object-fit: contain;
  }
  
  .nav-container nav a {
    margin-left: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.3s ease;
  }
  
  .nav-container nav a:hover,
  .nav-container nav .active {
    color: #00eaff;
  }
  
  /* =============== HERO SECTION =============== */
  .hero {
    width: 100%;
    height: 58vh;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
  }
  
  .hero-content {
    position: relative;
    text-align: center;
    color: white;
    padding: 20px;
  }
  
  .hero-content h1 {
    font-size: 50px;
    font-weight: 800;
    letter-spacing: 1px;
    text-shadow: 0 4px 20px black;
  }
  
  .hero-content p {
    margin-top: 10px;
    max-width: 650px;
    font-size: 18px;
    opacity: 0.9;
    margin-left: auto;
    margin-right: auto;
  }
  
  /* =============== CONTAINER =============== */
  .container {
    width: 90%;
    margin: 60px auto;
  }
  
  .section-title {
    font-size: 30px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #111;
  }
  
  /* =============== EVENT GRID =============== */
  .event-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
  }
  
  .event-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
  }
  
  .event-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
  }
  
  .event-img img {
    width: 100%;
    height: 210px;
    object-fit: cover;
  }
  
  .event-info {
    padding: 20px;
  }
  
  .event-info h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
  }
  
  .event-info .desc {
    color: #555;
    font-size: 15px;
    margin-bottom: 15px;
    line-height: 1.5;
  }
  
  .btn {
    display: inline-block;
    margin-top: 8px;
    padding: 10px 20px;
    background: #00eaff;
    color: #000;
    border-radius: 8px;
    font-weight: 600;
    transition: 0.3s ease;
  }
  
  .btn:hover {
    background: #00bcd4;
  }
  
  .empty-msg {
    font-size: 18px;
    color: #666;
  }
  
  /* =============== PAST EVENTS =============== */
  .past-events {
    background: #eafaff;
    padding: 60px 0;
  }
  
  .past-wrapper {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
  }
  
  .past-card {
    background: white;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: 0.3s ease;
  }
  
  .past-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.15);
  }
  
  .past-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }
  
  .past-info {
    padding: 15px;
  }
  
  .past-info h4 {
    font-size: 20px;
    margin-bottom: 5px;
    font-weight: 600;
  }
  
  /* =============== FOOTER =============== */
  .footer {
    background: #0d0d0d;
    color: #fff;
    padding: 60px 0;
  }
  
  .footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .footer h3,
  .footer h4 {
    color: #00eaff;
    margin-bottom: 12px;
  }
  
  .footer a {
    display: block;
    color: #ccc;
    margin-bottom: 8px;
    transition: 0.3s ease;
  }
  
  .footer a:hover {
    color: #fff;
  }
  
  .social-icons {
    display: flex;
    gap: 15px;
    margin-top: 10px;
  }
  
  .social-icons img {
    width: 26px;
    cursor: pointer;
    transition: 0.3s ease;
  }
  
  .social-icons img:hover {
    filter: brightness(2);
  }
  
  .footer-bottom {
    margin-top: 30px;
    padding-top: 15px;
    text-align: center;
    border-top: 1px solid #333;
    color: #aaa;
    font-size: 14px;
  }
  
  /* =============== RESPONSIVE =============== */
  @media (max-width: 768px) {
    .hero-content h1 {
      font-size: 36px;
    }
  
    .nav-container nav a {
      margin-left: 15px;
      font-size: 14px;
    }
  
    .event-info h3 {
      font-size: 20px;
    }
  }