/* ============================================================
   Circle of Excellence 2025 — Shared Stylesheet
   Font: Montserrat | Brand: #30ab0d
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

:root {
  --green:        #30ab0d;
  --green-dark:   #258a09;
  --green-light:  #e8f7e3;
  --green-soft:   rgba(48,171,13,0.10);
  --dark:         #1a1a1a;
  --body:         #374151;
  --muted:        #6b7280;
  --border:       #e5e7eb;
  --bg-light:     #f9fafb;
  --white:        #ffffff;
  --font:         'Montserrat', sans-serif;
  --nav-h:        110px;
  --radius:       10px;
  --shadow-sm:    0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:    0 4px 16px rgba(0,0,0,.10);
  --max:          1100px;
  --content:      780px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--body);
  background: var(--white);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
ul { list-style: none; }

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: var(--content); margin: 0 auto; padding: 0 24px; }
.section { padding: 72px 0; }

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .18s, color .18s, transform .15s, box-shadow .15s;
}
.btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-green  { background: var(--green); color: #fff; border-color: var(--green); }
.btn-green:hover { background: var(--green-dark); border-color: var(--green-dark); }
.btn-outline { background: transparent; border-color: var(--green); color: var(--green); }
.btn-outline:hover { background: var(--green); color: #fff; }
.btn-white  { background: #fff; color: var(--green); border-color: #fff; }
.btn-white:hover { background: rgba(255,255,255,.88); }

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--green);
  height: var(--nav-h);
  box-shadow: 0 2px 12px rgba(0,0,0,.18);
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.nav__logo img { height: 100px; filter: brightness(0) invert(1); }
.nav__links { display: flex; align-items: center; gap: 2px; }
.nav__links a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 7px 13px;
  border-radius: 5px;
  transition: background .18s, color .18s;
  white-space: nowrap;
}
.nav__links a:hover, .nav__links a.active {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.nav__links a.nav__cta {
  background: #fff;
  color: var(--green);
  margin-left: 8px;
  padding: 7px 16px;
}
.nav__links a.nav__cta:hover { background: rgba(255,255,255,.88); }

.nav__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav__burger span {
  display: block; width: 22px; height: 2px;
  background: white; border-radius: 2px; transition: .28s;
}
.nav__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__burger.open span:nth-child(2) { opacity: 0; }
.nav__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__drawer {
  display: none;
  flex-direction: column;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--green-dark);
  padding: 6px 0 16px;
  z-index: 899;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
}
.nav__drawer.open { display: flex; }
.nav__drawer a {
  color: rgba(255,255,255,.9);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 13px 24px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  transition: background .15s;
}
.nav__drawer a:hover { background: rgba(255,255,255,.08); }
.nav__drawer a:last-child { border-bottom: none; }
.nav__drawer a.nav__cta {
  margin: 12px 24px 0;
  background: #fff;
  color: var(--green);
  text-align: center;
  border-radius: 6px;
  border-bottom: none;
}

/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  background-image: url('https://eventmobi-page-builder-assets-production.s3.amazonaws.com/images/events_60583_page_builder/banners-COE2.jpg');
  background-size: cover;
  background-position: center 30%;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,.62) 100%);
}
.hero__content {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--max);
  margin: 0 auto;
  padding: 64px 28px;
}
.hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,.3);
  color: white;
  font-size: 11px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 20px;
  margin-bottom: 18px;
}
.hero__title {
  font-size: clamp(38px, 6.5vw, 70px);
  font-weight: 300; color: white;
  line-height: 1.05; letter-spacing: -.02em;
  margin-bottom: 14px;
}
.hero__title strong { font-weight: 800; }
.hero__date {
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 500; color: rgba(255,255,255,.88);
  margin-bottom: 32px; letter-spacing: .04em;
}

/* PAGE HERO */
.page-hero {
  position: relative;
  background-image: url('https://eventmobi-page-builder-assets-production.s3.amazonaws.com/images/events_60583_page_builder/banners-COE2.jpg');
  background-size: cover;
  background-position: center 30%;
  padding: 52px 24px 44px;
  text-align: center;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(48, 171, 13, 0.78);
}
.page-hero h1 {
  position: relative; z-index: 1;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 700; color: white;
  letter-spacing: -.01em; margin-bottom: 10px;
}
.page-hero p {
  position: relative; z-index: 1;
  color: rgba(255,255,255,.85);
  font-size: 16px; font-weight: 400;
}

