/* KPCA CFO Summit Landing Page */
@import url("https://fonts.googleapis.com/css2?family=Marcellus&display=swap");

:root {
  --primary-blue: #1a4a7c;
  --navy-blue: #0d2d52;
  --accent-blue: #2b6cb0;
  --light-blue: #4a90c4;
  --text-dark: #333333;
  --text-muted: #555555;
  --footer-bg: #e8e8e8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  font-family: "Marcellus", serif;
  color: var(--text-dark);
  background-color: var(--white);
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

p,
.about-text,
.site-footer p {
  font-family: "Marcellus", serif;
}

/* Banner Section */
.banner-section {
  width: 100%;
  overflow: hidden;
  background: var(--white);
}

.banner-section img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

/* About Section */
.about-section {
  padding: 3rem 0 2.5rem;
}

.about-heading-wrap {
  display: flex;
  align-items: stretch;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-accent-line {
  width: 4px;
  min-height: 100%;
  background-color: var(--primary-blue);
  flex-shrink: 0;
  border-radius: 2px;
}

.about-title {
  font-size: clamp(1.1rem, 2.5vw, 1.85rem);
  font-weight: 700;
  color: var(--primary-blue);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.35;
  margin: 0 0 0.35rem 0;
}

.about-subtitle {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 600;
  color: var(--light-blue);
  margin: 0;
}

.about-text {
  font-size: clamp(0.875rem, 1.5vw, 0.95rem);
  color: var(--text-muted);
  text-align: justify;
  margin-bottom: 1rem;
}

.about-text:last-child {
  margin-bottom: 0;
}

/* Event Details Bar */
.event-info-section {
  margin: 2rem 0 3rem;
}

.event-details-bar {
  background: linear-gradient(90deg, #00030a 0%, #000b29 50%, #0a1a3d 100%);
  color: var(--white);
  padding: 2.25rem 1.5rem;
  border-radius: 8px;
  overflow: hidden;
}

.event-detail-col {
  display: flex;
  align-items: stretch;
}

.event-detail-inner {
  border-left: 2px solid rgba(255, 255, 255, 0.9);
  padding: 0.5rem 0 0.5rem 1.5rem;
  width: 100%;
  margin: 0.75rem 0;
}

.event-detail-label {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 0.65rem;
  display: block;
  opacity: 0.95;
}

.event-detail-value {
  font-size: clamp(1rem, 1.6vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  letter-spacing: 0.02em;
}

.event-detail-theme {
  text-transform: uppercase;
  font-size: clamp(0.95rem, 1.5vw, 2rem);
  line-height: 1.5;
}

.event-detail-theme sup {
  font-size: 0.55em;
  top: -0.35em;
  line-height: 0;
}

.event-detail-sub {
  font-size: clamp(1rem, 1.6vw, 2rem);
  font-weight: 400;
  line-height: 1.45;
  margin: 0.15rem 0 0;
  opacity: 0.95;
}

/* Glimpses Section */
.glimpses-section {
  padding-bottom: 3rem;
}

.glimpses-heading {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 1.75rem;
}

.glimpse-card {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.glimpse-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.glimpse-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Footer */
.site-footer {
  background-color: var(--footer-bg);
  padding: 1rem 0;
  text-align: center;
}

.site-footer p {
  margin: 0;
  font-size: 0.8rem;
  color: #666666;
}

.site-footer a {
  color: #666666;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--primary-blue);
  text-decoration: underline;
}

/* Mobile Responsive */
@media (max-width: 767.98px) {
  .about-section {
    padding: 2rem 0 1.5rem;
  }

  .about-heading-wrap {
    gap: 0.75rem;
  }

  .about-accent-line {
    width: 3px;
  }

  .about-text {
    text-align: left;
  }

  .event-info-section {
    margin: 1.5rem 0 2rem;
  }

  .event-details-bar {
    padding: 1.5rem 1rem;
  }

  .event-detail-inner {
    padding-left: 1.25rem;
    margin: 0.5rem 0;
    text-align: left;
  }

  .event-detail-col:not(:last-child) .event-detail-inner {
    border-bottom: none;
  }

  .event-detail-col:not(:last-child) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .event-detail-col:last-child {
    border-bottom: none;
  }

  .glimpse-card img {
    height: 180px;
  }

  .glimpses-section {
    padding-bottom: 2rem;
  }
}

@media (max-width: 575.98px) {
  .about-section {
    padding: 1.5rem 0 1rem;
  }

  .glimpse-card img {
    height: 160px;
  }
}
strong{
        font-weight: 800 !important;
    color: #000 !important;
}
