:root {
  --primary-color: #ff9900;
  --secondary-color: #232f3e;
  --accent-color: #28a745;
  --text-light: #ffffff;
  --bg-dark: #1a1a1a;
  --gradient-1: linear-gradient(135deg, #ff9900, #ff6b35);
  --gradient-2: linear-gradient(135deg, #232f3e, #4a5568);
  --cfs-gradient: linear-gradient(135deg, #28a745, #20c997);
  --reg-gradient: linear-gradient(135deg, #ffc107, #fd7e14);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Coming Soon Banner */
.coming-soon-banner {
  background: var(--gradient-1);
  color: white;
  text-align: center;
  padding: 15px 0;
  position: relative;
  overflow: hidden;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1000;
}

.coming-soon-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 15px,
    rgba(255, 255, 255, 0.1) 15px,
    rgba(255, 255, 255, 0.1) 30px
  );
  animation: slide 6s linear infinite;
}

.coming-soon-content {
  position: relative;
  z-index: 2;
}

.coming-soon-banner h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.coming-soon-banner p {
  margin: 5px 0 0 0;
  font-size: 0.9rem;
  opacity: 0.95;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.02);
  }
}

@keyframes slide {
  0% {
    transform: translateX(-50%) translateY(-50%);
  }

  100% {
    transform: translateX(-45%) translateY(-45%);
  }
}

/* Header */
.navbar {
  background: rgba(35, 47, 62, 0.95) !important;
  backdrop-filter: blur(10px);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.navbar.scrolled {
  background: var(--secondary-color) !important;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

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

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: all 0.3s ease;
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--primary-color) !important;
  transform: translateY(-2px);
}

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

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

/* Enhanced Button Styles */
.btn {
  border-radius: 50px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover::before {
  left: 100%;
}

.btn-registration {
  background: var(--reg-gradient);
  color: white;
  box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  border: 2px solid transparent;
  animation: glow-registration 2s ease-in-out infinite alternate;
}

.btn-registration:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 193, 7, 0.6);
  color: white;
  background: linear-gradient(135deg, #fd7e14, #ffc107);
}

.btn-call-speakers {
  background: var(--cfs-gradient);
  color: white;
  box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  border: 2px solid transparent;
  animation: glow-speakers 2s ease-in-out infinite alternate;
}

.btn-call-speakers:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 30px rgba(40, 167, 69, 0.6);
  color: white;
  background: linear-gradient(135deg, #20c997, #28a745);
}

/* Glow animations */
@keyframes glow-registration {
  0% {
    box-shadow: 0 6px 20px rgba(255, 193, 7, 0.4);
  }

  100% {
    box-shadow: 0 6px 25px rgba(255, 193, 7, 0.6),
      0 0 30px rgba(255, 193, 7, 0.3);
  }
}

@keyframes glow-speakers {
  0% {
    box-shadow: 0 6px 20px rgba(40, 167, 69, 0.4);
  }

  100% {
    box-shadow: 0 6px 25px rgba(40, 167, 69, 0.6),
      0 0 30px rgba(40, 167, 69, 0.3);
  }
}

/* Button icons */
.btn i {
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Mobile button adjustments */
@media (max-width: 768px) {
  .btn {
    padding: 0.6rem 1.2rem;
    font-size: 0.8rem;
    margin: 0.25rem;
    width: 100%;
    max-width: 280px;
  }

  .navbar-nav .nav-item {
    text-align: center;
    margin: 0.25rem 0;
  }
}

/* Hero Section */
.hero-section {
  background: var(--gradient-2);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  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,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--text-light);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff, #ff9900);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  font-weight: 400;
}

.hero-info {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

/* Countdown */
.countdown {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
  flex-wrap: wrap;
}

.countdown-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 1.5rem 1rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  min-width: 100px;
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  display: block;
  transition: all 0.3s ease;
}

.countdown-label {
  font-size: 0.9rem;
  color: var(--text-light);
  opacity: 0.8;
  margin-top: 0.5rem;
}

/* Action buttons container */
.action-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 992px) {
  .action-buttons {
    justify-content: flex-start;
  }
}

/* Section Styles */
.section {
  padding: 5rem 0;
}

