@font-face { font-family: 'arimaV'; src: url('/fonts/Arima-VariableFont_wght.ttf') format('truetype'); font-weight: 200; font-style: normal; font-display: swap; }
@font-face { font-family: 'ralewayv'; src: url('/fonts/Raleway-VariableFont_wght.ttf') format('truetype'); font-weight: 100 900; font-style: normal; font-display: swap; }
@font-face { font-family: 'ralewayv'; src: url('/fonts/Raleway-Italic-VariableFont_wght.ttf') format('truetype'); font-weight: 100 900; font-style: italic; font-display: swap; }

:root {
	--font-display: "ralewayv", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
	--font-body: "arimaV", "Georgia", "Times New Roman", serif;
	--ink: rgba(43, 34, 0, .9);
	--paper: rgba(243, 243, 241, 1);
	--paper-2: rgba(248, 248, 247, 1);
	--line: rgba(216, 216, 214, 1);
    --boldwhite: rgba(255,255,255, 1);
	--brand: rgba(208, 94, 28, 1);
	--brand-dark: rgba(168, 71, 18, 1);
}

/*//////////////////////////
    SECTION BACKGROUNDS
/////////////////////////*/

.intro-paper {
  background: linear-gradient(180deg, var(--paper), rgba(239, 239, 237, 1));
}

.narrow-copy {
  max-width: 660px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.87);
  border: 1px solid rgba(211, 211, 211, 1);
  padding: 1.2rem 1.1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.grid-paper {
  background:
    linear-gradient(rgba(233, 238, 242, 1) 1px, rgba(0, 0, 0, 0) 1px),
    linear-gradient(90deg, rgba(233, 238, 242, 1) 1px, rgba(0, 0, 0, 0) 1px),
    linear-gradient(180deg, rgba(248, 248, 246, 1), rgba(242, 243, 240, 1));
  background-size: 16px 16px, 16px 16px, auto;
}
.ruled-paper {
  background:
    linear-gradient(180deg, rgba(225, 84, 84, 0.28), rgba(225, 84, 84, 0.28)) 86px 0/1px 100% no-repeat,
    repeating-linear-gradient(
      to bottom,
      rgba(245, 245, 244, 1) 0,
      rgba(245, 245, 244, 1) 34px,
      rgba(228, 237, 248, 1) 34px,
      rgba(228, 237, 248, 1) 35px
    );
}

/*//////////////////////////
         STRUCTURE
/////////////////////////*/
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body), sans-serif;
  color: var(--ink);
  background: var(--paper);
}


/* Home Page Structure */
.home-page {
  width: 100%;
  overflow-x: clip;
}
.section {
	background: rgba(255, 255, 255, 1);
	border: 1px solid rgba(215, 215, 215, 1);
	border-radius: 10px;
	padding: 1.1rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
	height:100vh;
}
.light-section 
{
	background: rgba(255, 255, 255, 1);
	padding: 1.1rem;
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
	height:100vh;
	text-align:justify;
}
.home-section
	{
		 height:100vh;
	}
	
/* HERO Page Structure */
.home-hero {
  min-height: calc(95vh - 84px);
  position: relative;
  background-image:
    linear-gradient(to bottom, rgba(14, 28, 40, 0.2), rgba(12, 20, 28, 0.55)),
    url('/images/background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: rgba(255, 255, 255, 1);
}

.home-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(80% 25% at 55% 72%, rgba(255, 255, 255, 0.2), rgba(0, 0, 0, 0) 70%),
    radial-gradient(100% 18% at 50% 80%, rgba(255, 255, 255, 0.12), rgba(0, 0, 0, 0) 75%);
  pointer-events: none;
}

.hero-center {
  position: relative;
  z-index: 2;
  min-height: calc(92vh - 84px);
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 1rem 5rem;
}

.brand-logo {
  margin-bottom: 1rem;
  filter: drop-shadow(0 16px 24px rgba(0, 0, 0, 0.45));
}

.brand-logo img {
  width: min(320px, 68vw);
  height: auto;
}
.ichthus
{
	height:15px;
	margin-top:50px;
	margin:bottom:25px;
}
.tag {
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.72rem;
  opacity: 0.92;
}

.hero-center h1 {
  max-width: 1024px;
  font-size: 2.5rem;
  line-height: 0.98;
  margin-bottom: 0.85rem;
  color: rgba(245, 142, 64, 1);
  text-shadow: 0 3px 14px rgba(0, 0, 0, 0.55);
}

