/* =============================================================================
   AREF (Abuja Real Estate Fest) - Main Stylesheet
   Organized to match HTML structure for better maintainability
   ============================================================================= */

/* =============================================================================
   PRELOADER SECTION
   ============================================================================= */
/* Modern Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  flex-direction: column;
}

#preloader .logo {
  width: 80px;
  height: 80px;
  margin-bottom: 2rem;
}

#preloader .loader {
  display: flex;
  gap: 0.5rem;
}

#preloader .loader div {
  width: 12px;
  height: 40px;
  background: var(--gradient-secondary);
  border-radius: 6px;
  animation: preloader-bounce 1.4s ease-in-out infinite;
}

#preloader .loader div:nth-child(1) {
  animation-delay: -0.32s;
}
#preloader .loader div:nth-child(2) {
  animation-delay: -0.16s;
}
#preloader .loader div:nth-child(3) {
  animation-delay: 0s;
}
#preloader .loader div:nth-child(4) {
  animation-delay: 0.16s;
}

/* =============================================================================
   NAVIGATION SECTION
   ============================================================================= */

/* Modern Navigation */
#nav {
  /* position: fixed;
  top: 0;
  left: 0;
  right: 0; */
  z-index: 1000;
  background: rgba(15, 15, 35, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 166, 0, 0.1);
  transition: all 0.3s ease;
}

#nav.scrolled {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(15, 15, 35, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 102, 0.1);
  animation: fadeInDown 0.8s ease;
}

#nav .nav-container {
  padding: 1rem 0;
}

#nav .nav-wrapper {
  align-items: center;
}

#nav .logo {
  max-width: 150px;
  /* height: 60px; */
  transition: transform 0.3s ease;
}

#nav .logo:hover {
  transform: scale(1.1);
}

.nav-links ul {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--text-light);
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: relative;
  transition: all 0.3s ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-links a:hover {
  color: var(--secondary-color);
}

.nav-links a:hover::before {
  width: 80%;
}

/* Mobile Navigation */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

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

.aside-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--bg-medium);
  transition: right 0.3s ease;
  z-index: 999;
  padding: 2rem;
  border-left: 1px solid rgba(255, 166, 0, 0.2);
}

.aside-menu.active {
  right: 0;
}

.aside-menu ul {
  margin-top: 4rem;
}

.aside-menu li {
  margin-bottom: 1rem;
}

.aside-menu a {
  color: var(--text-light);
  /* padding: 1rem; */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.aside-menu a:hover {
  background: rgba(255, 166, 0, 0.1);
  color: var(--secondary-color);
}

/* =============================================================================
   HERO SECTION
   ============================================================================= */

/* Hero Section */
#hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 102, 0.8) 0%,
    rgba(255, 166, 0, 0.3) 100%
  );
  /* background: linear-gradient(#000000aa, #000000aa); */
  z-index: 1;
}

/* .hero-bg video,
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
} */

.hero-content {
  text-align: center;
  z-index: 2;
  /* max-width: 800px; */
  max-width: 80%;
  padding: 0 2rem;
  margin-top: -150px;
}

.hero-title {
  font-size: clamp(2.4rem, 7vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  opacity: 0;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--secondary-color);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 2rem;
  /* max-width: 600px; */
  margin-left: auto;
  margin-right: auto;
}

.hero-date {
  font-size: 1.1rem;
  color: var(--secondary-color);
  margin-bottom: 3rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px 0;
}

.hero-date span {
  display: inline-flex;
  align-items: center;
}

.hero-date iconify-icon {
  color: var(--white);
  margin-right: 10px;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   ABOUT SECTION
   ============================================================================= */

/* About Section */
#about-section {
  padding: 5rem 0;
  background: var(--bg-medium);
  position: relative;
}

#about-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,166,0,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

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

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.about-feature {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 166, 0, 0.1);
  transition: all 0.3s ease;
}

.about-feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 166, 0, 0.1);
  border-color: rgba(255, 166, 0, 0.3);
}

.about-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  padding: 10px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.about-feature-title {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.about-feature-description {
  color: var(--text-medium);
  line-height: 1.6;
}

/* =============================================================================
   EVENT BY NUMBER SECTION
   ============================================================================= */

/* Event by Numbers Section */
#event-numbers-section {
  padding: 5rem 0;
  background: var(--bg-medium);
  position: relative;
}

#event-numbers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 102, 0.05) 0%,
    rgba(255, 166, 0, 0.05) 100%
  );
  z-index: 1;
}

