/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter";
}

/* Top navigation container */
.topnav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #FFFFFF;
  color:#000000
}

/* Hamburger menu styles */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000; /* Ensure hamburger menu is always clickable */
}

.hamburger-menu .bar {
    background-color: #000000;
    height: 4px;
    width: 30px;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Hamburger menu 'X' transformation */
.hamburger-menu.active #bar1 {
    transform: rotate(45deg);
    position: relative;
    top: 7px;
}

.hamburger-menu.active #bar2 {
    opacity: 0;
}

.hamburger-menu.active #bar3 {
    transform: rotate(-45deg);
    position: relative;
    top: -7px;
}

/* Logo styling */
.logo {
    text-align: center;
    flex-grow: 1;
}

/* Ticket button styling */
.ticket-btn .ticket-link {
    font-size: 16px;
    font-weight: 500;

    text-decoration: none;
    background-color: #000000;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s ease;
}

.ticket-btn .ticket-link:hover {
    background-color: #575757;
}

/* Navigation links styling */
.nav-links {
    font-size: 3rem;
    font-weight: 700;
    list-style: none;
    display: flex;
    flex-grow: 1;
    justify-content: center;
    margin-left: 20px;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: #000000;
    text-decoration: none;
    padding: 10px;
    transition: background-color 0.3s ease;
}

.nav-links a:hover {
    color: #575757;
}

.nav-links {
    top: 0;
    width: 100%;
    height: 100vh;
    background-color: #FFFFFF;
    text-align: center;
    display: none; /* Hide by default */
    justify-content: center;
    flex-direction: column;
    z-index: 100;
}

.nav-links.active {
    display: flex; /* Show when hamburger is clicked */
}

.nav-links li {
    margin: 15px 0;
}

/* Always visible hamburger on desktop and mobile */
.hamburger-menu {
    display: flex;  /* Ensure hamburger is visible on both desktop and mobile */
}