* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: transparent; /* Invisible track */
}

::-webkit-scrollbar-thumb {
    background: rgba(30, 58, 138, 0.3); /* Transparent blue thumb */
    border-radius: 5px;
}

    ::-webkit-scrollbar-thumb:hover {
        background: rgba(30, 58, 138, 0.5); /* Slightly more opaque on hover */
    }

/* Firefox scrollbar */
html {
    scrollbar-color: rgba(30, 58, 138, 0.3) transparent; /* Blue thumb, invisible track */
    scrollbar-width: thin;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--primary-gradient);
    min-height: 100vh;
}

/* Header */
header {
    padding: 10px 0;
    background: var(--header-gradient);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px var(--shadow-light);
}

nav {
    width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    position: relative;
}

.logo {
    cursor: pointer;
}

    .logo img {
        width: 140px;
        height: auto;
    }

.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--nav-link-color);
    font-size: 24px;
    cursor: pointer;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
    position: relative;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

    .hamburger::before,
    .hamburger::after,
    .hamburger span {
        content: '';
        display: block;
        width: 22px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

.nav-links {
    display: flex;
    gap: 20px;
    list-style: none;
    align-items: center;
}

    .nav-links.active {
        display: flex;
    }

    .nav-links a {
        background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        transition: all 0.3s ease;
        border: none;
        cursor: pointer;
        padding: 8px 16px;
        border-radius: 20px;
    }

        .nav-links a:hover,
        .nav-links a.active {
            background: rgba(227, 24, 55, 0.1);
            -webkit-text-fill-color: #E31837;
        }

/* Profile Picture and Dropdown */
.profile-container {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-gradient);
    transition: all 0.3s ease;
}

    .profile-pic:hover {
        transform: scale(1.1);
        box-shadow: 0 4px 12px var(--overlay-light);
    }

    .profile-pic img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.profile-initials {
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

.profile-dropdown {
    display: none;
    position: absolute;
    top: 50px;
    right: 0;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 12px var(--shadow-medium);
    z-index: 1001;
    min-width: 150px;
}

    .profile-dropdown.active {
        display: block;
    }

    .profile-dropdown a,
    .profile-dropdown button {
        display: block;
        padding: 12px 20px;
        text-decoration: none;
        color: var(--text-dark);
        font-size: 14px;
        font-weight: 500;
        border: none;
        background: none;
        width: 100%;
        text-align: left;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .profile-dropdown a:hover,
        .profile-dropdown button:hover {
            background: var(--bg-light);
            color: var(--primary-dark-blue);
        }

/* Hero Section */
.hero {
    margin-top: 90px;
    padding: 40px 20px;
    text-align: center;
    color: white;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.hero-content p {
    font-size: 20px;
    opacity: 0.9;
    color: white;
}

.hero-image {
    width: 100%;
    height: 500px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    margin-top: 20px;
}

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

/* Event Carousel Section */
.events-section {
    max-width: 1600px;
    margin: 0 auto;
    padding: 40px 20px;
}

.carousel-container {
    position: relative;
    padding: 20px 0;
}

.carousel-viewport {
    overflow: hidden;
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 30px;
}

.event-card {
    min-width: 350px;
    max-width: 350px;
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 0 0 auto;
}

    .event-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px var(--shadow-heavy);
    }

.event-image {
    width: 100%;
    height: 200px;
    position: relative;
    overflow: hidden;
}

    .event-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.event-content {
    padding: 20px;
}

.event-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.event-description {
    font-size: 14px;
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: 15px;
}

.event-price {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-dark-blue);
    margin-bottom: 15px;
}

.book-now {
    width: 100%;
    padding: 12px 24px;
    background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; /* Remove underline */
}

    .book-now:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 20px var(--shadow-heavy);
        text-decoration: none; /* Ensure no underline on hover */
    }

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    background: var(--hover-bg);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: all;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px var(--shadow-medium);
}

    .carousel-btn:hover {
        background: var(--white);
        transform: scale(1.1);
    }

    .carousel-btn:disabled {
        opacity: 0.5;
        cursor: not-allowed;
    }

        .carousel-btn:disabled:hover {
            transform: scale(1);
        }

    .carousel-btn svg {
        width: 24px;
        height: 24px;
        fill: var(--primary-dark-blue);
    }