.event-numbers-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.event-numbers-title {
  font-size: clamp(1.5rem, 7vw, 2.5rem);
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.event-numbers-underline {
  width: 60px;
  height: 4px;
  background: var(--gradient-secondary);
  margin: 0 auto;
  border-radius: 2px;
}

.event-numbers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.event-number-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  border: 1px solid rgba(255, 166, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.event-number-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.event-number-card:hover::before {
  transform: scaleX(1);
}

.event-number-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(255, 166, 0, 0.15);
  border-color: rgba(255, 166, 0, 0.3);
}

.event-number-icon {
  margin-bottom: 1.5rem;
  /* color: var(--secondary-color); */
}

.event-number-stat {
  font-size: 3.5rem;
  font-weight: 700;
  /* color: var(--primary-color); */
  margin-bottom: 0.5rem;
  line-height: 1;
}

.event-number-label {
  font-size: 1.1rem;
  color: var(--text-medium);
  text-transform: lowercase;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* =============================================================================
   CONTENT FOCUS SECTION
   ============================================================================= */

/* Content Focus Section */
#content-focus {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.content-tracks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.content-track {
  background: var(--gradient-primary);
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.content-track::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 166, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.content-track:hover::before {
  left: 100%;
}

.content-track:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 102, 0.3);
}

.content-track-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-track-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* filter: brightness(0) invert(1); Makes icons white */
  transition: filter 0.3s ease;
}

/* .content-track:hover .content-track-icon img {
  filter: brightness(0) invert(1) sepia(1) saturate(10000%) hue-rotate(35deg); 
  Orange on hover
} */

.content-track-title {
  font-size: 1.2rem;
  color: var(--white);
  font-weight: 600;
}

/* =============================================================================
   PARTNER SECTION
   ============================================================================= */

/* Partner Section */
#expect-section,
#partner-section {
  padding: 5rem 0;
  background: var(--bg-dark);
}

.partner-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.partner-benefit {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 166, 0, 0.1);
  transition: all 0.3s ease;
}

.partner-benefit:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 166, 0, 0.1);
}

.partner-benefit-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 1rem;
  background: var(--gradient-secondary);
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.partner-benefit-icon img {
  object-fit: contain;
}

.partner-benefit-title {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.partner-benefit-description {
  color: var(--text-medium);
  line-height: 1.6;
}

/* =============================================================================
   GALLERY HIGHLIGHTS SECTION
   ============================================================================= */

/* Gallery Highlights Section */
#gallery-highlights-section {
  background: var(--bg-primary);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
  margin-bottom: 3rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  aspect-ratio: 1;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item.gallery-hidden {
  display: none;
}

.gallery-item.gallery-shown {
  display: block;
  animation: fadeInScale 0.5s ease-in-out;
}

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

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

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

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

.gallery-overlay-content {
  text-align: center;
  color: white;
  padding: 1rem;
}

.gallery-overlay-content h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.gallery-overlay-content p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.gallery-actions {
  text-align: center;
}

.gallery-view-more {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  background: transparent;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.gallery-view-more:hover {
  background: var(--accent-color);
  color: white;
}

/* =============================================================================
   SPEAKERS SECTION
   ============================================================================= */

/* Speakers Section */
#speakers-section {
  padding: 5rem 0;
  background: var(--bg-medium);
}

.speakers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.speaker-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 166, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  /* opacity: 0; */
}

.speaker-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-secondary);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.speaker-card:hover::before {
  transform: scaleX(1);
}

.speaker-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(255, 166, 0, 0.1);
}

.speaker-image {
  width: 150px;
  height: 150px;
  /* width: 200px;
  height: 200px; */
  border-radius: 50%;
  margin: 0 auto 1rem;
  overflow: hidden;
  border: 3px solid var(--secondary-color);
}

.speaker-image img {
  object-position: top;
}

.speaker-name {
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.speaker-title {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 1rem;
}

.speaker-company {
  color: var(--text-medium);
  font-size: 0.9rem;
}

/* Speakers Load More Button */
.speakers-actions {
  text-align: center;
  margin-top: 3rem;
}

#load-more-speakers {
  transition: all 0.3s ease;
}

#load-more-speakers:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 166, 0, 0.3);
}

/* Show Less Button Styling */
#show-less-speakers {
  transition: all 0.3s ease;
  border: 2px solid #ffa600;
  color: #ffa600;
  background: transparent;
}

#show-less-speakers:hover {
  background: #ffa600;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 166, 0, 0.3);
}

/* Smooth animation for new speaker cards */
.speaker-card.aos-animate {
  animation: fadeInUp 0.6s ease-out;
}

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

/* =============================================================================
   SPONSORS SECTION
   ============================================================================= */

/* Sponsors Section */
#sponsors-section {
  background: var(--bg-primary);
}

