/* Layout & Base Styling */
body {
  background-color: #f8f9fa;
  padding-top: 72px; /* Matches fixed-top navbar */
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

.section {
  padding: 3rem 0;
}

/* Utility Containers */
.container-narrow {
  max-width: 720px;
  margin: 0 auto;
}

.card {
  border-radius: 0.5rem;
}

/* Headings */
h1, h2, h3, h4, h5 {
  font-weight: 600;
}

/* Navbar overrides */
.navbar {
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.navbar .nav-link {
  font-weight: 500;
}
.navbar .nav-link:hover {
  text-decoration: underline;
}

/* Buttons */
.btn {
  border-radius: 0.375rem;
}
.btn-primary {
  background-color: #0056b3;
  border-color: #0056b3;
}
.btn-primary:hover {
  background-color: #004a99;
  border-color: #004a99;
}
.btn-gold {
  background-color: #C9A900; /* UA gold */
  color: #000;
  border: 1px solid #C9A900;
}
.btn-gold:hover {
  background-color: #b79500;
  border-color: #b79500;
  color: #000;
}


/* Cards */
.card-hover {
  transition: transform 0.2s ease;
}
.card-hover:hover {
  transform: scale(1.01);
}

/* Event cards (optional style group) */
.event-card {
  transition: all 0.2s ease-in-out;
}
.event-card:hover {
  transform: scale(1.01);
  box-shadow: 0 0.5rem 1.2rem rgba(0,0,0,0.1);
}

/* Links */
a {
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

/* Responsive Helpers */
@media (max-width: 576px) {
  .section {
    padding: 2rem 1rem;
  }
}

/* Timeline Structure */
.timeline {
  position: relative;
  margin: 2rem 0;
  padding-left: 2rem;
  border-left: 2px solid #dee2e6;
}

.timeline-item {
  position: relative;
  margin-bottom: 2rem;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: -9px;
  top: 4px;
  width: 16px;
  height: 16px;
  background-color: #0d6efd;
  border-radius: 50%;
}

.timeline-item.future::before {
  background-color: #198754; /* green */
}

.timeline-card {
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.5rem;
  padding: 1rem;
}

.timeline-card img {
  max-height: 200px;
  object-fit: cover;
  border-radius: 0.375rem;
}

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

/* Booster logo sizing */
.brand-logo-container {
  display: inline-block;
  margin-bottom: 1rem;
  max-width: 140px;
}

.brand-logo-container img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px; /* Slightly rounded corners */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}


.brand-logo-container {
  margin-bottom: 1rem;
  animation: fadeIn 0.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.96); }
  to { opacity: 1; transform: scale(1); }
}

#drop-zone:hover {
  background-color: #f1f3f5;
}

#drop-zone.border-primary {
  border-color: #0d6efd !important;
  background-color: #e7f1ff;
}


.modal-content {
  background-color: #ffffff !important;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.2rem rgba(0, 0, 0, 0.2);
  backdrop-filter: none !important;
}
