/* Font Face Definitions */
@font-face {
  font-family: 'Sofia Pro';
  src: url('../assets/fonts/SofiaProRegular.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Burford';
  src: url('../assets/fonts/Burford.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Header Styles */
.main-header {
  background-color: white;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

/* Logo Styles */
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 50px;
  width: auto;
}

/* Desktop Navigation */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  font-family: 'Burford', serif;
  font-weight: 400;
  font-size: 24px;
  letter-spacing: 0px;
  color: #333;
  padding: 10px 0;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #D93E36;
}

/* Desktop Dropdown */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  padding: 10px 0;
  min-width: 200px;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-link {
  display: block;
  padding: 8px 20px;
  text-decoration: none;
  color: #555;
  font-family: 'Burford', serif;
  font-size: 16px;
  line-height: 1;
  transition: background-color 0.2s ease;
}

.dropdown-link:hover {
  background-color: #f5f5f5;
  color: #D93E36;
}

/* Get Tickets Button */
.get-tickets-btn {
  font-family: 'Burford', serif;
  font-size: 12px;
  letter-spacing: 0.5px;
  padding: 10px 20px;
  white-space: nowrap;
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #333;
  transition: all 0.3s ease;
}

.mobile-menu-btn.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  background: white;
  border-top: 1px solid #eee;
}

.mobile-nav.active {
  display: block;
}

.mobile-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-item {
  border-bottom: 1px solid #f5f5f5;
}

.mobile-nav-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 15px 0;
  background: none;
  border: none;
  font-family: 'Burford', serif;
  font-weight: 400;
  font-size: 22px;
  letter-spacing: 0.5px;
  color: #333;
  cursor: pointer;
  text-align: left;
}

.chevron-down {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.mobile-nav-link.active .chevron-down {
  transform: rotate(180deg);
}

.mobile-submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #f9f9f9;
}

.mobile-submenu.active {
  max-height: 300px;
}

.mobile-dropdown-link {
  display: block;
  padding: 12px 20px;
  text-decoration: none;
  color: #666;
  font-family: 'Burford', serif;
  font-size: 16px;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.mobile-dropdown-link:hover {
  background-color: #f0f0f0;
  color: #D93E36;
}

.mobile-dropdown-link:last-child {
  border-bottom: none;
}

/* Responsive Design */
@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .header-content {
    padding: 12px 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  
  .logo-img {
    height: 35px;
  }
} 