@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,wght@0,400;0,700;1,400&display=swap');


body {
    margin: 0;
    font-family: 'Inter', sans-serif;
    color: #333;
    background-color: #fff;
}
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 20px;
	position: sticky;
  	top: 0;
  	background-color: white;
  	z-index: 999;
  	box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

header .logo {
	height: 70px;
}

i {
  font-family: 'Inter', sans-serif;
  font-style: italic;
}

.hero {
  position: relative;
  background: url('/assets/hero.jpg') no-repeat center center/cover;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
}

.hero-text {
  color: #1B1D1C;
}

.black {
  font-weight: 900;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
	font-weight: 900;
	font-variant: small-caps;
    font-size: 3em;
}
.hero p {
    margin-top: 10px;
    font-size: 1.2em;
	letter-spacing: 0.03em;
}
.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #0A1F44;
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.text-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: left;
}


/* Logo */
.logo img {
  height: 60px;
}

.logo {
  padding-left: 10px;
  padding-right: 20px;
}


/* Warning Section */

.site-warning {
  background-color: #ffe5e5;
  color: #990000;
  padding: 5px 20px;
  text-align: center;
  font-weight: 400;
  font-size: 0.80em;
  border-bottom: 2px solid #cc0000;
}

.site-notice {
  background-color: #fff8b3;   /* soft yellow */
  color: #5c3d00;              /* deep amber/brown for contrast */
  padding: 5px 20px;
  text-align: center;
  font-weight: 500;
  font-size: 0.85em;
  border-bottom: 2px solid #e6c200; /* gold line */
}
/* End Warning Section */

section {
    padding: 40px 20px;
    text-align: left;
	scroll-margin-top: 100px;
}


html {
  scroll-behavior: smooth;
}

/* ========== LANDING PAGE STYLES ONLY ========== */

body.landing section {
  text-align: center;
}

body.landing h2 {
  text-align: center;
  font-weight: bold;
  margin-top: 2rem;
}

body.landing .text-container {
  max-width: 900px;
  margin: 0 auto;
}


/* ========================================
   NAVIGATION & LANGUAGE
   ======================================== */

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1em 2em;
  background-color: white;
  flex-wrap: wrap;
  position: relative;
  z-index: 100;
}

/* Desktop nav and language */
.nav-desktop {
  display: flex;
  align-items: center;
  gap: 2em;
}

.nav-desktop .nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav-desktop .nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.language-selector {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  font-size: 0.95rem;
}

.language-selector .current-lang {
  font-weight: bold;
  color: black;
}

.language-selector a {
  text-decoration: none;
  color: #003399;
}

.language-selector a:hover {
  text-decoration: underline;
}

.lang-divider {
  color: #999;
}

/* Mobile Toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 1.8em;
  cursor: pointer;
  background: none;
  border: none;
}

/* Mobile nav hidden by default */
.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: white;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding: 1rem 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav.visible {
  display: flex;
}

.mobile-nav .nav-links {
  display: flex;
  flex-direction: column;
  align-items: center;
  list-style: none;
  gap: 1rem;
  padding: 0;
}

.mobile-nav .nav-links li a {
  text-decoration: none;
  font-weight: bold;
  color: black;
}

.mobile-nav .language-selector {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  padding-top: 0.5rem;
}

/* Show/hide logic */
@media screen and (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }
}


footer {
    text-align: center;
    padding: 20px;
}
footer .mini-logo {
    height: 100px;
    margin-bottom: 10px;
}
.privacy-note {
    font-size: 0.8em;
    color: grey;
    margin-top: 10px;
}
form {
  max-width: 600px;
  margin: 2em auto;
  padding: 1em;
  border-radius: 8px;
  background: #f9f9f9;
  box-shadow: 0 0 8px rgba(0,0,0,0.05);
  font-family: 'Inter', sans-serif;
}

form p {
  margin-bottom: 1.2em;
  font-size: 0.95em;
  text-align: left;
}

form label {
  display: block;
  margin-bottom: 0.3em;
  font-weight: 600;
  color: #333;
}

form input[type="text"],
form input[type="email"],
form textarea {
  width: 100%;
  padding: 10px;
  font-size: 1em;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
}

form textarea {
  resize: vertical;
  height: 120px;
}

form input[type="checkbox"] {
  margin-right: 0.5em;
}

form button {
  background-color: #0A1F44;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}

form button:hover {
  background-color: #081834;
}

form .privacy-note {
  font-size: 0.8em;
  color: #666;
  margin-top: 1em;
  text-align: center;
}

.hidden {
  display: none;
}

/* Language toggle switch */

.script-switch-overlay {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.5);
  padding: 0.2rem 0.8rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  font-weight: 700;
  color: #1a1a1a;
}

.script-switch-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1rem 0;
  font-size: 1rem;
}

.script-switch-container .switch {
  width: 40px;
  height: 22px;
}

.script-switch-container .switch input + .slider:before {
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
}

.script-switch-container .switch input:checked + .slider:before {
  transform: translateX(18px);
}

.script-switch-container span {
  font-weight: 500;
  letter-spacing: 0.02em;
}

.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  background-color: #ccc;
  border-radius: 34px;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transition: 0.4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.4s;
}

input:checked + .slider {
  background-color: #636466;
}

input:checked + .slider:before {
  transform: translateX(22px);
}

input[type="text"].syllabic,
textarea.syllabic {
  font-family: "Noto Sans Canadian Aboriginal", sans-serif;
}

form .script {
  text-align: left;
}


