/* Global Awards Custom Styles */

/* Root Variables */
:root {
  --primary-black: #000000;
  --primary-gold: #ffd700;
  --primary-white: #ffffff;
  --dark-gray: #1a1a1a;
  --light-gray: #f8f9fa;
  --text-dark: #333333;
  --text-light: #666666;
  --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
  --shadow-medium: 0 5px 20px rgba(0, 0, 0, 0.15);
  --shadow-heavy: 0 10px 30px rgba(0, 0, 0, 0.3);
  --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ffa500 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
}

/* Typography */
body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
  line-height: 1.2;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary-black);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out;
}

.loader {
  text-align: center;
  color: var(--primary-white);
}

.golden-ring {
  width: 80px;
  height: 80px;
  border: 3px solid transparent;
  border-top: 3px solid var(--primary-gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}

.logo-text {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-gold);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

/* Navigation */
.navbar {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 1rem 0;
}

.navbar.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 0.5rem 0;
}

.navbar-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-white) !important;
  text-decoration: none;
}

.brand-text {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav .nav-link {
  color: var(--primary-white) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: 25px;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--primary-gold) !important;
  background: rgba(255, 215, 0, 0.1);
}

.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 80%;
}

/* Hero Section */
.hero-section {
  height: 100vh;
  min-height: 800px;
  background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.svg?height=1080&width=1920&text=Luxury+Awards+Background") center / cover;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(255, 215, 0, 0.1) 0%, rgba(0, 0, 0, 0.8) 70%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  color: var(--primary-white);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--primary-gold);
  padding: 0.75rem 2rem;
  border-radius: 50px;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero-badge i {
  color: var(--primary-gold);
  animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: scale(1.2) rotate(180deg);
    opacity: 0.8;
  }
}

.hero-title {
  font-size: 5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffd700 0%, #ffed4e 50%, #ffd700 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(255, 215, 0, 0.3);
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-subtitle {
  font-size: 1.8rem;
  margin-bottom: 3rem;
  font-weight: 300;
  opacity: 0.95;
  letter-spacing: 1px;
}

.hero-date {
  margin-bottom: 4rem;
}

.date-container {
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--primary-gold);
  padding: 1.5rem 2.5rem;
  border-radius: 15px;
  backdrop-filter: blur(10px);
}

.date-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-black);
}

.date-info {
  text-align: left;
}

.date-main {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--primary-gold);
  margin-bottom: 0.25rem;
}

.date-location {
  font-size: 1rem;
  opacity: 0.9;
}

/* Countdown Timer */
.countdown-section {
  margin-bottom: 4rem;
}

.countdown-title {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--primary-gold);
  font-weight: 600;
  letter-spacing: 1px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-unit {
  text-align: center;
  position: relative;
}

.time-circle {
  width: 100px;
  height: 100px;
  background: rgba(255, 215, 0, 0.1);
  border: 3px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  position: relative;
  backdrop-filter: blur(10px);
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.time-circle::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--primary-gold), transparent, var(--primary-gold));
  animation: rotate 3s linear infinite;
  z-index: -1;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.time-number {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
}

.time-label {
  font-size: 0.9rem;
  color: var(--primary-white);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.time-separator {
  font-size: 2rem;
  color: var(--primary-gold);
  font-weight: 700;
  margin: 0 0.5rem;
  animation: blink 1s ease-in-out infinite;
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0.3;
  }
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-btn {
  position: relative;
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  overflow: hidden;
  transition: all 0.3s ease;
  min-width: 200px;
}

.hero-btn span {
  position: relative;
  z-index: 2;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.hero-btn:hover .btn-shine {
  left: 100%;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4);
}

.btn-gold {
  background: var(--gradient-gold);
  border: none;
  color: var(--primary-black);
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-medium);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
  color: var(--primary-black);
}

.btn-outline-gold {
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  background: transparent;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 50px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-outline-gold:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: var(--primary-white);
}

.scroll-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.scroll-arrow {
  position: relative;
  width: 2px;
  height: 40px;
  background: var(--primary-gold);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-line {
  width: 100%;
  height: 30px;
  background: linear-gradient(to bottom, var(--primary-gold), transparent);
}

.scroll-point {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--primary-gold);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary-gold);
}

