/* ================================================
   NORMUN 2026 — Global Styles
   ================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=PT+Serif:ital,wght@0,400;0,700;1,400;1,700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:    #1d3449;   /* dark bg: sections, navbar, cards */
  --navy2:   #152d3e;   /* deeper dark for gradients */
  --blue:    #00205b;   /* deep UN blue, gradient partner */
  --accent:  #9dbdd0;   /* light steel blue — decorative, on dark or as subtle trim */
  --white:   #ffffff;
  --offwhite:#f5f6f8;
  --gray:    #5a6475;
  --text:    #1e2535;
  --light:   #e3e3e8;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'PT Serif', serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 14px 38px;
  font-family: 'PT Serif', serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-accent {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-accent:hover {
  background: var(--navy2);
  border-color: var(--navy2);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,32,91,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Section Wrapper ── */
.section { padding: 90px 24px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-label {
  font-family: 'PT Serif', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 14px;
}
.section-title {
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 22px;
}
.section-title.white { color: var(--white); }
.section-divider {
  width: 52px;
  height: 3px;
  background: var(--accent);
  margin: 0 0 32px 0;
}
.section-divider.center { margin: 0 auto 32px; }

/* ================================================
   NAVIGATION
   ================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 72px;
  background: var(--navy);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: background 0.3s;
}
#navbar.scrolled {
  background: var(--navy);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-logo img {
  height: 56px;
  width: auto;
}
.nav-logo-text {
  font-family: 'PT Serif', serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 2px;
  color: var(--white);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: 'PT Serif', serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--white);
  padding: 8px 14px;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--white); }


.nav-instagram {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--white) !important;
}
.nav-instagram svg { width: 16px; height: 16px; fill: currentColor; }

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  padding: 20px 24px 28px;
  z-index: 999;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'PT Serif', serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--accent); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  #navbar { padding: 0 24px; }
}

/* ================================================
   HERO
   ================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(29,52,73,0.55) 0%, rgba(29,52,73,0.7) 100%),
    url('images/hero-bg.jpg') center/cover no-repeat;
}
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1d3449 0%, #00205b 50%, #1d3449 100%);
  opacity: 0;
}
.hero-particles {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(157,189,208,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,32,91,0.2) 0%, transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 24px;
}
.hero-eyebrow {
  font-family: 'PT Serif', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 22px;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 18px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.4);
}
.hero-title span { color: var(--accent); }
.hero-subtitle {
  font-family: 'PT Serif', serif;
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}
.hero-date {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1rem, 3vw, 1.5rem);
  color: var(--accent);
  margin-bottom: 44px;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-family: 'PT Serif', serif;
  font-size: 0.65rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  animation: fadeIn 2s 1s both;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ================================================
   THEME BANNER
   ================================================ */

/* ================================================
   MISSION / VISION SPLIT
   ================================================ */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.mv-block {
  padding: 80px 60px;
}
.mv-block.navy { background: var(--navy); }
.mv-block.offwhite { background: var(--offwhite); }
.mv-block p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--white);
}
.mv-block.offwhite p { color: #4a5568; }
.mv-block .section-title { font-size: 2rem; }

@media (max-width: 768px) {
  .mv-grid { grid-template-columns: 1fr; }
  .mv-block { padding: 60px 28px; }
}

/* ================================================
   VALUES
   ================================================ */
.values-section { background: var(--white); text-align: center; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.value-card {
  padding: 48px 32px;
  border: 1px solid var(--light);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(29,52,73,0.1);
  border-color: var(--navy);
}
.value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  border-radius: 50%;
}
.value-icon svg { width: 26px; height: 26px; fill: var(--white); }
.value-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.value-card p { color: #5a6475; font-size: 0.97rem; line-height: 1.75; }

@media (max-width: 768px) {
  .values-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ================================================
   WHAT IS MUN
   ================================================ */
.mun-section {
  background: var(--navy);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.mun-section::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157,189,208,0.06) 0%, transparent 70%);
}
.mun-section .section-title { color: var(--white); }
.mun-quote {
  max-width: 780px;
  margin: 0 auto;
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  line-height: 1.85;
  color: var(--white);
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 28px;
  text-align: left;
}
.mun-source {
  font-style: normal;
  font-size: 0.8rem;
  color: var(--accent);
  font-family: 'PT Serif', serif;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: 16px;
}
.mun-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 64px;
  text-align: left;
}
.mun-detail h4 {
  font-family: 'PT Serif', serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.mun-detail p { color: var(--white); font-size: 0.95rem; }

@media (max-width: 768px) {
  .mun-details { grid-template-columns: 1fr; }
}

/* ================================================
   PAGE HERO (inner pages)
   ================================================ */
.page-hero {
  padding: 150px 24px 90px;
  background: var(--navy);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--accent), transparent);
}
.page-hero-eyebrow {
  font-family: 'PT Serif', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 18px;
}
.page-hero p {
  color: var(--white);
  font-size: 1.05rem;
  max-width: 580px;
  margin: 0 auto;
}

