/* Custom Variables for Pink Theme */
:root {
  --pico-primary: #e6005c;
  --pico-primary-hover: #c4004e;
  --pico-background-color: #ffffff;
  --pico-color: #333333;
  --pico-card-background-color: #ffffff;
  --pico-form-element-background-color: #f8f9fa;
  --pico-form-element-border-color: #e6005c;
  --pico-form-element-color: #333;
  --pico-h1-color: #c4004e;
  --pico-h2-color: #c4004e;
  --pico-h3-color: #e6005c;
}

body {
  background: #ffffff;
  min-height: 100vh;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Nav */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  position: relative;
  z-index: 10;
}

.top-nav ul {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  color: var(--pico-primary);
  text-decoration: none;
}

.nav-link {
  color: #c4004e;
  text-decoration: none;
  font-weight: 500;
}

.nav-link:hover {
  text-decoration: underline;
}

.btn-primary {
  background: var(--pico-primary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: bold;
}

/* Full Width Hero */
.hero-full {
  background-image: url('hero.png');
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  position: relative;
}

.hero-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

.hero-left {
  max-width: 55%;
}

.hero-title {
  font-size: 4.5rem;
  line-height: 1.1;
  color: #c4004e;
  margin-bottom: 1.5rem;
  font-weight: 800;
  text-shadow: none;
}

.hero-details {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.detail-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #c4004e;
  font-weight: 500;
}

.dot-separator {
  color: #c4004e;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 2rem;
  line-height: 1.5;
  font-weight: 500;
}

.hero-btn {
  display: inline-block;
  font-size: 1.2rem;
  padding: 0.75rem 2rem;
  margin-bottom: 3rem;
  border: none;
  border-radius: 2rem;
  background: #e6005c;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.countdown-wrapper {
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid #ffd1dc;
  border-radius: 1rem;
  padding: 1.5rem;
  display: inline-block;
  box-shadow: 0 10px 30px rgba(230,0,92,0.1);
  min-width: 350px;
}

.countdown-header {
  color: #e6005c;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 1px;
  margin-bottom: 1rem;
  text-align: center;
}

.countdown-timer-clean {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  color: #e6005c; /* colons */
  font-size: 2.5rem;
  font-weight: bold;
}

.time-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #e6005c;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1;
}

.time-box span {
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  font-weight: normal;
  margin-top: 0.5rem;
}



/* Sections General */
section {
  margin-bottom: 4rem;
}

/* About Section Improvements */
#about {
  text-align: center;
}

.heading-underline {
  width: 50px;
  height: 3px;
  background-color: var(--pico-primary);
  margin: 0 auto 1.5rem;
  border-radius: 2px;
}

.about-description {
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.timeline-container {
  position: relative;
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 1rem;
  padding: 3rem 1rem 2rem;
  background: rgba(255, 255, 255, 0.02);
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  top: 4.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  border-top: 2px dashed rgba(0, 180, 216, 0.5);
  z-index: 0;
}

.timeline-items {
  display: flex;
  justify-content: space-around;
  position: relative;
  z-index: 1;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
}

.timeline-icon {
  background-color: var(--pico-primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-bottom: 1rem;
  box-shadow: 0 0 0 6px var(--pico-background-color);
}

.timeline-icon svg {
  width: 24px;
  height: 24px;
}

.timeline-time {
  color: var(--pico-primary);
  font-weight: bold;
  margin-bottom: 0.25rem;
}

.timeline-text {
  font-size: 0.9rem;
  color: #fff;
}

/* Make it responsive */
@media (max-width: 768px) {
  .timeline-items {
    flex-direction: column;
    gap: 2rem;
  }
  .timeline-item {
    width: 100%;
  }
  .timeline-line {
    top: 3rem;
    bottom: 3rem;
    left: 50%;
    right: auto;
    width: 2px;
    height: auto;
    border-top: none;
    border-left: 2px dashed rgba(0, 180, 216, 0.5);
  }
}


/* Fun Facts Corner */
.fact-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  border: 1px solid rgba(0, 180, 216, 0.3);
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#fact-text {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 1.5rem;
  transition: opacity 0.3s ease;
}

/* Success Message */
.success-alert {
  background-color: #2b9348;
  color: white;
  border: none;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  animation: slideIn 0.5s ease;
}

.success-alert header {
  font-size: 1.25rem;
  font-weight: bold;
  background-color: rgba(0, 0, 0, 0.1);
  margin-bottom: 0.5rem;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

footer {
  text-align: center;
  opacity: 0.7;
}
