/* Landing countdown / hero badge styles */
.swstrc-landing-countdown-container {
  position: relative;
  background-size: cover;
  background-position: center center;
  color: #ffffff;
  min-height: 75vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 40px 20px 40px 20px; /* Extra bottom padding for buttons */
}

.swstrc-landing-badge {
  position: relative;
  z-index: 2;
  pointer-events: none;
  margin-bottom: 60px; /* Space between badge and buttons */
}

.swstrc-badge-circle {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,0.04), rgba(0,0,0,0.12)), linear-gradient(180deg, #0b5a44 0%, #184f3f 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 50px rgba(0,0,0,0.6), inset 0 6px 24px rgba(255,255,255,0.03);
  text-align: center;
  padding: 24px;
}

.swstrc-badge-circle:before {
  content: "";
  position: absolute;
  width: 120%;
  height: 120%;
  left: -10%;
  top: -10%;
  background: radial-gradient(circle at 50% 30%, rgba(255,255,255,0.02), transparent 35%);
  border-radius: 50%;
  pointer-events: none;
}

.swstrc-badge-logo {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  padding: 0 18px;
  letter-spacing: 0.2px;
}

.swstrc-badge-date {
  margin-top: 18px;
  display: inline-block;
  background: rgba(255,255,255,0.05);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.45);
}

/* compact countdown inside badge */
.swstrc-badge-countdown .swstrc-landing-countdown-display.badge-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 12px;
}

.swstrc-badge-countdown .swstrc-landing-countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swstrc-badge-countdown .swstrc-landing-countdown-value {
  font-weight: 800;
  font-size: 28px;
  line-height: 1;
  color: #fff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

.swstrc-badge-countdown .swstrc-landing-countdown-label {
  font-size: 10px;
  letter-spacing: 1px;
  margin-top: 4px;
  color: rgba(255,255,255,0.85);
}

.swstrc-badge-countdown .swstrc-landing-countdown-separator {
  color: rgba(255,255,255,0.9);
  font-weight: 700;
}

/* keep the content readable above the badge */
.swstrc-landing-countdown-container .wrapper,
.swstrc-landing-countdown-container .swstrc-countdown-content {
  position: relative;
  z-index: 3;
}

/* smaller layouts */
@media (max-width: 900px) {
  .swstrc-badge-circle { width: 300px; height: 300px; }
  .swstrc-badge-logo { font-size: 36px; }
  
  .swstrc-landing-countdown-container {
    padding: 30px 20px 180px 20px;
  }
  
  .swstrc-landing-badge {
    margin-bottom: 50px;
  }
}

@media (max-width: 520px) {
  .swstrc-badge-circle { width: 220px; height: 220px; padding: 14px; }
  .swstrc-badge-logo { font-size: 20px; }
  .swstrc-badge-date { font-size: 13px; padding: 8px 12px; }
  
  .swstrc-landing-countdown-container {
    padding: 20px 20px 160px 20px;
  }
  
  .swstrc-landing-badge {
    margin-bottom: 40px;
  }
}

/* Reservation Buttons Section */
.swstrc-landing-buttons {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.swstrc-landing-buttons-title {
  color: #ffffff;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0,0,0,0.8);
  font-family: 'Georgia', 'Times New Roman', serif;
}

.swstrc-landing-buttons-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.swstrc-landing-buttons .button {
  min-width: 220px;
  font-size: 18px;
  padding: 16px 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  transition: all 0.3s ease;
}

.swstrc-landing-buttons .button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(0,0,0,0.6);
}

@media (max-width: 900px) {
  .swstrc-landing-buttons-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .swstrc-landing-buttons .button {
    min-width: 180px;
    font-size: 16px;
    padding: 14px 32px;
  }
}

@media (max-width: 520px) {
  .swstrc-landing-buttons-title {
    font-size: 20px;
    margin-bottom: 16px;
  }
  
  .swstrc-landing-buttons-container {
    flex-direction: column;
    gap: 12px;
  }
  
  .swstrc-landing-buttons .button {
    min-width: 100%;
    font-size: 16px;
    padding: 14px 24px;
  }
}

/* Organizer Information Section */
.swstrc-landing-organizer {
  position: relative;
  z-index: 10;
  text-align: center;
  margin-top: 40px;
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

.swstrc-landing-organizer-text {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
  margin: 0;
}

.swstrc-landing-organizer-text strong {
  font-weight: 700;
  font-size: 18px;
  display: inline-block;
  margin-top: 4px;
}

@media (max-width: 900px) {
  .swstrc-landing-organizer {
    margin-top: 32px;
  }
  
  .swstrc-landing-organizer-text {
    font-size: 15px;
  }
  
  .swstrc-landing-organizer-text strong {
    font-size: 17px;
  }
}

@media (max-width: 520px) {
  .swstrc-landing-organizer {
    margin-top: 24px;
  }
  
  .swstrc-landing-organizer-text {
    font-size: 14px;
  }
  
  .swstrc-landing-organizer-text strong {
    font-size: 16px;
  }
}
