@import url('https://fonts.googleapis.com/css2?family=Oxygen:wght@300;400;700&family=Quattrocento:wght@400;700&display=swap');

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

body {
  font-family: 'Oxygen', sans-serif;
  background-color: #e0ddd8;
  color: #4a4a4a;
  line-height: 1.5;
  font-size: 17px;
}

a {
  color: #3a5ba0;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== HEADER ===== */
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 50;
}

.site-header.subpage-header {
  background: rgba(139, 26, 26, 0.9);
}

.site-header .logo img {
  height: 103px;
  width: auto;
}

.menu-toggle {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Oxygen', sans-serif;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
  letter-spacing: 0;
}

/* ===== NAV OVERLAY ===== */
.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-menu {
  position: fixed;
  top: 0;
  right: -300px;
  width: 270px;
  height: 100%;
  background: #1a1a1a;
  z-index: 999;
  transition: right 0.3s ease;
  padding: 56px 24px;
  display: flex;
  flex-direction: column;
}

.nav-menu.active {
  right: 0;
}

.nav-close {
  align-self: flex-end;
  background: none;
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  margin-bottom: 30px;
  line-height: 1;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-menu ul li {
  border: none;
}

.nav-menu ul li a {
  display: block;
  color: #7c7c7c;
  padding: 4px 0;
  font-family: 'Oxygen', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-menu ul li a:hover {
  color: #fff;
  text-decoration: none;
}

/* ===== FOOTER ===== */
.footer-red-bar {
  background-color: #990000;
  height: 96px;
  width: 100%;
}

.footer-content {
  background-color: #e0ddd8;
  text-align: center;
  padding: 96px 20px 192px;
}

.footer-content .footer-logo {
  height: 119px;
  margin-bottom: 40px;
}

.footer-content p {
  font-size: 17px;
  color: rgb(66, 66, 66);
  margin: 4px 0;
  line-height: 1.6;
  font-family: 'Oxygen', sans-serif;
}

.footer-content a {
  color: rgb(66, 66, 66);
  text-decoration: underline;
}

.footer-content a:hover {
  color: #333;
}

/* ===== HERO (Homepage) ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 500px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 0;
}

.hero .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(223,222,218,0.85), rgba(176,172,163,0.85), rgba(129,121,108,0.85));
  z-index: 1;
}

.hero .hero-text {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  padding: 0 20px;
  max-width: 900px;
}

.hero .hero-text h1 {
  font-family: 'Quattrocento', serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1.3;
}

/* ===== DARK RED SECTION ===== */
.section-dark-red {
  background-color: #8b1a1a;
  color: #fff;
  padding: 80px 20px;
  text-align: center;
}

.section-dark-red .inner {
  max-width: 800px;
  margin: 0 auto;
}

.section-dark-red h2 {
  font-family: 'Quattrocento', serif;
  font-size: 30px;
  font-weight: 400;
  margin-bottom: 30px;
  font-style: italic;
}

.section-dark-red p {
  font-size: 17px;
  line-height: 1.7;
  font-weight: 300;
}

/* ===== CARDS SECTION ===== */
.cards-section {
  background-color: #e0ddd8;
  padding: 80px 20px;
  text-align: center;
}

.cards-section h2 {
  font-family: 'Quattrocento', serif;
  font-size: 26px;
  letter-spacing: 3px;
  margin-bottom: 50px;
  font-weight: 400;
  color: #4a4a4a;
  text-transform: uppercase;
}

.cards-row {
  display: flex;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.card {
  flex: 1;
  min-width: 280px;
  max-width: 340px;
  text-align: left;
}

.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  margin-bottom: 16px;
}

.card p {
  font-size: 15px;
  line-height: 1.6;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background-color: #d5d0ca;
  padding: 60px 20px;
  text-align: center;
}

.cta-section .inner {
  max-width: 800px;
  margin: 0 auto;
}

.cta-section .label {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  margin-bottom: 16px;
}

.cta-section h2 {
  font-family: 'Quattrocento', serif;
  font-size: 26px;
  font-weight: 400;
  color: #4a4a4a;
  margin-bottom: 16px;
}

.cta-section a.read-more {
  display: inline-block;
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid #8a8a8a;
  color: #4a4a4a;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  font-family: 'Oxygen', sans-serif;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #4a4a4a;
  color: #fff;
  text-decoration: none;
}

/* ===== TWO COLUMNS ===== */
.two-columns {
  display: flex;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px;
  flex-wrap: wrap;
}

.two-columns .col {
  flex: 1;
  min-width: 300px;
}

.two-columns h2 {
  font-family: 'Quattrocento', serif;
  font-size: 22px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  font-weight: 400;
  text-transform: uppercase;
}

.two-columns img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  margin-bottom: 16px;
}

.two-columns p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.7;
}

