/* ============================================
   CSS VARIABLES - Color Palette & Spacing
   ============================================ */
:root {
  /* Brand Colors */
  --color-green: #2e8b57;
  --color-green-dark: #20603e;
  --color-purple: #6e00b3;
  --color-blue: #0b78cf;
  --color-blue-dark: #084b8a;
  --color-blue-light: #4fc3f7;
  --color-orange: #ffb74d;
  --color-beige: #e8d4c4;
  --color-coral: #d35445;
  --color-red: #a82020;
  --color-teal: #00bcd4;
  --color-violet: #ce93d8;
  --color-footer: #ffcdd2;
  --color-footer-text: #8b0000;

  /* Neutral Colors */
  --color-white: #ffffff;
  --color-black: #000000;
  --color-text: #333;
  --color-brown: #4a2c2a;

  /* Opacity Variants */
  --overlay-dark: rgba(0, 0, 0, 0.5);
  --overlay-light: rgba(255, 255, 255, 0.2);
  --overlay-white: rgba(255, 255, 255, 0.3);

  /* Spacing */
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;

  /* Font Sizes */
  --font-size-base: 1rem;
  --font-size-lg: 1.5rem;
  --font-size-xl: 3rem;
  --font-size-xxl: 4rem;
}

/* ============================================
   FONTS
   ============================================ */
