:root {
  /* Color system */
  --primary-color: #2a7fff;
  --primary-dark: #1a5bb3;
  --primary-light: #6aa8ff;
  
  --secondary-color: #34c759;
  --secondary-dark: #28a745;
  --secondary-light: #5eda7e;
  
  --accent-color: #ff3b58;
  --accent-dark: #e01a39;
  --accent-light: #ff6b82;
  
  --dark-color: #1a1a2e;
  --dark-color-light: #2a2a40;
  
  --light-color: #f8f9fa;
  --light-color-dark: #e9ecef;
  
  --gray-color: #6c757d;
  --gray-color-light: #adb5bd;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color), var(--primary-light));
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
  --gradient-accent: linear-gradient(135deg, var(--accent-color), var(--accent-light));
  --gradient-dark: linear-gradient(135deg, var(--dark-color), var(--dark-color-light));
  
  /* Typography */
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Nunito', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
  
  /* Border radius */
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* Base Styles */
body {
  font-family: var(--font-body);
  color: var(--dark-color);
  background-color: var(--light-color);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.75rem;
}

p {
  margin-bottom: 1.5rem;
}

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

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

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  position: relative;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.title-underline {
  height: 4px;
  width: 50px;
  background: var(--gradient-primary);
  margin: 0 auto 2rem;
  border-radius: 2px;
}

/* Button Styles - Global */
.btn {
  font-family: var(--font-heading);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::after {
  content: '';
  position: absolute;
  left: -20%;
  top: -50%;
  width: 140%;
  height: 200%;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(35deg);
  transition: transform var(--transition-normal);
  z-index: -1;
}

.btn:hover::after {
  transform: rotate(35deg) translateX(10%);
}

.btn-primary {
  background: var(--gradient-primary);
  border: none;
  color: white;
  box-shadow: var(--shadow-sm);
}

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

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

.btn-outline-primary:hover, .btn-outline-primary:focus {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--gradient-secondary);
  border: none;
  color: white;
}

.btn-secondary:hover, .btn-secondary:focus {
  background: var(--secondary-dark);
  color: white;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

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

.btn-outline-light:hover, .btn-outline-light:focus {
  background: var(--light-color);
  color: var(--primary-color);
  transform: translateY(-2px);
}

.btn-link {
  padding: 0;
  background: none;
  color: var(--primary-color);
  font-weight: 600;
  letter-spacing: 0.5px;
  position: relative;
}

.btn-link::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background: var(--gradient-primary);
  transition: width var(--transition-fast);
}

.btn-link:hover::after {
  width: 100%;
}

/* Navbar Styles */
.navbar {
  padding: 1rem 0;
  transition: all var(--transition-normal);
  background-color: rgba(26, 26, 46, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.navbar-brand img {
  transition: all var(--transition-normal);
  max-width: 60px;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.5rem 1rem;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.navbar-dark .navbar-nav .nav-link:hover, 
.navbar-dark .navbar-nav .nav-link:focus {
  color: white;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 8rem 0 6rem;
}

.hero-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(26, 26, 46, 0.8), rgba(26, 26, 46, 0.6));
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  animation: fadeInDown 1s ease;
}

.hero-section .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
  animation: fadeInUp 1s ease 0.4s both;
}

.min-vh-80 {
  min-height: 80vh;
}

/* Particle Animation */
.particle-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}

.particles {
  position: absolute;
  width: 100%;
  height: 100%;
  background: transparent;
}

@keyframes particle-animation {
  0% {
    opacity: 0;
    transform: translateY(0) rotate(0deg);
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0;
    transform: translateY(-20px) rotate(360deg);
  }
}

.particle-container::before,
.particle-container::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
}

.particle-container::before {
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
}

/* Vision Section */
.vision-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.vision-content {
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  background: white;
  box-shadow: var(--shadow-md);
  height: 100%;
  transition: transform var(--transition-normal);
}

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

.vision-content h3 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  position: relative;
}

.vision-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.vision-image {
  overflow: hidden;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.vision-image img {
  transition: transform var(--transition-slow);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vision-image:hover img {
  transform: scale(1.05);
}

/* Features Section */
.features-section {
  background-color: var(--light-color-dark);
  padding: 5rem 0;
}

.feature-card {
  background: white;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.card-image {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.feature-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  padding: 1.5rem;
  text-align: center;
}

.card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--dark-color);
}

.feature-card .card-content p {
  color: var(--gray-color);
}

/* Events Section */
.events-section {
  background-color: white;
  padding: 5rem 0;
}

.event-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.event-card .card-image {
  position: relative;
  width: 100%;
  height: 220px;
}

.event-date {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient-primary);
  color: white;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  font-family: var(--font-heading);
  font-weight: 700;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.event-date span {
  font-size: 1.2rem;
  line-height: 1;
}

.event-date span:first-child {
  font-size: 1.8rem;
}

.event-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.event-card h3 {
  color: var(--dark-color);
  font-size: 1.5rem;
}

.event-card p {
  color: var(--gray-color);
}

/* Partners Section */
.partners-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.partner-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  padding: 1rem;
  border-radius: var(--border-radius-md);
  background-color: white;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  transition: filter var(--transition-normal);
  filter: grayscale(1) opacity(0.7);
}

.partner-logo:hover img {
  filter: grayscale(0) opacity(1);
}

/* Resources Section */
.resources-section {
  background-color: var(--light-color-dark);
  padding: 5rem 0;
}