/* ================================================
   CONTACT PAGE
   ================================================ */
/* Sticky footer: fill the viewport and pin the footer to the bottom,
   centering the cards in whatever space is left over. */
body.contact-page { display: flex; flex-direction: column; min-height: 100vh; }
body.contact-page .contact-section {
  flex: 1 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body.contact-page footer { flex-shrink: 0; }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.contact-card {
  background: var(--white);
  padding: 40px 28px;
  border-radius: 4px;
  border-top: 3px solid var(--navy);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.contact-icon {
  width: 56px;
  height: 56px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.contact-icon svg { width: 26px; height: 26px; fill: var(--white); }
.contact-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.contact-card p {
  color: #5a6475;
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 18px;
}
.contact-card .contact-name {
  font-family: 'Playfair Display', serif;
  color: var(--blue);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-card a {
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  word-break: break-word;
  transition: color 0.2s ease;
}
.contact-card a + a { margin-top: 8px; }
.contact-card a:hover { color: var(--blue); }

@media (max-width: 820px) {
  .contact-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ================================================
   ABOUT PAGE
   ================================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-intro-text .section-label { margin-bottom: 12px; }
.about-intro-text p {
  color: #4a5568;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-image-wrap {
  position: relative;
}
.about-image-frame {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.about-image-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-image-accent {
  position: absolute;
  bottom: -18px; right: -18px;
  width: 120px; height: 120px;
  background: var(--accent);
  border-radius: 2px;
  z-index: -1;
}

.theme-block {
  background: var(--navy);
  color: var(--white);
  border-radius: 4px;
  padding: 56px;
  margin: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.theme-block::before {
  content: '"';
  position: absolute;
  top: -20px; left: 30px;
  font-size: 200px;
  color: rgba(157,189,208,0.08);
  font-family: Georgia, serif;
  line-height: 1;
}
.theme-block .section-label { color: var(--accent); }
.theme-block h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 22px;
  font-style: italic;
}
.theme-block p {
  max-width: 660px;
  margin: 0 auto;
  color: var(--white);
  line-height: 1.8;
}

.about-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 16px;
}
.about-pillar {
  background: var(--offwhite);
  padding: 36px 32px;
  border-radius: 4px;
  border-top: 3px solid var(--navy);
}
.about-pillar h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 12px;
}
.about-pillar p { color: #5a6475; font-size: 0.96rem; line-height: 1.75; }

@media (max-width: 900px) {
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .about-pillars { grid-template-columns: 1fr; }
  .theme-block { padding: 40px 28px; }
}

/* ================================================
   COMMITTEES
   ================================================ */
.committees-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px;
}
.committee-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 36px;
  transition: transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.committee-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,30,44,0.93) 0%, rgba(13,30,44,0.55) 55%, rgba(13,30,44,0.2) 100%);
  z-index: 0;
  transition: background 0.3s;
}
.committee-card:hover::after {
  background: linear-gradient(to top, rgba(13,30,44,0.97) 0%, rgba(13,30,44,0.68) 55%, rgba(13,30,44,0.35) 100%);
}
.committee-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--navy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
  z-index: 2;
}
.committee-card:hover::before { transform: scaleX(1); }
.committee-card > * { position: relative; z-index: 1; }
.committee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}
.committee-card:nth-child(7) { grid-column: 2 / span 2; }
.committee-card:nth-child(8) { grid-column: 4 / span 2; }
.committee-card.coming-soon { opacity: 0.65; pointer-events: none; }
.committee-badge {
  display: inline-block;
  align-self: center;
  text-align: center;
  font-family: 'PT Serif', serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  background: var(--white);
  color: var(--navy);
  padding: 10px 20px;
  border-radius: 2px;
  margin-bottom: 16px;
}
.committee-topics { margin-top: auto; padding-top: 20px; }
.committee-topics h4 {
  font-family: 'PT Serif', serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}
