
/* Mobile Menu Styles */
#mobileMenu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 40;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    transition: all 0.3s ease;
}

#mobileMenu.hidden {
    display: none;
}

#mobileMenuButton {
    transition: all 0.3s ease;
    outline: none;
    z-index: 50;
}

#mobileMenuButton.active {
    color: #7f1933;
}

#mobileMenu a {
    display: block;
    padding: 0.75rem 0;
    font-size: 1rem;
    color: #4a5568;
    border-bottom: 1px solid #f1f1f1;
    transition: color 0.2s ease;
}

#mobileMenu a:hover {
    color: #7f1933;
}

#mobileMenu .btn-mobile {
    display: block;
    text-align: center;
    margin-top: 1rem;
    background: #7f1933;
    color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: background 0.2s ease;
}

#mobileMenu .btn-mobile:hover {
    background: #6b1730;
}

@media (min-width: 768px) {
    #mobileMenu,
    #mobileMenu.hidden {
        display: none !important;
    }
    
    #mobileMenuButton {
        display: none !important;
    }
}
/* Organizer portal button styles */
.organizer-btn {
  transition: all 0.3s ease;
  cursor: pointer;
}

.organizer-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.organizer-dropdown a {
  display: block;
  padding: 0.5rem 1rem;
  transition: all 0.2s ease;
}
.organizer-dropdown a:hover {
  background: rgba(0,0,0,0.05);
}

/* Improved dropdown transitions */
.group:hover .group-hover\:block {
  display: block;
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}
:root {
  --primary: #7f1933;
--primary-light: #805ad5;
  --secondary: #553c9a;
--accent: #3b82f6;
--light: #f8f9fa;
  --dark: #212529;
  --gray: #6c757d;
  --border-radius: 12px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
  --transition: all 0.3s ease;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background-color: #f5f5f7;
}

h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary);
  color: white;
}

.card {
  background: white;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-title {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.section-title:after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 4px;
  background: var(--primary);
}

.navbar {
  background: white;
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-weight: 800;
  font-size: 1.5rem;
  color: var(--primary);
}
.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.nav-link-mobile {
    font-weight: 500;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    display: block;
}

#mobileMenu {
    transition: all 0.3s ease;
}
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: white;
  padding: 6rem 0;
}

.input-field {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(127, 25, 51, 0.1);
}

.badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.badge-primary {
  background-color: rgba(127, 25, 51, 0.1);
  color: var(--primary);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.animate-fadeIn {
  animation: fadeIn 0.6s ease-out forwards;
}