.hero-sub {
  max-width: 42ch;
  margin: 0 auto;
  font-size: 1.5rem;
  line-height: .9;
  font-weight:700;
  color: rgba(255, 245, 245, 1);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

.cta-row {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
  width:100%;
}
.home-section {
  max-width: 1024px;
  margin: 0 auto;
  padding: 5.2rem 1rem;
}

.section-lead {
  max-width: 58ch;
  margin: 0 0 1.2rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.card {
  border: 1px solid rgba(197, 197, 197, 1);
  background: rgba(254, 254, 254, 1);
  padding: 1rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.05);
}
/* Service Section */
.service-card p {
  min-height: 3.2em;
}

/* Contact Section */
.contact-shell {
  position: relative;
  background: linear-gradient(180deg, rgba(242, 242, 241, 1), rgba(236, 236, 235, 1));
  border: 1px solid rgba(213, 213, 213, 1);
  border-radius: 18px;
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.06);
  height:100vh;
}

.contact-shell::before,
.contact-shell::after {
  content: '';
  position: absolute;
  top: 60px;
  width: 45%;
  height: 1px;
  background: rgba(213, 213, 213, 1);
}

.contact-shell::before {
  left: 1.2rem;
  transform: rotate(9deg);
  transform-origin: left center;
}

.contact-shell::after {
  right: 1.2rem;
  transform: rotate(-9deg);
  transform-origin: right center;
}

/* Footer Section */
.site-footer {
  text-align: center;
  color: rgba(95, 95, 95, 1);
  font-size: 0.88rem;
  padding: 1.4rem 1rem 2.6rem;
}


.page {
  max-width: 980px;
  margin: 0 auto;
  padding: 1.5rem 1rem 2rem;
}



.glass {
  background: rgba(255, 255, 255, 1);
}

/*//////////////////////////
         LOGIN PAGE
//////////////////////////*/
.login-page-shell {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  background:
    linear-gradient(to bottom, rgba(14, 28, 40, 0.28), rgba(12, 20, 28, 0.62)),
    url('/images/background.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.login-page-panel {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.login-brand {
  display: flex;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.login-brand img {
  width: min(280px, 72vw);
  height: auto;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.24));
}

.login-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(211, 211, 211, 1);
  border-radius: 18px;
  box-shadow: 0 24px 46px rgba(0, 0, 0, 0.14);
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
}

.login-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-display), serif;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(208, 94, 28, 1);
}

.login-card h1 {
  font-size: 2.2rem;
  margin-bottom: 0.45rem;
  color: var(--ink);
}

.login-copy {
  max-width: 34ch;
  margin: 0 auto 1.35rem;
  font-size: 1rem;
  line-height: 1.45;
}

.login-form {
  display: grid;
  gap: 0.2rem;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  text-align: left;
}

.login-form .btn {
  width: 100%;
  max-width: none;
  margin-top: 0.5rem;
}

.login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.login-checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  font-weight: 600;
}

.login-checkbox input {
  width: auto;
  margin: 0;
}

.login-help,
.login-back-link {
  font-family: var(--font-display), serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(208, 94, 28, 1);
}

.login-back-link {
  display: inline-block;
  margin-top: 0.15rem;
}

.login-note {
  max-width: 30ch;
  margin: 1rem auto 0.6rem;
}

/*//////////////////////////
         TYPOGRAPHY
/////////////////////////*/

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3 {
  font-family: var(--font-display), serif;
  letter-spacing: 0.01em;
  margin: 0 0 0.75rem;
}

h1 {
  font-size: 1.5rem;
}


/*//////////////////////////
      BUTTONS & FORMS
/////////////////////////*/

.btn {
  display: inline-block;
  background: var(--brand);
  color: rgba(255, 255, 255, 1);
  border: 1px solid var(--brand-dark);
  border-radius: 10px;
  padding: 0.62rem 1rem;
  font-weight: 700;
  transition: all 0.18s ease;
  font-size: 1.2rem;
  width: 90%;
  max-width: 300px;
}

.btn:hover {
  background: var(--brand);
  transform: translateY(-1px);
}