.committee-topics li {
  display: flex;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--white);
  line-height: 1.65;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.committee-topics li:last-child { border-bottom: none; }
.committee-topics li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  min-width: 4px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}

@media (max-width: 900px) {
  .committees-grid { grid-template-columns: repeat(2, 1fr); }
  .committee-card { grid-column: span 1; min-height: 360px; }
  .committee-card:nth-child(7),
  .committee-card:nth-child(8) { grid-column: span 1; }
}
@media (max-width: 560px) {
  .committees-grid { grid-template-columns: 1fr; }
  .committee-card { min-height: 420px; }
}

/* ================================================
   EXECUTIVE STAFF
   ================================================ */
.staff-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}
.staff-intro p { color: #5a6475; font-size: 1.02rem; line-height: 1.8; }
.staff-category-title {
  font-family: 'PT Serif', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gray);
  text-align: center;
  margin: 56px 0 32px;
  position: relative;
}
.staff-category-title::before, .staff-category-title::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 28%;
  height: 1px;
  background: var(--light);
}
.staff-category-title::before { left: 0; }
.staff-category-title::after  { right: 0; }

.staff-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.staff-grid .staff-card { flex: 0 0 calc(25% - 18px); }
.staff-card {
  text-align: center;
  padding: 32px 20px;
  border: 1px solid var(--light);
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.staff-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(29,52,73,0.09);
}
.staff-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.staff-avatar img { width: 100%; height: 100%; object-fit: cover; }
.staff-avatar svg { width: 36px; height: 36px; fill: rgba(255,255,255,0.4); }
.staff-card h3 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.staff-card .role {
  font-family: 'PT Serif', serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gray);
}

@media (max-width: 900px) {
  .staff-grid .staff-card { flex: 0 0 calc(50% - 12px); }
}
@media (max-width: 500px) {
  .staff-grid .staff-card { flex: 0 0 100%; }
}

/* ================================================
   REGISTRATION
   ================================================ */
.reg-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}
.reg-info .section-title { margin-bottom: 20px; }
.reg-info p {
  color: #4a5568;
  font-size: 1.02rem;
  line-height: 1.85;
  margin-bottom: 16px;
}
.reg-info .deadline-box {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--offwhite);
  padding: 20px 24px;
  border-radius: 4px;
  border-left: 4px solid var(--navy);
  margin: 28px 0;
}
.reg-info .deadline-box svg { width: 22px; height: 22px; fill: var(--navy); flex-shrink: 0; }
.reg-info .deadline-box p {
  margin: 0;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
}
.reg-info .deadline-box span {
  display: block;
  font-weight: 400;
  font-size: 0.85rem;
  color: #5a6475;
  margin-top: 2px;
}