/* SECTION HEADING */
.s-head { text-align: center; margin-bottom: 52px; }
.s-head__label {
  display: inline-block;
  font-size: 11.5px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.s-head__title {
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 700; color: var(--dark);
  letter-spacing: -.01em; margin-bottom: 12px;
}
.s-head__line {
  width: 44px; height: 3px;
  background: var(--green); border-radius: 2px;
  margin: 0 auto 14px;
}
.s-head__sub {
  color: var(--muted); font-size: 16px;
  max-width: 520px; margin: 0 auto;
}

/* WELCOME */
.welcome { padding: 80px 24px; background: white; text-align: center; }
.welcome__kicker {
  font-size: 12px; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--green); margin-bottom: 10px;
}
.welcome__heading {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700; color: var(--dark);
  margin-bottom: 0; letter-spacing: -.01em;
}
.welcome__line {
  width: 44px; height: 3px;
  background: var(--green); border-radius: 2px;
  margin: 20px auto 32px;
}
.welcome__opener {
  font-size: 18px; font-weight: 600; color: var(--dark);
  max-width: var(--content); margin: 0 auto 20px;
}
.welcome__body {
  font-size: 16px; line-height: 1.82; color: var(--body);
  max-width: var(--content); margin: 0 auto 14px;
}
.welcome__actions {
  margin-top: 36px;
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}

/* GLANCE */
.glance { padding: 72px 24px; background: var(--bg-light); }
.glance__grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}
.glance__card {
  background: white; border-radius: var(--radius);
  padding: 32px 20px; text-align: center;
  border-top: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
  transition: box-shadow .2s, transform .2s;
}
.glance__card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.glance__card img { width: 68px; height: 68px; object-fit: contain; margin: 0 auto 16px; }
.glance__card h3 {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--green); margin-bottom: 8px;
}
.glance__card p { font-size: 14.5px; color: var(--body); line-height: 1.5; }
.glance__footer { text-align: center; margin-top: 36px; }

/* AGENDA */
.agenda-wrap { max-width: 740px; margin: 0 auto; padding: 16px 0 48px; }
.day-block { margin-bottom: 36px; }
.day-header { display: flex; align-items: center; margin-bottom: 6px; }
.day-label {
  background: var(--green); color: white;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  padding: 5px 18px; border-radius: 20px;
  white-space: nowrap;
}
.day-rule { flex: 1; height: 1px; background: var(--border); margin-left: 14px; }
.event-row {
  display: flex; align-items: flex-start;
  padding: 10px 10px; border-radius: 6px;
  transition: background .15s;
}
.event-row:hover { background: var(--bg-light); }
.event-time {
  font-size: 12.5px; font-weight: 700;
  color: var(--green); min-width: 130px;
  padding-right: 12px; padding-top: 3px;
  line-height: 1.4; letter-spacing: .02em;
  flex-shrink: 0;
}
.event-dot {
  width: 7px; height: 7px;
  background: var(--green); border-radius: 50%;
  margin-top: 6px; margin-right: 14px; flex-shrink: 0;
}
.event-dot--leisure { background: #d1d5db; }
.event-desc { font-size: 15px; font-weight: 500; color: var(--dark); line-height: 1.55; }
.event-desc a { color: var(--green); text-decoration: underline; }
.event-desc--leisure { color: #9ca3af; font-weight: 400; font-style: italic; }
.agenda-note {
  background: var(--green-light);
  border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  font-size: 14.5px; color: var(--dark); line-height: 1.65;
  margin-top: 24px;
}

/* TABS */
.tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--border);
  margin-bottom: 48px;
}
.tab-btn {
  font-family: var(--font);
  font-size: 13.5px; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  color: var(--muted); background: none; border: none;
  padding: 14px 28px; cursor: pointer;
  position: relative; transition: color .18s;
}
.tab-btn::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--green);
  transform: scaleX(0); transition: transform .22s;
}
.tab-btn.active { color: var(--green); }
.tab-btn.active::after { transform: scaleX(1); }
.tab-btn:hover { color: var(--green); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.schedule-summary {
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--green);
  padding: 22px 24px; margin-bottom: 16px;
}
.schedule-summary h4 {
  font-size: 12px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .1em; margin-bottom: 12px;
}
.schedule-summary li {
  font-size: 14px; color: var(--body);
  padding: 4px 0 4px 20px; position: relative; line-height: 1.5;
}
.schedule-summary li::before { content: '→'; position: absolute; left: 0; color: var(--green); font-weight: 700; }
.schedule-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 48px; }

