/* ==== Reset & Base ==== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* ==== Header ==== */
header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #ffccf2 0%, #977dff 50%, #0033FF 100%);
  padding: 12px 40px;
}

.eventlogo {
  height: 100px;
  width: auto;
}

header h4 {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 18px;
  cursor: pointer;
  transition: color 0.2s ease;
}

header h4:hover {
  color: lab(76% 1.76 4.03);
}

.nav-links a:last-child h4 {
  background: #0033FF;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 6px;
  margin-left: 20px;
}

.nav-links {
  display: flex;
  align-items: center;
}

/* ==== Workshops Section ==== */
.workshops-section {
  width: 100%;
  background: linear-gradient(180deg, #2354D8 0%, #133E91 100%);
  padding: 70px 20px 90px;
}

.workshops-header {
  text-align: center;
  margin-bottom: 60px;
}

.workshops-label {
  color: #9d5cff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.workshops-title {
  color: #ffffff;
  font-size: 38px;
  font-weight: 900;
  letter-spacing: 1px;
  margin: 0;
}

.workshop-slot {
  max-width: 1100px;
  margin: 0 auto 50px;
}

.slot-time {
  color: #ffffff;
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
  background: #9d5cff;
  padding: 8px 22px;
  border-radius: 20px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workshop-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 22px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.workshop-card h4 {
  font-size: 16px;
  margin: 0 0 10px;
  color: #ffffff;
}

.workshop-card p {
  font-size: 13px;
  color: #cfd4e4;
  margin: 6px 0 0;
  line-height: 1.6;
}

.workshop-card strong {
  color: #ffffff;
}

@media (max-width: 900px) {
  .workshop-grid {
    grid-template-columns: 1fr;
  }
}

/* ==== Book Now button ==== */
.workshop-book-btn {
  margin-top: 18px;
  background: #9d5cff;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  border: none;
  padding: 11px 22px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
  align-self: flex-start;
}

.workshop-book-btn:hover {
  background: #8642f0;
}

.workshop-book-btn:disabled,
.workshop-book-btn.fully-booked {
  background: rgba(255, 255, 255, 0.12);
  color: #b8bcc8;
  cursor: not-allowed;
}

/* ==== Booking modal (shared with success popup) ==== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 16px;
}

.modal-overlay.active {
  display: flex;
}

.modal-box {
  background: #16234a;
  padding: 40px 36px;
  border-radius: 16px;
  text-align: center;
  max-width: 380px;
  width: 90%;
  animation: popIn 0.3s ease;
  position: relative;
}

@keyframes popIn {
  from { transform: scale(0.85); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  color: #b8bcc8;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
}

.modal-close-btn:hover {
  color: #ffffff;
}

.workshop-modal-box h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-box h3 {
  color: #ffffff;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 12px;
}

.workshop-modal-subtitle {
  color: #9fb0d8;
  font-size: 13px;
  margin-bottom: 22px;
}

.workshop-modal-box .form-group {
  margin-bottom: 16px;
  text-align: left;
}

.workshop-modal-box label {
  display: block;
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
}

.workshop-modal-box input {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: #274e8f;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s ease;
}

.workshop-modal-box input::placeholder {
  color: #b7c3de;
}

.workshop-modal-box input:focus {
  border-color: #9d5cff;
}

.submit-btn {
  width: 100%;
  background: #0369dd;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  padding: 13px;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 6px;
  transition: background 0.2s ease;
}

.submit-btn:hover {
  background: #9d5cff;
}

.submit-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.error-icon {
  font-size: 46px;
  margin-bottom: 14px;
}

.checkmark-circle {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
}

.checkmark {
  width: 100%;
  height: 100%;
}

.checkmark-circle-bg {
  stroke: #22c55e;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: circleDraw 0.5s ease forwards;
}

.checkmark-check {
  stroke: #22c55e;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: checkDraw 0.3s ease forwards 0.5s;
}

@keyframes circleDraw {
  to { stroke-dashoffset: 0; }
}

@keyframes checkDraw {
  to { stroke-dashoffset: 0; }
}

.modal-box p {
  color: #f6f6f7;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}

.modal-btn {
  background: #1a85ff;
  color: #ffffff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  padding: 12px 36px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.modal-btn:hover {
  background: #9d5cff;
}

/* ==== Footer ==== */
.site-footer {
  width: 100%;
  background: linear-gradient(135deg, #ffccf2 0%, #977dff 50%, #0033FF 100%);
  padding: 50px 60px 0;
  color: #ffffff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.footer-about {
  flex: 2;
  min-width: 280px;
}

.footer-logo {
  height: 100px;
  margin-bottom: 10px;
}

.footer-about p {
  color: #fdf9f9;
  font-size: 14px;
  line-height: 1.6;
  max-width: 340px;
}

.footer-col h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.footer-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fdfdfd;
  font-size: 14px;
}

.footer-contact .icon {
  font-size: 15px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}

.social-icon:hover {
  background: rgba(255, 255, 255, 0.18);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
}

.footer-bottom p {
  color: #ffffff;
  font-size: 13px;
  margin: 0;
}
/* ============================================================
   MOBILE RESPONSIVE - shared across all pages
   ============================================================ */

/* Nav links should not look like plain blue links */
header nav a {
  text-decoration: none;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 26px;
  cursor: pointer;
}

@media (max-width: 768px) {
  header {
    flex-wrap: wrap;
    padding: 12px 20px;
  }

  .eventlogo {
    height: 55px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 12px;
    align-items: flex-start;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links h4 {
    margin: 10px 0;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 28px;
  }

  .hero-description {
    font-size: 14px;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .about-title {
    font-size: 28px;
  }

  .form-container {
    padding: 30px 24px;
    margin: 30px 16px;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .sponsor-grid {
    gap: 16px;
  }

  .sponsor-card {
    width: 140px;
  }

  .workshops-title,
  .agenda-title {
    font-size: 26px;
  }
}