/* Carousel Indicators */
.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.indicator {
    width: 10px;
    height: 10px;
    background: var(--overlay-dark);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

    .indicator.active {
        background: var(--white);
        transform: scale(1.2);
    }

/* Footer */
footer {
    background: var(--header-gradient);
    backdrop-filter: blur(10px);
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

    .footer-links a {
        background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

        .footer-links a:hover {
            opacity: 1;
            -webkit-text-fill-color: #E31837;
        }

.footer-social {
    display: flex;
    gap: 15px;
    justify-content: center;
}

    .footer-social a {
        background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 20px;
        opacity: 0.9;
        transition: opacity 0.3s ease;
    }

        .footer-social a:hover {
            opacity: 1;
            -webkit-text-fill-color: #E31837;
        }

.footer-copy {
    margin-top: 20px;
    font-size: 14px;
    opacity: 0.8;
    width: 100%;
    color: white;
}

/* Responsive Design */
@media (max-width: 1024px) {
   .hero {
       margin-top: 100px;
       padding: 35px 15px;
}

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .hero-image {
        height: 350px;
    }

    .events-section {
        padding: 30px 15px;
    }

    .event-card {
        min-width: 280px;
 max-width: 280px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
    }

        .carousel-btn svg {
          width: 20px;
    height: 20px;
        }
}

@media (max-width: 768px) {
    nav {
        display: flex;
    justify-content: center;
  position: relative;
        align-items: center;
    }

    .logo {
        display: flex;
   justify-content: center;
        align-items: center;
        flex-grow: 1;
        position: relative;
z-index: 1002;
    }

        .logo img {
            width: 120px;
         height: auto;
        }

    .hamburger {
  display: flex;
        position: absolute;
      left: 10px;
   top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }

    .profile-pic {
   position: absolute;
    right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1003;
    }

    .nav-links {
 display: none;
     flex-direction: column;
        position: absolute;
        top: 60px;
        left: 0;
     width: 100%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
    padding: 20px;
        box-shadow: 0 8px 20px var(--shadow-medium);
   border-radius: 8px;
        border-bottom: 2px solid rgba(227, 24, 55, 0.3);
        z-index: 1001;
    }

        .nav-links.active {
            display: flex;
        }

        .nav-links li {
    width: 100%;
       text-align: center;
       margin: 10px 0;
        }

        .nav-links a {
            display: block;
    padding: 12px;
         font-size: 16px;
    background: linear-gradient(135deg, #E31837 0%, #1E3A8A 50%, #DC2626 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            border-radius: 10px;
  transition: background 0.3s ease;
            font-weight: 600;
 }

         .nav-links a:hover,
            .nav-links a.active {
              background: rgba(227, 24, 55, 0.1);
                -webkit-text-fill-color: #E31837;
            }

    .profile-container {
        margin-left: auto;
    }

    .profile-dropdown {
        top: 60px;
     right: 10px;
    }

    .hero {
        margin-top: 90px;
    padding: 30px 15px;
    }

    .hero-content h1 {
     font-size: 30px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .hero-image {
        height: 280px;
    }

  .events-section {
        padding: 20px 10px;
        margin-top: 0.5rem;
    }

    .event-card {
      min-width: 300px;
        max-width: 300px;
    }

    .carousel-controls {
        display: none;
    }
}

@media (max-width: 480px) {
    header {
padding: 8px 0;
    }

    nav {
   padding: 0 10px;
    }

    .logo img {
      width: 100px;
    }

    .hero {
        margin-top: 85px;
        padding: 25px 10px;
    }

    .hero-content h1 {
      font-size: 24px;
    }

    .hero-content p {
    font-size: 12px;
    }

    .hero-image {
        height: 200px;
    }

    .event-card {
        min-width: 100%;
        max-width: 100%;
    }

    .event-image {
        height: 160px;
    }

    .events-section {
  padding: 15px 10px;
        margin-top: 0.5rem;
    }

    .carousel-container {
   padding: 10px 0;
 }

    .book-now {
 padding: 10px 16px;
        font-size: 12px;
        text-decoration: none;
    }

  .footer-content {
        padding: 20px 10px;
    }

    .footer-links a {
font-size: 12px;
    }

    .footer-social a {
        font-size: 16px;
    }

    .footer-copy {
        font-size: 12px;
    }
}

@media (max-width: 360px) {
    .logo img {
        width: 50px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .hero-image {
        height: 180px;
    }

    .event-title {
        font-size: 16px;
    }

    .event-description {
        font-size: 12px;
    }

    .event-price {
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .events-section,
    .footer-content {
        max-width: 1800px;
    }

    .hero-image {
        height: 600px;
    }

    .event-card {
        min-width: 360px;
        max-width: 360px;
    }
}