.section-dark {
  background: var(--secondary-color);
  color: var(--text-light);
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-color);
  border-radius: 2px;
}

/* About Section */
.about-content {
  font-size: 1.1rem;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.team-member {
  text-align: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem 1rem;
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.team-member:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.1);
}

.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1rem;
  border: 4px solid var(--primary-color);
  transition: all 0.3s ease;
}

.team-member:hover .team-avatar {
  transform: scale(1.1);
}

.team-name {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-role {
  font-size: 0.9rem;
  opacity: 0.8;
  line-height: 1.4;
}

/* Sponsors Section */
.sponsors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  align-items: center;
  margin: 2rem 0;
}

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

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

.sponsor-logo img {
  max-width: 150px;
  height: auto;
  filter: brightness(1.2) contrast(1.1);
  transition: all 0.3s ease;
}

.sponsor-logo:hover img {
  filter: brightness(1.4) contrast(1.2) scale(1.05);
  transform: scale(1.05);
}

/* Footer */
.footer {
  background: #0d1117;
  color: var(--text-light);
  padding: 3rem 0 1rem;
  text-align: center;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 2rem 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--text-light);
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.2rem;
}

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

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

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

  .countdown {
    gap: 1rem;
  }

  .countdown-item {
    min-width: 80px;
    padding: 1rem 0.5rem;
  }

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

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

  .team-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
}

/* Hero Image */
.hero-image {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem 0;
}

.hero-img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: all 0.5s ease;
  filter: brightness(1.1) contrast(1.1);
}

/* Floating animation for hero image */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Responsive adjustments for hero image */
@media (max-width: 991px) {
  .hero-image {
    margin-top: 3rem;
    padding: 1rem 0;
  }

  .hero-img {
    max-width: 80%;
  }
}

@media (max-width: 768px) {
  .hero-image {
    margin-top: 2rem;
  }

  .hero-img {
    max-width: 100%;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out;
}

/* Ripple effect for buttons */
@keyframes ripple {
  to {
    transform: scale(2);
    opacity: 0;
  }
}

.btn-ripple {
  position: relative;
  overflow: hidden;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
  background: #1a1a1a;
}

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

::-webkit-scrollbar-thumb:hover {
  background: #cc7a00;
}
.header {
  text-align: center;
  padding: 40px 0;
  background: linear-gradient(135deg, #232f3e 0%, #131921 100%);
  border-radius: 20px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 153, 0, 0.1) 0%,
    transparent 70%
  );
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.3;
  }
}

.header h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.header .subtitle {
  font-size: 1.5rem;
  color: #ff9900;
  position: relative;
  z-index: 1;
}

.header .date-location {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #a9b3c1;
  position: relative;
  z-index: 1;
}

/* Controls Section */
.controls {
  background: #1a2332;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.search-container {
  margin-bottom: 25px;
}

.search-input {
  width: 100%;
  padding: 15px 20px;
  font-size: 1rem;
  background: #2a3441;
  border: 2px solid #3a4451;
  border-radius: 10px;
  color: #e8eaed;
  transition: all 0.3s ease;
}

.search-input:focus {
  outline: none;
  border-color: #ff9900;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.2);
}

.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.filter-btn {
  padding: 10px 20px;
  background: #2a3441;
  border: 2px solid #3a4451;
  border-radius: 25px;
  color: #e8eaed;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  font-weight: 500;
}

.filter-btn:hover {
  background: #3a4451;
  transform: translateY(-2px);
}

.filter-btn.active {
  background: #ff9900;
  border-color: #ff9900;
  color: #0f1419;
  font-weight: 600;
}

.view-toggle {
  display: flex;
  gap: 10px;
  align-items: center;
}

.view-btn {
  padding: 8px 16px;
  background: #2a3441;
  border: 2px solid #3a4451;
  border-radius: 8px;
  color: #e8eaed;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.view-btn:hover {
  background: #3a4451;
}

.view-btn.active {
  background: #ff9900;
  border-color: #ff9900;
  color: #0f1419;
}

/* Track Legend */
.track-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #1a2332;
  border-radius: 15px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legend-color {
  width: 20px;
  height: 20px;
  border-radius: 5px;
}