.activity-intro {
  background: var(--green-light); border-radius: var(--radius);
  padding: 22px 26px; margin-bottom: 40px;
  font-size: 15px; line-height: 1.72; color: var(--dark);
}
.activity-block { padding: 40px 0; border-bottom: 1px solid var(--border); }
.activity-block:last-child { border-bottom: none; padding-bottom: 0; }
.activity-block h2 {
  font-size: 21px; font-weight: 700; color: var(--green);
  margin-bottom: 14px; letter-spacing: -.01em;
}
.activity-block p { font-size: 15.5px; line-height: 1.78; color: var(--body); }
.activity-img {
  width: 100%; border-radius: var(--radius);
  margin-top: 20px; max-height: 600px; object-fit: cover;
  box-shadow: var(--shadow-md); transition: transform .3s;
}
.activity-img:hover { transform: scale(1.01); }

/* MENUS */
.menu-restaurant { padding: 48px 0; border-bottom: 1px solid var(--border); }
.menu-restaurant:last-child { border-bottom: none; padding-bottom: 0; }
.menu-restaurant h2 { font-size: 22px; font-weight: 700; color: var(--green); margin-bottom: 4px; }
.menu-restaurant__meta { font-size: 14px; color: var(--muted); font-weight: 500; margin-bottom: 6px; }
.menu-restaurant__link {
  font-size: 13px; font-weight: 600; color: var(--green);
  text-decoration: underline; display: inline-block; margin-bottom: 22px;
}
.menu-restaurant > img {
  width: 100%; border-radius: var(--radius);
  max-height: 280px; object-fit: cover;
  box-shadow: var(--shadow-md); margin-bottom: 28px;
}
.menu-cards-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.menu-card { background: var(--bg-light); border-radius: var(--radius); padding: 26px; }
.menu-card__num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  background: var(--green); color: white;
  border-radius: 50%; font-weight: 700; font-size: 14px; margin-bottom: 16px;
}
.menu-item {
  padding: 9px 0 9px 14px;
  border-left: 2px solid var(--border);
  font-size: 15px; line-height: 1.5; color: var(--body); margin-bottom: 8px;
}
.menu-item:last-child { margin-bottom: 0; }
.menu-item strong {
  display: block; font-weight: 600; color: var(--dark);
  font-size: 11.5px; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 2px;
}
.menu-note { font-size: 13.5px; color: var(--muted); margin-top: 20px; font-style: italic; }
.drinks-box {
  background: var(--green); color: white;
  border-radius: var(--radius); padding: 24px 28px;
  margin-top: 24px; text-align: center;
}
.drinks-box h4 {
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 16px;
}
.drinks-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.drinks-tags span {
  background: rgba(255,255,255,.2);
  padding: 5px 14px; border-radius: 20px;
  font-size: 13px; font-weight: 500;
}