.pricing-cards { display: flex; flex-direction: column; gap: 20px; }
.pricing-card {
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 4px;
  padding: 36px;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(29,52,73,0.1);
}
.pricing-card.featured {
  border: 2px solid var(--navy);
  background: var(--navy);
  color: var(--white);
}
.pricing-label {
  font-family: 'PT Serif', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 10px;
}
.pricing-card.featured .pricing-label { color: var(--accent); }
.pricing-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-amount.dark { color: var(--navy); }
.pricing-currency {
  font-size: 1.2rem;
  vertical-align: super;
  margin-right: 4px;
}
.pricing-unit {
  font-family: 'PT Serif', serif;
  font-size: 0.75rem;
  color: var(--white);
  margin-bottom: 20px;
}
.pricing-unit.dark { color: #7a8595; }
.pricing-features {
  font-size: 0.9rem;
  color: var(--white);
  line-height: 1.7;
}
.pricing-features.dark { color: #5a6475; }

.reg-note {
  margin-top: 32px;
  padding: 24px;
  background: rgba(29,52,73,0.05);
  border: 1px solid rgba(29,52,73,0.12);
  border-radius: 4px;
  text-align: center;
}
.reg-note p {
  font-size: 0.9rem;
  color: var(--navy);
  margin: 0;
}
.reg-note a { color: var(--navy); font-weight: 700; }

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

@media (max-width: 560px) {
  .reg-note .btn {
    display: block;
    width: 100%;
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    white-space: normal;
    overflow-wrap: anywhere;
    text-align: center;
  }
}

/* ================================================
   OSLO PAGE
   ================================================ */
.oslo-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 72px;
  align-items: center;
}
.oslo-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.oslo-highlight {
  background: var(--offwhite);
  padding: 24px;
  border-radius: 4px;
}
.oslo-highlight h4 {
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 8px;
}
.oslo-highlight p { font-size: 0.88rem; color: #5a6475; line-height: 1.65; }
.oslo-image-wrap {
  position: relative;
}
.oslo-image-frame {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.oslo-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.oslo-accent {
  position: absolute;
  bottom: -16px; left: -16px;
  width: 100px; height: 100px;
  background: var(--accent);
  z-index: -1;
}

.venue-block {
  margin-top: 80px;
  background: var(--navy);
  border-radius: 4px;
  padding: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.venue-block .section-title { color: var(--white); margin-bottom: 16px; }
.venue-block p { color: var(--white); line-height: 1.8; margin-bottom: 12px; }
.venue-detail {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
}
.venue-detail svg { width: 18px; height: 18px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.venue-detail span { font-size: 0.92rem; color: var(--white); }
.venue-map {
  background: rgba(255,255,255,0.05);
  border-radius: 4px;
  height: 260px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.venue-map iframe { width: 100%; height: 100%; border: none; }

.about-map {
  max-width: 720px;
  height: 360px;
  margin: 0 auto 36px;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(13,27,62,0.12);
  box-shadow: 0 18px 40px rgba(13,27,62,0.12);
}
.about-map iframe { width: 100%; height: 100%; border: none; display: block; }

@media (max-width: 600px) {
  .about-map { height: 280px; }
}

@media (max-width: 900px) {
  .oslo-grid  { grid-template-columns: 1fr; gap: 40px; }
  .venue-block { grid-template-columns: 1fr; padding: 36px 28px; }
  .oslo-highlights { grid-template-columns: 1fr; }
}

.travel-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

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

/* ── What to See & Do (attractions) ── */
.attractions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
  margin-top: 64px;
}
.attraction {
  display: flex;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--light);
  border-radius: 4px;
  padding: 32px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.attraction:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 54px rgba(29,52,73,0.13);
}
.attraction h3 {
  font-size: 1.55rem;
  color: var(--navy);
  margin-bottom: 14px;
}
.attraction-media { flex: 0 0 auto; }
.attraction-img {
  height: 440px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--blue) 0%, var(--navy) 100%);
  border-radius: 4px;
  overflow: hidden;
}
.attraction-img img { width: 100%; height: 100%; object-fit: cover; }
.attraction-address {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-family: 'PT Serif', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 16px;
}
.attraction-address svg { width: 15px; height: 15px; fill: var(--accent); flex-shrink: 0; margin-top: 2px; }
.attraction-body p {
  color: #4a5568;
  font-size: 0.92rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .attractions { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 560px) {
  .attraction { flex-direction: column; align-items: stretch; gap: 24px; }
  .attraction-img { height: auto; width: 100%; aspect-ratio: 4 / 3; }
}

/* ================================================
   FOOTER
   ================================================ */
footer {
  background: #0d1e2c;
  color: rgba(255,255,255,0.82);
  padding: 48px 40px 28px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 48px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255,255,255,0.22);
}
.footer-brand .nav-logo-text { font-size: 1.2rem; margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 0.9rem; line-height: 1.75; max-width: 300px; }
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.footer-social a:hover { border-color: var(--accent); background: rgba(157,189,208,0.12); }
.footer-social svg { width: 20px; height: 20px; fill: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: 'PT Serif', serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.78);
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  max-width: 1100px;
  margin: 32px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}

@media (min-width: 769px) {
  .footer-col { text-align: right; }
}
@media (max-width: 768px) {
  footer { padding: 36px 24px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ================================================
   UTILITY / ANIMATIONS
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