/* Timeline View */
.timeline-view {
  display: none;
}

.timeline-view.active {
  display: block;
}

.time-block {
  background: #1a2332;
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.time-header {
  background: #232f3e;
  padding: 15px 25px;
  font-size: 1.2rem;
  font-weight: 600;
  color: #ff9900;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 15px;
  padding: 20px;
}

.session-card {
  background: #2a3441;
  border-radius: 12px;
  padding: 20px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.session-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 153, 0, 0.3);
}

.session-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: currentColor;
}

.session-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: #ffffff;
}

.session-speaker {
  color: #ff9900;
  margin-bottom: 8px;
  font-weight: 500;
}

.session-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: #a9b3c1;
  font-size: 0.9rem;
}

.session-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}
/* Track Colors */
.track-combined {
  color: #4fc3f7;
}
.track-church {
  color: #81c784;
}
.track-george {
  color: #ff8a65;
}
.track-pantry {
  color: #ba68c8;
}
.track-break {
  color: #f06292;
}

/* Grid View */
.grid-view {
  display: none;
  overflow-x: auto;
  background: #1a2332;
  border-radius: 15px;
  padding: 20px;
}

.grid-view.active {
  display: block;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 100px repeat(4, 1fr);
  min-width: 900px;
  gap: 2px;
  background: #0f1419;
}

.grid-header {
  background: #232f3e;
  padding: 15px;
  font-weight: 600;
  text-align: center;
  color: #ff9900;
}

.grid-time {
  background: #232f3e;
  padding: 15px;
  font-weight: 600;
  color: #ff9900;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.grid-session {
  background: #2a3441;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.grid-session:hover {
  transform: scale(1.02);
  z-index: 10;
  box-shadow: 0 5px 20px rgba(255, 153, 0, 0.4);
}

.grid-session-title {
  font-weight: 600;
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.grid-session-speaker {
  font-size: 0.8rem;
  color: #ff9900;
}
/* Modal Styles */
.btn-primary {
  background: #ff9900;
  color: #0f1419;
  padding: 12px 25px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn-primary:hover {
  background: #e88900;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #2a3441;
  color: #e8eaed;
  padding: 12px 25px;
  border: 2px solid #3a4451;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: #3a4451;
}

/* Favorites */
.favorite-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #a9b3c1;
  transition: all 0.3s ease;
}

.favorite-btn:hover {
  color: #ff9900;
  transform: scale(1.2);
}

.favorite-btn.active {
  color: #ff9900;
}

/* My Schedule */
.my-schedule {
  background: #1a2332;
  border-radius: 15px;
  padding: 30px;
  margin-top: 40px;
  display: none;
}

.my-schedule.has-favorites {
  display: block;
}

.my-schedule h2 {
  color: #ff9900;
  margin-bottom: 20px;
  text-align: center;
}

.favorite-sessions {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .header h1 {
    font-size: 2rem;
  }

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

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

  .schedule-grid {
    grid-template-columns: 80px repeat(4, 200px);
  }

  .modal-content {
    margin: 20px;
  }
}

@media (max-width: 480px) {
  .header h1 {
    font-size: 1.5rem;
  }

  .sessions-grid {
    grid-template-columns: 1fr;
  }
}

/* Print Styles */
@media print {
  body {
    background: white;
    color: black;
  }

  .controls,
  .modal,
  .favorite-btn {
    display: none !important;
  }

  .session-card,
  .grid-session {
    break-inside: avoid;
    border: 1px solid #ccc;
  }
}

/* No Results Message */
.no-results {
  text-align: center;
  padding: 60px 20px;
  color: #a9b3c1;
  font-size: 1.2rem;
  display: none;
}

.no-results.show {
  display: block;
}

/* Loading Animation */
.loading {
  display: none;
  text-align: center;
  padding: 40px;
}

.loading.show {
  display: block;
}

.spinner {
  width: 50px;
  height: 50px;
  border: 3px solid #3a4451;
  border-top: 3px solid #ff9900;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Add to your CSS file */
.grid-session.track-pantry.highlight {
    background: #ffe082 !important;
    border: 2px solid #ffb300;
}