/* KBYG */
.kbyg-block {
  display: flex; align-items: flex-start;
  gap: 36px; padding: 52px 0;
  border-bottom: 1px solid var(--border);
}
.kbyg-block:first-child { padding-top: 40px; }
.kbyg-block:last-child { border-bottom: none; }
.kbyg-icon { flex-shrink: 0; width: 88px; text-align: center; }
.kbyg-icon img { width: 74px; height: 74px; object-fit: contain; }
.kbyg-body h2 {
  font-size: 19px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .07em; margin-bottom: 16px;
}
.kbyg-body p { font-size: 15.5px; line-height: 1.78; color: var(--body); margin-bottom: 12px; }
.kbyg-body p:last-child { margin-bottom: 0; }
.kbyg-body strong { font-weight: 700; color: var(--dark); }
.kbyg-body a { color: var(--green); text-decoration: underline; }
.kbyg-body ul { margin: 8px 0 12px; }
.kbyg-body li {
  padding: 4px 0 4px 22px; position: relative;
  font-size: 15.5px; line-height: 1.5; color: var(--body);
}
.kbyg-body li::before { content: '✓'; position: absolute; left: 0; color: var(--green); font-weight: 700; }

.hotel-row {
  display: grid; grid-template-columns: 1fr 1.6fr;
  gap: 32px; align-items: start;
}
.hotel-row img {
  width: 100%; border-radius: var(--radius);
  box-shadow: var(--shadow-md); object-fit: cover;
}

/* CONTACT */
.contact-intro {
  max-width: 580px; margin: 0 auto 48px;
  text-align: center; font-size: 16px;
  line-height: 1.7; color: var(--body);
}
.contact-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.contact-card {
  background: var(--bg-light); border-radius: var(--radius);
  padding: 30px; border-top: 3px solid var(--green);
  box-shadow: var(--shadow-sm);
}
.contact-card h3 {
  font-size: 14px; font-weight: 700; color: var(--green);
  text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px;
}
.contact-card p { font-size: 15px; line-height: 1.72; color: var(--body); margin-bottom: 8px; }
.contact-card p:last-child { margin-bottom: 0; }
.contact-card a { color: var(--green); font-weight: 600; text-decoration: none; }
.contact-card a:hover { text-decoration: underline; }
.contact-note {
  background: var(--green-light); border-left: 4px solid var(--green);
  border-radius: 0 8px 8px 0; padding: 18px 22px;
  font-size: 14.5px; color: var(--dark); line-height: 1.65; margin: 36px 0;
}
.contact-cta {
  background: var(--green); border-radius: var(--radius);
  padding: 52px 24px; text-align: center; margin-top: 48px;
}
.contact-cta h2 { font-size: 26px; font-weight: 700; color: white; margin-bottom: 10px; }
.contact-cta p { color: rgba(255,255,255,.82); margin-bottom: 28px; font-size: 15px; }

/* FOOTER */
.footer { background: var(--green); padding: 44px 24px; text-align: center; }
.footer__inner {
  max-width: var(--max); margin: 0 auto;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
}
.footer img { height: 100px; filter: brightness(0) invert(1); }
.footer__links { display: flex; flex-wrap: wrap; gap: 4px; justify-content: center; }
.footer__links a {
  color: rgba(255,255,255,.78); text-decoration: none;
  font-size: 11.5px; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 4px; transition: color .15s, background .15s;
}
.footer__links a:hover { color: white; background: rgba(255,255,255,.12); }
.footer__copy { color: rgba(255,255,255,.58); font-size: 12.5px; }

/* FADE UP */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .glance__grid { grid-template-columns: repeat(2,1fr); }
  .schedule-pair { grid-template-columns: 1fr; }
  .menu-cards-row { grid-template-columns: 1fr; }
  .hotel-row { grid-template-columns: 1fr; }
  .contact-cards { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .nav__links { display: none; }
  .nav__burger { display: flex; }
  .nav__logo img { height: 48px; }
  .hero { min-height: 380px; }
  .hero__content { padding: 44px 20px; }
  .kbyg-block { flex-direction: column; gap: 16px; }
  .kbyg-icon { width: auto; }
  .event-time { min-width: 100px; font-size: 12px; }
  .event-desc { font-size: 14px; }
  .welcome { padding: 56px 20px; }
  .section { padding: 52px 0; }
  .page-hero { padding: 40px 20px 32px; }
  .tab-btn { padding: 12px 16px; font-size: 12.5px; }
}
@media (max-width: 480px) {
  .glance__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .glance__card { padding: 20px 14px; }
  .glance__card img { width: 52px; height: 52px; }
}
