body {
    background: #0D0D0D;
}

/* Header texts */
.header-section {
    
    padding: 110px 114px 50px;
     position: relative;
    overflow: hidden;
    z-index: 1;
}

.ticket-heading {
   font-weight: 700;
   font-family: 'Inter', sans-serif;
   font-size: 2rem;
   color: #FFFFFF;
   padding-bottom: 20px;
}
.ticket-sub {
   color: #9AA4B2;
   font-weight: 500;
   font-size: 1rem;
   font-family: 'Inter', sans-serif;

}

/* Events Section */
.events-section {
    
    padding: 0px 20px;
    position: relative;
    overflow: hidden;
}

.events-container {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
}

/* Decorative Text Elements */
.decorative-text-events {
    position: absolute;
    z-index: 1;
}

.decorative-text-events.top-left {
    top: 0;
    left: -50px;
    transform: rotate(-45deg);
}

.decorative-text-events.bottom-right {
    bottom: 0;
    right: -50px;
    transform: rotate(-45deg);
}

.decorative-text-events img {
    height: 120px;
    width: auto;
    opacity: 0.8;
}

/* Events Heading */
.events-heading {
    font-family: "Anton", sans-serif;
    font-size: 2rem;
    font-weight: 400;
    color: white;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: 2px;
}

/* Events Grid */
.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(373px, 1fr));
     gap: 40px;
    margin-bottom: 60px;
}

/* Event Card */
.event-card-link {
    display: block;
    text-decoration: none;
    color: inherit; 
    text-decoration-line: none;
}

.event-card {
    background: #131316;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 580px;
    border: solid 1px #FFFFFF0F;
    /* width: 373px;
    height: 474px; */
}

.event-card:hover {
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
}

.event-image {
    position: relative;
    width: 100%;
    height: 228px;
    overflow: hidden;
    filter: brightness(80%);
}

.event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image img {
    transform: scale(1.25);
}

/* Image Overlay Text */
.event-image-title {
    position: absolute;
    bottom: 60px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Anton", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
    line-height: 1;
    width: 90%;
}

/* Event Details */
.event-details {
    padding: 30px;
}

/* Event Badge - Now inside container */
.event-badge {
    display: inline-block;
    padding: 5px 10px 5px 10px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 35px;
}

.event-badge.almost-full {
    background: #56423B5C;
    color: #F04400;
}

.event-badge.coming-soon {
    background: #56423B5C;
    color: #F04400;
}

.event-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: white;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: 0%;
}

.event-date,
.event-time,
.event-location
{
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    color: #9AA4B2;
    margin-bottom: 19px;
}

.event-price {
    font-weight: 500;
    color: white;
    margin-top: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

/* Hamburger Menu Styles */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s ease;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .navbar {
        background-color: #0D0D0D;
        box-shadow: none !important; /* remove shadow if any */
    }
     .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 9999;
    width: 36px;
    height: 36px;
  }

  .nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff; /* ensure contrast on dark background */
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  /* hide desktop nav menu on mobile until toggled */
  .nav-menu {
    display: none;
  }
    .header-section {
        padding: 80px 0px 0px;
        align-items: center;
        text-align: center;
    }

    .ticket-heading {
        font-size: 2rem;
    }

    .ticket_sub {
        font-size: 1rem;
        margin: 0;
        padding: 0;
    }

    .events-section {
        padding: 60px 20px;
    }

    .events-heading {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 40px;
    }

    .event-image {
        height: 228px;
    }

    .event-image-title {
        font-size: 1.5rem;
    }

    .event-details {
        padding: 20px;
    }

    .event-title {
        font-size: 1.1rem;
    }

    .decorative-text-events {
        display: none;
    }

    .all-btn {
        width: calc(100% - 200px);
    }
}

@media (max-width: 480px) {
   .header-section {
        padding: 70px 15px 5px;
        align-items: center;
        text-align: center; 
    }

    .ticket-heading {
        font-size: 1.5rem;
        text-align: center;
        margin-bottom: 0;
    }

    .ticket_sub {
        font-size: 0.95rem;
        text-align: center;
        color: #9AA4B2;
        font-weight: 400;
    }
    .events-section {
        padding: 40px 15px;
    }

    .events-heading {
        font-size: 1.75rem;
    }

    .event-image {
        height: 200px;
    }

    .event-image-title {
        font-size: 1.25rem;
    }

    .event-title {
        font-size: 1rem;
    }

    .event-date,
    .event-time,
    .event-location,
    .event-price {
        font-size: 0.9rem;
    }
}