/* ======================================
   Promo Page Styles - Baltic Auto Shipping
   Top Bidder Giveaway December 2025
   ====================================== */

/* Promo Hero Section - Full Viewport Height (100vh) */
/* Background image ONLY appears in this section */
.promo-hero {
  background-color: #204d85;
  background: linear-gradient(135deg, rgba(32, 77, 133, 0.65) 0%, rgba(0, 59, 111, 0.70) 100%), url('../img/iaacars.webp');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  height: 100vh;
  max-height: 100vh;
  padding: 0;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-hero .container {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  animation: bounce 2s infinite;
  opacity: 0.8;
}

.scroll-indicator i {
  color: #fff;
  font-size: 24px;
}

.scroll-indicator span {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.promo-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(210, 33, 40, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(32, 77, 133, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.promo-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.promo-logos {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
}

.promo-logos img {
  height: 250px;
  width: auto;
  max-width: 100%;
  background: rgba(255, 255, 255, 0.7);
  padding: 8px 15px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.promo-logo-baltic {
  height: 45px !important;
}

/* Responsive logo adjustments for Baltic logo */
@media (max-width: 992px) {
  .promo-logo-baltic {
    height: 33px !important;
  }
}

@media (max-width: 768px) {
  .promo-logo-baltic {
    height: 25px !important;
  }
}

@media (max-width: 576px) {
  .promo-logo-baltic {
    height: 18px !important;
  }
}

.promo-hero h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.promo-hero p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 30px;
  max-width: 700px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Buttons */
.promo-cta {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.btn-promo-primary {
  background: #d22128;
  color: #fff;
  padding: 14px 30px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(210, 33, 40, 0.3);
}

.btn-promo-primary:hover {
  background: #b31d23;
  transform: translateY(-2px);
  box-shadow: 0 12px 25px rgba(210, 33, 40, 0.4);
  color: #fff;
}

.btn-promo-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 30px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}

.btn-promo-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  color: #fff;
  transform: translateY(-2px);
}

/* Section Styles */
.promo-section {
  padding: 60px 0;
}

.section-bg-light {
  background: #f8fafe;
}

.promo-card {
  background: #fff;
  border-radius: 16px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid #e8ecf4;
  height: 100%;
  transition: all 0.3s ease;
}

.promo-card:hover {
  box-shadow: 0 8px 35px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.promo-card h3 {
  color: #204d85;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-card h3 i {
  color: #d22128;
  font-size: 28px;
}

/* Prize Table */
.prize-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

.prize-table th {
  background: #204d85;
  color: #fff;
  padding: 15px;
  text-align: left;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.prize-table th.col-place {
  width: 16%;
}

.prize-table th.col-merch {
  width: 42%;
}

.prize-table th.col-prize {
  width: 42%;
}

.prize-table td {
  padding: 15px;
  border-bottom: 1px solid #e8ecf4;
  vertical-align: top;
}

.prize-table tr:last-child td {
  border-bottom: none;
}

.prize-table tr:hover {
  background: #f8fafe;
}

.place-badge {
  font-weight: 700;
  color: #204d85;
  font-size: 16px;
  white-space: nowrap;
}

.prize-badge {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  margin-right: 8px;
}

/* Timeline */
.timeline-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  margin-bottom: 15px;
  border-left: 4px solid #d22128;
  background: #f8fafe;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.timeline-item:hover {
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transform: translateX(5px);
}

.timeline-date {
  min-width: 140px;
  font-weight: 700;
  color: #204d85;
  font-size: 14px;
}

.timeline-content {
  flex: 1;
  color: #5a5a5a;
}

/* Info Notes */
.info-note {
  background: #e7f3ff;
  border-left: 4px solid #209dd8;
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  font-size: 15px;
  line-height: 1.7;
}

.info-note strong {
  color: #204d85;
}

.info-note-warning {
  background: #fff3cd;
  border-left-color: #ffc107;
}

/* Section Divider */
.section-divider {
  height: 2px;
  background: linear-gradient(90deg, transparent, #e8ecf4, transparent);
  margin: 35px 0;
}

/* Promo Lists */
.promo-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.promo-list li {
  padding: 12px 0;
  padding-left: 35px;
  position: relative;
  color: #5a5a5a;
  line-height: 1.7;
}

.promo-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745;
  font-weight: 700;
  font-size: 18px;
}

/* Utility Classes */
.promo-card-subtitle {
  color: #6c757d;
  margin-bottom: 20px;
}

.promo-section-title {
  color: #204d85;
  font-weight: 700;
  font-size: 36px;
  margin-bottom: 15px;
}

.promo-section-subtitle {
  color: #6c757d;
  font-size: 18px;
}

.promo-contact-text {
  color: #6c757d;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.promo-section-heading {
  color: #204d85;
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 30px;
}

.promo-section-heading i {
  color: #d22128;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .promo-logos img {
    height: 180px;
  }
}

@media (max-width: 768px) {
  .promo-hero {
    height: 100vh;
    max-height: 100vh;
    background-attachment: scroll;
  }

  .promo-hero .container {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .promo-hero h1 {
    font-size: 32px;
  }

  .promo-hero p {
    font-size: 16px;
  }

  .promo-logos img {
    height: 140px;
  }

  .promo-card {
    padding: 25px;
    margin-bottom: 20px;
  }

  .prize-table {
    font-size: 14px;
  }

  .prize-table th,
  .prize-table td {
    padding: 10px;
  }

  .timeline-item {
    flex-direction: column;
    gap: 10px;
  }

  .timeline-date {
    min-width: auto;
  }

  .promo-cta {
    flex-direction: column;
  }

  .btn-promo-primary,
  .btn-promo-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 576px) {
  .promo-hero h1 {
    font-size: 28px;
  }

  .promo-hero .container {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .promo-logos {
    gap: 10px;
    margin-bottom: 15px;
  }

  .promo-logos img {
    height: 100px;
    padding: 6px 10px;
  }

  .scroll-indicator {
    bottom: 20px;
  }

  .scroll-indicator span {
    font-size: 10px;
  }

  .scroll-indicator i {
    font-size: 20px;
  }

  .promo-card h3 {
    font-size: 20px;
  }

  .promo-card h3 i {
    font-size: 24px;
  }
}

/* Landscape Mobile Orientation */
@media (max-height: 600px) and (orientation: landscape) {
  .promo-hero {
    height: auto;
    min-height: 100vh;
    max-height: none;
  }

  .promo-hero .container {
    padding-top: 100px;
    padding-bottom: 40px;
  }

  .scroll-indicator {
    display: none;
  }

  .promo-logos img {
    height: 80px;
  }

  .promo-logo-baltic {
    height: 15px !important;
  }

  .promo-hero h1 {
    font-size: 24px;
    margin-bottom: 15px;
  }

  .promo-hero p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .promo-badge {
    font-size: 12px;
    padding: 6px 15px;
    margin-bottom: 15px;
  }
}