/* ===== SUBPAGE CONTENT ===== */
.page-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 20px 80px;
  padding-top: 160px;
}

.page-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
  color: #6a6a6a;
}

.page-content h1 {
  font-family: 'Quattrocento', serif;
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  color: #7a7a7a;
  margin-bottom: 30px;
  line-height: 1.3;
}

.page-content h2 {
  font-family: 'Quattrocento', serif;
  font-size: 24px;
  font-weight: 400;
  color: #7a7a7a;
  margin-top: 40px;
  margin-bottom: 16px;
}

.page-content h3 {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-top: 50px;
  margin-bottom: 12px;
  color: #6a6a6a;
}

.page-content p {
  margin-bottom: 18px;
  line-height: 1.7;
}

.page-content em {
  font-style: italic;
}

.page-content ul {
  margin: 16px 0 24px 24px;
}

.page-content ul li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-content video {
  width: 100%;
  max-width: 800px;
  margin: 20px 0 30px;
}

/* ===== KOMMENDATOR LAYOUT ===== */
.kommendator-layout {
  display: flex;
  gap: 40px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.kommendator-layout .portrait {
  flex: 0 0 350px;
  max-width: 100%;
}

.kommendator-layout .portrait img {
  width: 100%;
  object-fit: cover;
}

.kommendator-layout .bio {
  flex: 1;
  min-width: 280px;
}

.jubilee-layout {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.jubilee-layout .text-col {
  flex: 1;
  min-width: 280px;
}

.jubilee-layout .image-col {
  flex: 0 0 350px;
  max-width: 100%;
}

.jubilee-layout .image-col img {
  width: 100%;
}

/* ===== CONTACT REGIONS ===== */
.contact-regions {
  margin: 30px 0;
}

.contact-regions .region {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ccc;
}

.contact-regions .region strong {
  display: block;
  margin-bottom: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .site-header {
    padding: 15px 20px;
  }

  .site-header .logo img {
    height: 70px;
  }

  .hero .hero-text h1 {
    font-size: clamp(22px, 5vw, 32px);
    letter-spacing: 1px;
  }

  .section-dark-red {
    padding: 50px 20px;
  }

  .section-dark-red h2 {
    font-size: 24px;
  }

  .cards-section {
    padding: 50px 20px;
  }

  .cards-section h2 {
    font-size: 22px;
  }

  .cards-row {
    flex-direction: column;
    align-items: center;
  }

  .card {
    max-width: 100%;
  }

  .two-columns {
    flex-direction: column;
  }

  .kommendator-layout {
    flex-direction: column;
  }

  .kommendator-layout .portrait {
    flex: none;
    max-width: 350px;
  }

  .jubilee-layout {
    flex-direction: column;
  }

  .jubilee-layout .image-col {
    flex: none;
    max-width: 350px;
  }

  .nav-menu {
    width: 100%;
  }

  .page-content {
    padding-top: 120px;
  }

  .page-content h1 {
    font-size: clamp(22px, 5vw, 30px);
  }

  .cta-section {
    padding: 40px 20px;
  }
}