.resource-card {
  background: white;
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.resource-card .card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.resource-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.resource-card:hover .card-image img {
  transform: scale(1.1);
}

.resource-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.resource-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.resource-card p {
  color: var(--gray-color);
}

/* Blog Section */
.blog-section {
  background-color: white;
  padding: 5rem 0;
}

.blog-card {
  border: none;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

.blog-card .card-image {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.blog-card .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.blog-card:hover .card-image img {
  transform: scale(1.1);
}

.blog-card .card-content {
  padding: 1.5rem;
  text-align: center;
}

.blog-meta {
  margin-bottom: 1rem;
  font-size: 0.9rem;
  color: var(--gray-color);
}

.blog-meta span {
  margin-right: 1rem;
}

.blog-card h3 {
  font-size: 1.5rem;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.blog-card p {
  color: var(--gray-color);
}

.blog-card .btn-link {
  display: inline-block;
  margin-top: 0.5rem;
  font-weight: 600;
  color: var(--primary-color);
}

.blog-card .btn-link:hover {
  color: var(--primary-dark);
}

/* Behind the Scenes Section */
.behind-scenes-section {
  background-color: var(--light-color);
  padding: 5rem 0;
}

.scenes-content {
  padding: 2rem;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.scenes-content h3 {
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.scenes-content h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.scenes-gallery img {
  border-radius: var(--border-radius-md);
  transition: transform var(--transition-normal);
  box-shadow: var(--shadow-sm);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scenes-gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-md);
}

/* Press Section */
.press-section {
  background-color: var(--light-color-dark);
  padding: 5rem 0;
}

.press-feature {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  height: 100%;
  text-align: center;
}

.press-feature img {
  margin-bottom: 1.5rem;
  border-radius: var(--border-radius-md);
  max-width: 100%;
  margin: 0 auto 1.5rem;
}

.press-feature h3 {
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.press-date {
  font-style: italic;
  color: var(--gray-color);
}

.press-quotes {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.press-quote {
  background: white;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
}

.press-quote blockquote {
  margin-bottom: 0.5rem;
  font-style: italic;
  color: var(--dark-color);
}

.press-source {
  text-align: right;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary-color);
}

.press-logo {
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: var(--border-radius-md);
  padding: 1rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
}

.press-logo:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.press-logo img {
  max-width: 100%;
  max-height: 70px;
  transition: filter var(--transition-normal);
  filter: grayscale(1) opacity(0.7);
}

.press-logo:hover img {
  filter: grayscale(0) opacity(1);
}

/* Contact Section */
.contact-section {
  background-color: white;
  padding: 5rem 0;
}

.contact-info {
  padding: 2rem;
  background: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-info h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-info h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
}

.contact-item i {
  margin-right: 1rem;
  color: var(--primary-color);
}

.contact-map {
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-form-container {
  background: white;
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  height: 100%;
}

.contact-form-container h3 {
  color: var(--dark-color);
  margin-bottom: 1.5rem;
  position: relative;
}

.contact-form-container h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.form-control {
  border: 1px solid var(--light-color-dark);
  padding: 0.75rem 1rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
}

.form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.25rem rgba(42, 127, 255, 0.25);
}

/* Footer Section */
.footer-section {
  background-color: var(--dark-color);
  color: white;
  padding-top: 5rem;
  position: relative;
}

.footer-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 10px;
  background: var(--gradient-primary);
}

.footer-about p {
  color: rgba(255, 255, 255, 0.7);
  margin-top: 1rem;
}

.footer-links h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-links ul li {
  margin-bottom: 0.75rem;
}

.footer-links ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--transition-fast);
}

.footer-links ul li a:hover {
  color: white;
  padding-left: 5px;
}

.footer-social h4 {
  color: white;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-social h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 30px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.footer-social p {
  color: rgba(255, 255, 255, 0.7);
}

.social-links {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  color: white;
  background: var(--dark-color-light);
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-fast);
  font-weight: 500;
}

.social-links a:hover {
  background: var(--primary-color);
  transform: translateY(-3px);
}

.copyright {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.5);
}

/* Success Page */
.success-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background-color: var(--light-color);
  text-align: center;
}

.success-container {
  max-width: 600px;
  padding: 3rem;
  background-color: white;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-lg);
}

.success-icon {
  font-size: 5rem;
  color: var(--secondary-color);
  margin-bottom: 2rem;
}

/* Privacy & Terms Pages */
.privacy-page, .terms-page {
  padding-top: 100px;
  padding-bottom: 5rem;
  background-color: var(--light-color);
}

.privacy-content, .terms-content {
  background-color: white;
  padding: 3rem;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
}

/* Animation Keyframes */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 1199.98px) {
  h1 {
    font-size: 3rem;
  }
  
  h2 {
    font-size: 2.25rem;
  }
  
  .hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 991.98px) {
  h1 {
    font-size: 2.75rem;
  }
  
  h2 {
    font-size: 2rem;
  }
  
  .hero-section {
    padding: 6rem 0 4rem;
  }
  
  .hero-section h1 {
    font-size: 3rem;
  }
  
  .hero-section .lead {
    font-size: 1.25rem;
  }
}

@media (max-width: 767.98px) {
  h1 {
    font-size: 2.5rem;
  }
  
  h2 {
    font-size: 1.75rem;
  }
  
  h3 {
    font-size: 1.5rem;
  }
  
  .hero-section {
    padding: 5rem 0 3rem;
  }
  
  .hero-section h1 {
    font-size: 2.5rem;
  }
  
  .btn {
    padding: 0.6rem 1.5rem;
  }
  
  .partner-logo {
    height: 80px;
  }
  
  .vision-content, 
  .contact-info, 
  .contact-form-container {
    padding: 1.5rem;
  }
}

@media (max-width: 575.98px) {
  h1 {
    font-size: 2.25rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  .hero-section h1 {
    font-size: 2.25rem;
  }
  
  .section-title {
    font-size: 1.75rem;
  }
  
  .card-image {
    height: 200px;
  }
}