@keyframes scrollBounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-10px);
  }
  60% {
    transform: translateY(-5px);
  }
}

/* Page Header */
.page-header {
  background: var(--gradient-dark);
  padding: 150px 0 100px;
  text-align: center;
  color: var(--primary-white);
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/placeholder.svg?height=400&width=1920") center / cover;
  opacity: 0.1;
}

.page-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-subtitle {
  font-size: 1.3rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
}

/* Sections */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--text-dark);
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gradient-gold);
  border-radius: 2px;
}

.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 3rem;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  color: var(--text-dark);
}

/* Introduction Section */
.intro-section {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  position: relative;
}

.intro-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), transparent);
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 215, 0, 0.1);
  color: var(--primary-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(255, 215, 0, 0.3);
}

.intro-features {
  margin-top: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--primary-white);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-gold);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-black);
  flex-shrink: 0;
}

.feature-content h5 {
  margin-bottom: 0.5rem;
  color: var(--text-dark);
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  color: var(--text-light);
  line-height: 1.5;
}

/* Enhanced Image Container */
.intro-image-container {
  position: relative;
}

.intro-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.intro-image-main img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-image-main:hover .image-overlay {
  opacity: 1;
}

.play-button-large {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-black);
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.play-button-large:hover {
  transform: scale(1.1);
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.7);
}

.intro-image-floating {
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  z-index: 2;
}

.floating-trophy {
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: float 3s ease-in-out infinite;
  filter: drop-shadow(0 10px 20px rgba(255, 215, 0, 0.3));
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.intro-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

/* Enhanced Stats Cards */
.stat-card-modern {
  background: var(--primary-white);
  padding: 2.5rem 2rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.stat-card-modern::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-gold);
}

.stat-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--primary-gold);
}

.stat-card-modern .stat-icon {
  width: 70px;
  height: 70px;
  background: rgba(255, 215, 0, 0.1);
  border: 2px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-gold);
  transition: all 0.3s ease;
}

.stat-card-modern:hover .stat-icon {
  background: var(--primary-gold);
  color: var(--primary-black);
  transform: scale(1.1);
}

.stat-card-modern .stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-card-modern .stat-label {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stat-description {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
}

.stat-item {
  text-align: center;
  flex: 1;
  min-width: 120px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  display: block;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
}

/* Award Cards */
.award-card {
  background: var(--primary-white);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-heavy);
  border-color: var(--primary-gold);
}

.award-icon {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: var(--primary-black);
}