.btn.alt {
  background: rgba(0, 0, 0, 0.35);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn.ghost {
  background: rgba(0, 0, 0, 0);
  color: rgba(54, 54, 54, 1);
  border: 1px solid rgba(164, 164, 164, 1);
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(199, 199, 199, 1);
  border-radius: 4px;
  padding: 0.62rem;
  background: rgba(255, 255, 255, 1);
  margin-bottom: 0.8rem;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(48, 106, 147, 0.25);
  outline-offset: 1px;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  font-weight: 700;
}

.form-note,
.muted {
  color: rgba(91, 91, 91, 1);
}



/*//////////////////////////
         NAVIGATION 
/////////////////////////*/

/* ===== BASE NAV ===== */
.nav-close {
  display: none !important;
}
.hero-nav {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  max-width: 1300px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;

  padding: 1rem 1.2rem;
  min-height: 84px;
}

.hero-nav::before {
  content: '';
  position: absolute;
  inset: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.5);
  z-index: -1;
}

/* ===== LOGO ===== */

.nav-brand-logo img {
  height: 80px;
  display: block;
  filter: drop-shadow(0 5px 5px rgba(0,0,0,.4));
}

/* ===== PHONE ===== */

.nav-phone {
  justify-self: center;
  font-size: 1.2rem;
  font-weight: 700;
  white-space: nowrap;
}

/* ===== DESKTOP LINKS ===== */

.nav-links {
  display: flex;
  gap: 0.6rem;
  justify-self: end;
  align-items: center;
}

.nav-links a {
  width: 90px;
  text-align: center;
  font-size: 1.1rem;
  padding: 4px;
  color: var(--ink);
}

.nav-links .nav-login {
  margin-left: 30px;
}

/* ===== HIDE MOBILE ELEMENTS ON DESKTOP ===== */

.nav-toggle {
  display: none;
}

.nav-close {
  display: none;
}

/* =========================
   MOBILE NAV
========================= */

@media (max-width: 1024px) {
	.contact-shell
	{
		 height:auto;
	}
	.section
	{
		 height:auto;
	}
	.home-section
	{
		 height:auto;
	}
  /* SHOW HAMBURGER */
  .nav-toggle {
    display: flex;
    justify-self: end;

    width: 40px;
    height: 36px;

    border-radius: 8px;
    border: 1px solid rgba(0,0,0,.2);

    background: rgba(0,0,0,.2);

    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }

  .nav-toggle span {
    width: 22px;
    height: 2px;
    background: #fff;
  }

  /* MOBILE MENU PANEL */
  .nav-links {
    position: absolute;

    top: 85px;
    right: 16px;

    width: 100%;
    max-width: 250px;

    flex-direction: column;

    background: rgba(0,0,0,.9);
    border-radius: 10px;

    padding: 16px;

    /* HIDDEN STATE */
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;

    transition: all .25s ease;
  }

  /* OPEN STATE (JS controls this) */
  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* MOBILE LINKS */
  .nav-links a {
    color: white;
    width: 100%;
    padding: 10px;
    text-align: center;
  }

  /* CLOSE BUTTON */
  .nav-close {
    display: flex;
    justify-content: center;
    margin-bottom: 10px;
    position: relative;
    height: 30px;
  }

  .nav-close span {
    position: absolute;
    width: 20px;
    height: 2px;
    background: white;
  }

  .nav-close span:first-child {
    transform: rotate(45deg);
  }

  .nav-close span:last-child {
    transform: rotate(-45deg);
  }

  /* PHONE SMALLER */
  .nav-phone {
    font-size: 1rem;
  }
}


@media (max-width: 1024px) {

  .nav-links {
    position: absolute;

    top: 85px;
    right: 16px;

    width: 100%;
    max-width: 250px;

    flex-direction: column;

    background: rgba(0,0,0,.92);
    border-radius: 12px;

    padding: 18px;

    /* 🔥 MUCH STRONGER START POSITION */
    transform: translate(40px, -60px) scale(0.9);
    opacity: 0;

    pointer-events: none;

    transition:
      transform 0.35s cubic-bezier(.22,1,.36,1),
      opacity 0.25s ease;
  }
box-shadow: 0 20px 50px rgba(0,0,0,.35);
  /* OPEN STATE */
  .nav-links.is-open {
    transform: translate(0, 0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

}
/* ==============================
   MOBILE PHONE BAR (REUSE nav-phone)
============================== */

@media (max-width: 600px) {

  /* Move phone to bottom */
  .nav-phone {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
	width: 100vw;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: linear-gradient(135deg, #d05e1c, #f07a2f);
    color: white;

    font-size: 1.5rem;
    font-weight: 700;

    box-shadow: 0 -6px 20px rgba(0,0,0,.3);

    z-index: 9999;
  }

  /* Make link fill bar */
  .nav-phone a {
    color: white;
	font-family:var(--font-display);
    width: 100%;
    text-align: center;
  }

  /* Prevent content being hidden behind it */
  body {
    padding-bottom: 70px;
  }

}