.sponsors-grid-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sponsors-header {
  font-size: 20px;
  margin-bottom: 20px;
}

/* .sponsors-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
  place-items: center;
  justify-content: center;
} */
.sponsors-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.sponsors-logo {
  background: #ffffff0d;
  background: #ffffff;
  background-blend-mode: difference;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.sponsors-logo:hover {
  transform: scale(1.05);
  /* background: rgba(255, 255, 255, 0.1); */
}

.sponsors-logo img {
  width: 200px;
  height: 70px;
  object-fit: contain;
  /* filter: brightness(0.8); */
  transition: filter 0.3s ease;
}

.sponsors-logo:hover img {
  filter: brightness(1);
}

/* =============================================================================
   TRUSTED PARTNERS SECTION
   ============================================================================= */

/* Trusted Partners Section */
#trusted-partners-section {
  background: var(--bg-primary);
}

.trusted-partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  align-items: center;
}

.partner-logo {
  background: #ffffff0d;
  /* background: #ffffff20; */
  /* background: #ffffff35; */
  background-blend-mode: difference;
  border-radius: 10px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease, background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.partner-logo:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 60px;
  object-fit: contain;
  filter: brightness(0.8);
  transition: filter 0.3s ease;
}

.partner-logo:hover img {
  filter: brightness(1);
}

/* =============================================================================
   CONTACT SECTION
   ============================================================================= */

/* Contact Section */
#contact-section {
  padding: 5rem 0;
  background: var(--bg-medium);
}

.contact-header {
  text-align: center;
  margin-bottom: 4rem;
}

.contact-title {
  font-size: 2.5rem;
  color: var(--text-light);
  margin-bottom: 1rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 15px;
  text-align: center;
  border: 1px solid rgba(255, 166, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 166, 0, 0.1);
}

.contact-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.contact-name {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.contact-phone {
  color: var(--secondary-color);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.contact-email {
  color: var(--text-medium);
}

/* =============================================================================
   MORE ABOUT EVENTHIVE SECTION
   ============================================================================= */

/* More About Eventhive  */
#more-about .more-container {
  position: relative;
}

#more-about .more-container::before {
  content: "";
  position: absolute;
  top: 20%;
  right: 0;
  background: #00ff8040;
  background: #3000ab7f;
  height: 300px;
  width: 300px;
  filter: blur(100px);
  z-index: -1;
}

#more-about {
  font-size: 16px;
}

#more-about .more-logo {
  margin-bottom: 30px;
}
#more-about .more-logo .logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

#more-about .more-logo .logo-separator {
  width: 2px;
  height: 50px;
  background: var(--white);
}

#more-about .more-logo .logo {
  width: 100px;
}

#more-about .more-logo .logo img {
  object-fit: contain;
}

#more-about p {
  margin-bottom: 10px;
}

#more-about .indus-cities h4 {
  margin-bottom: 5px;
}

#more-about .indus-cities {
  margin-bottom: 20px;
}

#more-about .indus-cities {
  word-wrap: break-word;
  /* word-break: break-all; */
}

#more-about .indus-cities span {
  display: inline-block;
  margin-right: 10px;
  /* word-wrap: break-word; */
  white-space: normal;
}

/* =============================================================================
   FOOTER SECTION
   ============================================================================= */

/* Footer */
footer {
  background: #0f0f23;
  padding: 4rem 0 0;
  border-top: 1px solid rgba(255, 166, 0, 0.1);
}

.footer-container {
  position: relative;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 2fr 1.5fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 3rem;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo img {
  max-height: 60px;
  width: auto;
  object-fit: contain;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.nav-column h4 {
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid var(--secondary-color);
  padding-bottom: 0.5rem;
  display: inline-block;
}

.nav-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-column li {
  margin-bottom: 0.5rem;
}

.nav-column a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
  display: block;
  padding: 0.25rem 0;
}

.nav-column a:hover {
  color: var(--secondary-color);
}

.footer-event-info {
  text-align: right;
}

.footer-event-info h4 {
  color: var(--text-light);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.event-date {
  color: var(--secondary-color);
  font-weight: 500;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.event-location {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

.footer-social {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
}

.footer-social a {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background: var(--secondary-color);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 166, 0, 0.1);
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-content p {
  color: var(--text-medium);
  font-size: 0.9rem;
  margin: 0;
}

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

.footer-links a {
  color: var(--text-medium);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

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

/* =============================================================================
   SCROLL TO TOP BUTTON
   ============================================================================= */

/* Scroll to Top */
#scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

#scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

#scroll-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 166, 0, 0.3);
}