.award-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.award-description {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.award-count {
  font-weight: 600;
  color: var(--primary-gold);
  font-size: 1.1rem;
}

/* Detailed Award Cards */
.award-card-detailed {
  background: var(--primary-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
  border: 1px solid rgba(255, 215, 0, 0.1);
}

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

.award-header {
  background: var(--gradient-dark);
  color: var(--primary-white);
  padding: 2rem;
  text-align: center;
  position: relative;
}

.award-icon-large {
  width: 100px;
  height: 100px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 2.5rem;
  color: var(--primary-black);
}

.award-category {
  font-size: 0.9rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.award-body {
  padding: 2rem;
}

.award-details {
  display: flex;
  justify-content: space-between;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.award-footer {
  padding: 0 2rem 2rem;
}

/* Filter Buttons */
.filter-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-filter {
  background: transparent;
  border: 2px solid var(--primary-gold);
  color: var(--primary-gold);
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-filter:hover,
.btn-filter.active {
  background: var(--primary-gold);
  color: var(--primary-black);
}

/* Nominee Cards */
.nominee-card {
  background: var(--primary-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

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

.nominee-image {
  position: relative;
  overflow: hidden;
  height: 300px;
}

.nominee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.nominee-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.nominee-card:hover .nominee-overlay {
  opacity: 1;
}

.nominee-social {
  display: flex;
  gap: 1rem;
}

.nominee-info {
  padding: 2rem;
}

.nominee-category {
  font-size: 0.8rem;
  color: var(--primary-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.nominee-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.nominee-title {
  color: var(--text-light);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.nominee-location {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.nominee-description {
  color: var(--text-dark);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

/* Gallery */
.gallery-card {
  background: var(--primary-white);
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  height: 100%;
}

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

.gallery-card a {
  position: relative;
  display: block;
  overflow: hidden;
}

.gallery-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-card:hover .gallery-overlay {
  opacity: 1;
}

.gallery-icon {
  color: var(--primary-gold);
  font-size: 2rem;
}

.gallery-info {
  padding: 1.5rem;
}

.gallery-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.gallery-description {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* Video Cards */
.video-card .video-container {
  position: relative;
  overflow: hidden;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.video-card:hover .video-overlay {
  background: rgba(0, 0, 0, 0.7);
}

.play-button {
  width: 80px;
  height: 80px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary-black);
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  transform: scale(1.1);
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--gradient-gold);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  display: flex;
  align-items: center;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-marker {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.timeline-year {
  background: var(--gradient-gold);
  color: var(--primary-black);
  padding: 1rem 1.5rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: var(--shadow-medium);
}

.timeline-content {
  background: var(--primary-white);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: var(--shadow-light);
  width: calc(50% - 2rem);
  position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.timeline-text {
  color: var(--text-light);
  line-height: 1.6;
}

/* Team Cards */
.team-card {
  background: var(--primary-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
  transition: all 0.3s ease;
  text-align: center;
  height: 100%;
}

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

.team-image {
  height: 300px;
  overflow: hidden;
}

.team-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.team-info {
  padding: 2rem;
}

.team-name {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-dark);
}

.team-position {
  color: var(--primary-gold);
  font-weight: 500;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
}

.team-bio {
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* Stats Section */
.stats-section {
  background: var(--gradient-dark);
  color: var(--primary-white);
}

.stat-card {
  text-align: center;
  padding: 2rem;
}

.stat-icon {
  font-size: 3rem;
  color: var(--primary-gold);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-gold);
  font-family: "Playfair Display", serif;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1.1rem;
  color: var(--primary-white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Contact Form */
.contact-form-container {
  background: var(--primary-white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-light);
}

.contact-form .form-outline {
  margin-bottom: 1.5rem;
}

.contact-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

.contact-form .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
  padding: 1rem;
  font-size: 1rem;
}

.contact-form .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Contact Info */
.contact-info-container {
  background: var(--gradient-dark);
  color: var(--primary-white);
  padding: 3rem;
  border-radius: 20px;
  height: 100%;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.contact-icon i {
  color: var(--primary-black);
  font-size: 1.2rem;
}

.contact-details h5 {
  color: var(--primary-gold);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.contact-details p {
  margin: 0;
  line-height: 1.6;
  opacity: 0.9;
}

.social-links-contact {
  margin-top: 2rem;
}

.social-buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.social-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-btn.facebook {
  background: #3b5998;
}
.social-btn.twitter {
  background: #1da1f2;
}
.social-btn.instagram {
  background: #e4405f;
}
.social-btn.linkedin {
  background: #0077b5;
}
.social-btn.youtube {
  background: #ff0000;
}

.social-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
  color: var(--primary-white);
}

/* Map */
.map-container {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: var(--shadow-medium);
}

/* Newsletter */
.newsletter-section {
  background: var(--light-gray);
}

.newsletter-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.newsletter-text {
  color: var(--text-light);
  margin-bottom: 2rem;
}

.newsletter-form .input-group {
  max-width: 500px;
  margin: 0 auto;
}

.newsletter-form .form-control {
  border: 2px solid #e0e0e0;
  border-radius: 50px 0 0 50px;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.newsletter-form .btn {
  border-radius: 0 50px 50px 0;
  padding: 1rem 2rem;
}

/* Footer */
.footer {
  background: var(--gradient-dark) !important;
}

.footer-brand {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.footer-text {
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer-heading {
  color: var(--primary-gold);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.footer-links {
  list-style: none;
  padding: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-gold);
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.contact-item i {
  color: var(--primary-gold);
  margin-right: 0.5rem;
  width: 20px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  background: rgba(255, 215, 0, 0.1);
  border: 1px solid var(--primary-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-gold);
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--primary-gold);
  color: var(--primary-black);
  transform: translateY(-2px);
}

.footer-divider {
  border-color: rgba(255, 215, 0, 0.3);
  margin: 2rem 0;
}

.copyright {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--primary-gold);
}

/* Back to Top */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-gold);
  border: none;
  border-radius: 50%;
  color: var(--primary-black);
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

/* Search and Filter */
.search-filter-section {
  background: var(--light-gray);
}

.search-box .input-group-text {
  background: var(--primary-white);
  border: 2px solid #e0e0e0;
  border-right: none;
  color: var(--text-light);
}

.search-box .form-control {
  border: 2px solid #e0e0e0;
  border-left: none;
}

.search-box .form-control:focus {
  border-color: var(--primary-gold);
  box-shadow: none;
}

.search-box .form-control:focus + .input-group-text {
  border-color: var(--primary-gold);
}

.filter-dropdown .form-select {
  border: 2px solid #e0e0e0;
  border-radius: 10px;
}

.filter-dropdown .form-select:focus {
  border-color: var(--primary-gold);
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Mission Values */
.mission-values {
  margin-top: 2rem;
}

.value-item {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  font-weight: 500;
}

.value-item i {
  margin-right: 1rem;
  font-size: 1.2rem;
}

/* Text Colors */
.text-gold {
  color: var(--primary-gold) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }

  .hero-subtitle {
    font-size: 1.3rem;
  }

  .time-circle {
    width: 80px;
    height: 80px;
  }

  .time-number {
    font-size: 1.8rem;
  }

  .hero-buttons {
    gap: 1rem;
  }

  .hero-btn {
    min-width: 180px;
    padding: 0.8rem 2rem;
  }

  .date-container {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }

  .intro-image-floating {
    display: none;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .countdown-timer {
    gap: 1rem;
  }

  .time-unit {
    min-width: 80px;
    padding: 1rem 0.5rem;
  }

  .time-number {
    font-size: 2rem;
  }

  .page-title {
    font-size: 2.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .timeline::before {
    left: 2rem;
  }

  .timeline-item {
    flex-direction: column !important;
    align-items: flex-start;
    padding-left: 4rem;
  }

  .timeline-marker {
    left: 2rem;
  }

  .timeline-content {
    width: 100%;
    margin: 1rem 0 0 0 !important;
  }

  .intro-stats {
    justify-content: center;
  }

  .filter-buttons {
    gap: 0.5rem;
  }

  .btn-filter {
    padding: 0.4rem 1rem;
    font-size: 0.9rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 2rem;
  }

  .footer-legal {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .time-circle {
    width: 70px;
    height: 70px;
  }

  .time-number {
    font-size: 1.5rem;
  }

  .time-separator {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .countdown-timer {
    gap: 0.5rem;
  }

  .time-unit {
    min-width: 70px;
    padding: 0.8rem 0.3rem;
  }

  .time-number {
    font-size: 1.5rem;
  }

  .time-label {
    font-size: 0.8rem;
  }

  .page-title {
    font-size: 2rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .award-card,
  .nominee-card,
  .team-card {
    margin-bottom: 2rem;
  }

  .contact-form-container,
  .contact-info-container {
    padding: 1.5rem;
  }

  .social-buttons {
    justify-content: center;
  }
}

/* Animation Classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #e6c200;
}

/* Selection */
::selection {
  background: var(--primary-gold);
  color: var(--primary-black);
}

::-moz-selection {
  background: var(--primary-gold);
  color: var(--primary-black);
}

/* Focus States */
.btn:focus,
.form-control:focus,
.form-select:focus {
  box-shadow: 0 0 0 0.2rem rgba(255, 215, 0, 0.25);
}

/* Loading States */
.loading {
  opacity: 0.6;
  pointer-events: none;
}

.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid transparent;
  border-top: 2px solid currentColor;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Print Styles */
@media print {
  .navbar,
  .back-to-top,
  .hero-section,
  .footer {
    display: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }

  .page-header {
    background: none !important;
    color: var(--primary-black) !important;
    padding: 2rem 0 !important;
  }
}
