@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700&family=Cinzel:wght@400;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&display=swap');

html {font-size: 20px;}

img { border-radius: 1em; }

canvas { border-radius: 40px; }

body {
  margin: 0;
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.6;
  background-color: black;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('images/background.jpg') center center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

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

/* Header */
header {
  color: #fdc416;
  margin-top: 15px;
  padding-top: 60px;
  margin: 0 auto;
  padding-left: 20px;
  font-family: 'Marck Script', cursive;
  line-height: 1em;
  display: flex;
  align-items: end;
  justify-content: space-between;
  z-index: 100;
  max-width: 600px !important;
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.header-logo {
  max-width: 150px;
  height: auto;
}

h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-shadow: 1px 1px 1px #000000;
  color:#fbdb79 !important;
  font-size:1.8rem;
  line-height: 2.1rem;
  font-weight: normal !important;
  font-family: 'Cinzel Decorative', serif;
}

h2 {
  text-shadow: 1px 1px 1px #000000;
  color:#fbdb79 !important;
  font-size:1.3rem;
  font-family: 'Cinzel', serif;
  font-weight: 600;
  letter-spacing: 1.5px;
}

/* Desktop Navigation */
nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  font-size:17px !important;
  z-index: 100;
}

nav ul li {
  margin-right: 1em;
  font-size:17px !important;
  width: 100%;
  max-width: 600px;
}

nav ul li:last-child {
  margin-right: 0;
  font-size:17px !important;
}

nav ul li a {
  font-size:17px !important;
  font-family: 'Cinzel Decorative', serif;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  padding: 0.5em;
  width: 100%;
  max-width: 600px;
  color: #fbdb79 !important;
  letter-spacing: 1px;
}

nav ul li a::before {
  margin-right: 8px;
  font-style: normal;
}
nav ul li a[href="#top"]::before,
nav ul li a[href="index.html"]::before,
nav ul li a[href="../index.html"]::before { content: "△"; color: #e8c547; }
nav ul li a[href="manifestation.html"]::before,
nav ul li a[href="../manifestation.html"]::before { content: "✦"; color: #c9a0dc; }
nav ul li a[href="affirmations.html"]::before,
nav ul li a[href="../affirmations.html"]::before { content: "☽"; color: #7ec8e3; }
nav ul li a[href="law_of_attraction.html"]::before,
nav ul li a[href="../law_of_attraction.html"]::before { content: "✧"; color: #f4a261; }
nav ul li a[href*="manifestation_mandala"]::before { content: "❂"; color: #e76f51; }
nav ul li a[href*="manifestation_app"]::before { content: "◈"; color: #2a9d8f; }
nav ul li a[href*="manifestation_printed"]::before { content: "⬡"; color: #e9c46a; }
nav ul li a[href*="contact_us"]::before { content: "✉"; color: #a8dadc; }
nav ul li a[href="manifestation_resources.html"]::before,
nav ul li a[href="../manifestation_resources.html"]::before { content: "☼"; color: #dda15e; }
nav ul li a[href*="blog"]::before { content: "❦"; color: #f0aacc; }
nav ul li a[href="abracadabra.html"]::before,
nav ul li a[href="../abracadabra.html"]::before { content: "✡"; color: #d4a5ff; }

nav ul li a:hover {
  background: #444;
}

/* Hamburger icon for small screens */
.menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.menu-toggle span {
  background: #fff;
  display: block;
  height: 2px;
  width: 25px;
  margin: 5px 0;
}

/* Responsive Styles */
@media (max-width: 2600px) {
  nav ul {
    position: fixed;
    top: 56px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(30, 30, 30, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    flex-direction: column;
    display: none;
    max-width: 600px;
    width: 100%;
    box-sizing: border-box;
    max-height: 80vh;
    overflow-y: auto;
    overflow-x: hidden;
  }
  nav ul li {
    margin: 0;
    max-width: 600px;
    width: 100%;
  }
  nav ul li a {
    padding: 1em;
    border-bottom: 1px solid #444;
    max-width: 600px;
    width: 100%;
    color: #fbdb79 !important;
    font-weight: normal;
    text-shadow: #000000;
  }
  .menu-toggle {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    max-width: 100%;
    align-items: flex-end;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    box-sizing: border-box;
    z-index: 9999;
    margin-right: 0;
  }
}

@media (max-width: 600px) {
  h1 {
    font-size: 1.2rem;
    line-height: 1.5rem;
    gap: 6px;
  }
  .header-logo {
    max-width: 80px;
    height: auto;
  }
  h2 {
    font-size: 1rem;
    line-height: 1.3rem;
  }
}

/* Layout Components */
.bg {
  position: absolute;
  top: 0;
  background: #333;
  padding: 15px;
  margin: 0;
}

.autofit {
  position: relative;
  left: 0;
  display: inline;
  height: auto;
}

.b {font-weight: bold;}

.page {
  float: right;
  padding-right: 10%;
}

#pageAbout {
  color: #faedc5 !important;
  background: none !important;
  font-size: 1em;
  font-family: 'Noto SansLT2', sans-serif;
  margin: auto;
  left: 0;
  right: 0;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  text-align: center;
  z-index: 13;
  position: absolute;
  display: inline;
  padding: 10px;
  max-width: 600px;
}

/* Accordion */
.horizontal-accordion .content {
  display: none;
  border: 1px solid #666666;
  padding: 2px;
}

.horizontal-accordion h3 {
  color: #fac409 !important;
  font-size: 1em;
  font-weight: normal;
  margin: 0;
  padding: 2px;
  text-align: center;
  background-color: #393837;
  border: 1px solid #494847;
}

/* Buttons */
.myButtonActive {
  box-shadow: inset 0px 0px 15px 3px #b54b3a;
  border: 2px solid yellow;
  text-shadow: 0px 1px 0px #7a2a1d;
  color: #faedc5 !important;
  text-align: center;
  font-size: 1.1rem !important;
  font-family: 'Noto Sans', sans-serif;
  font-weight: bold;
  border-radius: 17px;
  display: inline-block;
  cursor: pointer;
  padding: 6px 13px;
  text-decoration: none;
}

/* Media */
iframe {
  width: 95vw;
  max-width: 560px;
}

a img.manifestation_white {
  box-shadow: 0 0 10px 2px white;
  max-width: 200px !important;
  margin-bottom: 15px;
}

.middot {
  font-size: 25px;
  font-weight: bold;
  margin-right: 7px;
  color: #fac409;
}

.app-bullets {
  font-size: 0.85em;
  line-height: 1.4;
}
@media (max-width: 600px) {
  .app-bullets {
    font-size: 0.8em;
    line-height: 1.2;
  }
  .app-bullets .middot {
    font-size: 16px;
    margin-right: 3px;
  }
}

/* Table of Contents */
.toc li {
  line-height: 1.3;
  margin-bottom: 4px;
}
.toc li a {
  font-size: 0.9em;
}
@media (max-width: 600px) {
  .toc li {
    line-height: 1.2;
    margin-bottom: 2px;
  }
  .toc li a {
    font-size: 0.8em;
  }
  .toc .middot {
    font-size: 16px;
    margin-right: 3px;
  }
}