@font-face {
  font-family: "Futura Light";
  src: url("fonts/futura_light.otf") format("opentype"),
       url("fonts/futura_light.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Futura Light Italic";
  src: url("fonts/futura_light_italic.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "Marck Script";
  src: url("fonts/marckscript.ttf") format("truetype");
  font-display: swap;
}

/* ============================================
   BASE STYLES
   ============================================ */
body {
  font-family: "Futura Light", sans-serif;
}

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background-color: transparent !important;
}

.navbar-container {
  max-width: 100% !important;
  padding: var(--spacing-lg);
}

.navbar-title-area {
  display: block !important;
}

.navbar-title {
  font-family: "Marck Script", cursive;
  font-size: var(--font-size-xl);
  text-shadow: 2px 2px 4px var(--overlay-dark);
  margin-bottom: 0 !important;
}

.navbar-item.futura-light,
.navbar-link.futura-light {
  font-family: "Futura Light", sans-serif;
  color: var(--color-white) !important;
  font-size: var(--font-size-lg);
  font-weight: 900;
  text-shadow: 2px 2px 4px var(--overlay-dark);
}

.navbar-item.futura-light::after,
.navbar-link.futura-light::after {
  border-color: var(--color-white);
}

.navbar-item.futura-light:hover,
.navbar-link.futura-light:hover {
  background-color: var(--overlay-dark) !important;
}

.navbar-dropdown.is-boxed {
  top: 100%;
  border-radius: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.navbar-dropdown .navbar-item.futura-light:hover {
  background-color: var(--overlay-light) !important;
}

.navbar-item.has-dropdown:hover .navbar-link {
  background-color: var(--overlay-dark) !important;
}

.navbar-burger,
.navbar-burger:hover {
  color: var(--color-white);
  background-color: var(--overlay-dark);
}

/* Green Navbar Variant */
.green-navbar .navbar-item.futura-light:hover,
.green-navbar .navbar-link.futura-light:hover {
  background-color: var(--color-green-dark) !important;
}

.green-navbar .navbar-dropdown.is-boxed {
  background-color: var(--color-green);
}

.green-navbar .navbar-item.has-dropdown:hover .navbar-link {
  background-color: var(--color-green-dark) !important;
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.index-hero,
.error-hero {
  background: url("img/hero_image.webp") no-repeat center center;
  background-attachment: fixed;
  background-size: cover;
}

.hero-text {
  color: var(--color-white);
  font-family: "Futura Light", sans-serif;
  font-size: var(--font-size-lg);
  background-color: var(--overlay-dark);
  padding: 20px;
  border-radius: 5px;
}

.hero-text-right {
  top: 20vh;
}

.green-background {
  background-color: var(--color-green);
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */
.content-section .container {
  max-width: 80% !important;
}

.content-section .content-image {
  padding: 0;
}

.content-section .content-image figure.image {
  margin: 0;
}

.content-section .content-image img {
  object-fit: cover;
  border-radius: 10px;
}

/* Section Background Colors */
.intro,
.contact {
  background-color: var(--color-green);
}

.healing {
  background-color: var(--color-beige);
  color: var(--color-brown) !important;
}

/* All headings in healing sections: brown text (matches body) + purple border */
.healing h1.title,
.healing h2.title {
  color: var(--color-brown) !important;
  border-left: 3px solid var(--color-red);
  border-bottom: 1px solid var(--color-red);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}

/* H2 sub-heading in healing sections: brown text (matches body) + purple border */
.healing h2.subtitle {
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  color: var(--color-brown);
  border-left: 3px solid var(--color-red);
  border-bottom: 1px solid var(--color-red);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* H3 in healing sections: green, mid-tier */
.healing h3 {
  color: var(--color-green-dark);
  font-size: 1.2rem;
  font-family: "Futura Light", sans-serif;
  border-left: 2px solid rgba(32, 96, 62, 0.45);
  padding-left: 0.6rem;
  margin-top: 1.75rem !important;
  margin-bottom: 0.4rem;
}

/* H2 subtitle in blue sections — violet border */
.bio h2.subtitle,
.guidance h2.subtitle {
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  color: var(--color-white);
  border-left: 3px solid var(--color-violet);
  border-bottom: 1px solid var(--color-violet);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* H2 subtitle in purple sections — teal border */
.services h2.subtitle,
.shamanic h2.subtitle,
.palliative h2.subtitle,
.payment h2.subtitle {
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  color: var(--color-white);
  border-left: 3px solid var(--color-teal);
  border-bottom: 1px solid var(--color-teal);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* H2 subtitle in green sections — orange border */
.contact h2.subtitle,
.intro h2.subtitle {
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  color: var(--color-white);
  border-left: 3px solid var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* H3 in blue sections — violet border */
.bio h3,
.guidance h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  border-left: 3px solid var(--color-violet);
  border-bottom: 1px solid var(--color-violet);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* H3 in purple sections — teal border */
.services h3,
.shamanic h3,
.palliative h3,
.payment h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  border-left: 3px solid var(--color-teal);
  border-bottom: 1px solid var(--color-teal);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* H3 in green sections — orange border */
.contact h3,
.intro h3 {
  color: var(--color-white);
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  border-left: 3px solid var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

/* Blue section headings (bio, guidance) — violet border */
.bio h1.title,
.bio h2.title,
.guidance h1.title,
.guidance h2.title {
  border-left: 3px solid var(--color-violet);
  border-bottom: 1px solid var(--color-violet);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}

/* Green section headings (contact, intro) — orange border */
.contact h1.title,
.contact h2.title,
.intro h1.title,
.intro h2.title {
  border-left: 3px solid var(--color-orange);
  border-bottom: 1px solid var(--color-orange);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}

/* Purple section headings (services, shamanic) — teal border */
.services h1.title,
.services h2.title,
.shamanic h1.title,
.shamanic h2.title,
.palliative h1.title,
.palliative h2.title,
.payment h1.title,
.payment h2.title,
.index-services h1.title,
.index-services h2.title {
  border-left: 3px solid var(--color-teal);
  border-bottom: 1px solid var(--color-teal);
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}


.bio,
.guidance {
  background-color: var(--color-blue);
  color: var(--color-white);
}

.bio strong,
.guidance strong,
.services strong,
.shamanic strong,
.palliative strong,
.payment strong,
.contact strong,
.intro strong {
  color: var(--color-white);
}

.services,
.shamanic,
.palliative,
.payment,
.index-services {
  background-color: var(--color-purple);
  color: var(--color-white);
}

.quotes,
.masters {
  background-color: var(--color-orange);
}

.masters {
  color: #3e2723;
}

/* ============================================
   BUTTONS
   ============================================ */
.button {
  border: none;
  font-family: "Futura Light", sans-serif;
  margin-bottom: 0.5rem;
}

.button-white {
  background-color: var(--color-white) !important;
  color: var(--color-black) !important;
}

.button-white:hover {
  background-color: rgba(255, 255, 255, 0.5) !important;
}

.contact .button {
  background-color: #ffd700;
  color: var(--color-green);
}

.contact .button:hover {
  background-color: rgba(255, 215, 0, 0.5);
}

.healing .button {
  background-color: var(--color-green-dark);
  color: var(--color-white);
}

.healing .button:hover {
  background-color: var(--color-green);
}

.healing .button-outline {
  background-color: transparent !important;
  color: var(--color-green-dark) !important;
  border: 2px solid var(--color-green-dark) !important;
}

.healing .button-outline:hover {
  background-color: rgba(32, 96, 62, 0.1) !important;
}

.bio .button {
  background-color: #ffd700;
  color: #0b4a8a;
}

.bio .button:hover {
  background-color: rgba(255, 215, 0, 0.7);
  color: #0b4a8a;
}

.guidance .button {
  background-color: var(--color-blue-dark);
  color: var(--color-white);
}

.guidance .button:hover {
  background-color: rgba(8, 75, 138, 0.5);
}

.services .button,
.shamanic .button,
.palliative .button,
.payment .button,
.index-services .button {
  background-color: #9575cd;
  color: var(--color-white);
}

.services .button:hover,
.shamanic .button:hover,
.palliative .button:hover,
.payment .button:hover,
.index-services .button:hover {
  background-color: rgba(149, 117, 205, 0.5);
}

/* ============================================
   LINKS
   ============================================ */
.healing a:not(.button) {
  color: var(--color-red);
}

.healing a:not(.button):hover {
  color: #c62828;
}

.bio a:not(.button),
.guidance a:not(.button) {
  color: #e2baf5;
}

.bio a:not(.button):hover,
.guidance a:not(.button):hover {
  color: #f0d9fa;
}

.services a:not(.button),
.shamanic a:not(.button),
.palliative a:not(.button),
.payment a:not(.button) {
  color: #80deea;
}

.services a:not(.button):hover,
.shamanic a:not(.button):hover,
.palliative a:not(.button):hover,
.payment a:not(.button):hover {
  color: #b2ebf2;
}

/* Masters (orange) section headings — matches body text + brown border */
.masters h1.title,
.masters h2.title {
  color: #3e2723 !important;
  border-left: 3px solid #4a148c;
  border-bottom: 1px solid #4a148c;
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-bottom: 1rem;
}

.masters h2.subtitle {
  font-size: 1.4rem;
  font-family: "Futura Light", sans-serif;
  color: #3e2723;
  border-left: 3px solid #4a148c;
  border-bottom: 1px solid #4a148c;
  padding-left: 0.75rem;
  padding-bottom: 0.35rem;
  margin-top: 2.5rem !important;
  margin-bottom: 0.75rem;
}

.masters h3 {
  font-size: 1.15rem;
  font-family: "Futura Light", sans-serif;
  color: #3e2723;
  border-left: 3px solid #4a148c;
  padding-left: 0.75rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.masters a:not(.button) {
  color: #4a148c;
}

.masters a:not(.button):hover {
  color: #6a1b9a;
}

a.contact {
  color: var(--color-purple);
}

.contact.content-section a:not(.button) {
  color: var(--color-orange);
}

.contact.content-section a:not(.button):hover {
  color: #ffd54f;
}

/* ============================================
   CARDS
   ============================================ */
.card {
  background-color: var(--color-white);
  border-radius: 10px;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.card-content {
  padding: var(--spacing-md);
  flex-grow: 1;
}

.card-content .title {
  font-family: "Futura Light", sans-serif;
  color: var(--color-purple);
}

.card-content p {
  font-family: "Futura Light", sans-serif;
  color: var(--color-text);
}

.card-image:first-child img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}

.card-footer {
  padding: var(--spacing-md);
  text-align: center;
  border-top: none;
}

/* ============================================
   QUOTES
   ============================================ */
.quotes blockquote {
  border-left: 5px solid var(--color-green);
  background-color: rgba(46, 139, 87, 0.1);
}

.quotes blockquote p {
  font-weight: 600;
}

.quotes blockquote b {
  font-family: "Futura Light", sans-serif;
}

/* ============================================
   SERVICES
   ============================================ */
.services .columns {
  margin: 0.5rem;
}

.services-title {
  font-size: var(--font-size-xxl);
}

.index-services {
  padding: var(--spacing-xl) 0;
}

/* ============================================
   PAYMENT
   ============================================ */
img.payment-button-vipps {
  height: 3rem;
}

a.vipps {
  padding: 0;
}

img.payment-button-paypal {
  height: 1.2rem;
}

/* ============================================
   FOOTER
   ============================================ */
footer.footer {
  background-color: var(--color-footer);
  color: var(--color-footer-text);
  text-align: center;
  padding: var(--spacing-lg);
}

footer.footer a {
  color: var(--color-purple);
}

footer.footer a:hover {
  color: #9c27b0;
}

/* ============================================
   LANGUAGE SWITCHER
   ============================================ */
.navbar-checkbox {
  display: flex;
  justify-content: center;
  align-items: center;
}

input[type="checkbox"] {
  height: 0;
  width: 0;
  visibility: hidden;
}

label {
  cursor: pointer;
  width: 100px;
  height: 50px;
  background-image: url("img/eng.webp");
  background-size: cover;
  display: block;
  border-radius: 50px;
  position: relative;
}

label:after {
  content: "EN";
  font-family: "Futura Light", sans-serif;
  text-align: center;
  line-height: 43px;
  color: var(--color-black);
  position: absolute;
  top: 5px;
  left: 5px;
  width: 40px;
  height: 40px;
  background: var(--color-white);
  border-radius: 45px;
  transition: 0.3s;
}

input:checked + label {
  background-image: url("img/no.webp");
}

input:checked + label:after {
  content: "NO";
  left: calc(100% - 5px);
  transform: translateX(-100%);
}

label:active:after {
  width: 65px;
}

/* ============================================
   SOCIAL LINKS
   ============================================ */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  opacity: 0.8;
  transition: opacity 0.2s;
}

.social-links a:hover {
  opacity: 1;
}

.social-links svg {
  width: 28px;
  height: 28px;
}

.social-links.social-links--footer svg {
  fill: var(--color-footer-text);
}

.social-links.social-links--contact svg {
  fill: var(--color-white);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (min-width: 1440px) {
  .hero-center {
    height: 15rem;
  }
}

@media (min-width: 1024px) {
  .header .container {
    max-width: 95% !important;
  }

  .navbar-menu {
    display: flex !important;
    max-height: none;
    background-color: transparent !important;
    border-radius: 0;
  }
}

@media (max-width: 1024px) {
  .index-hero,
  .error-hero {
    background-attachment: scroll;
  }

  .header-profile {
    display: none;
  }

  .hero-text-right {
    top: 30vh;
    right: 5%;
  }

  .hero-text-left {
    bottom: 10vh;
    left: 5%;
  }

  .navbar-menu {
    background-color: var(--overlay-dark) !important;
    box-shadow: none;
    border-radius: 0 0 5px 5px;
    display: none;
  }

  .navbar-dropdown {
    display: none;
  }

  .navbar-dropdown.show {
    display: block;
  }

  .navbar-menu.is-active {
    display: block;
    max-height: 300px;
    border-top-right-radius: 0;
  }
}

@media (max-width: 768px) {
  .navbar-title {
    font-size: 7vw;
  }

  .hero-text-right {
    top: 35vh;
  }

  .hero-text {
    background-color: rgba(0, 0, 0, 0.7);
    font-size: 1rem;
  }

  .content-section .content-image {
    padding: 0.75rem;
  }
}
