body {
  background-color: #330033;
  color: #FFCC00;
  font-family: "Century Gothic", sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

h1, h2, h3 {
  margin: 1.5rem 0;
}

/* Typography refinements */
h1 {
  letter-spacing: 2px;
}

h2, h3 {
  line-height: 1.4;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  padding: 2rem 1rem;
  max-width: 800px;
  margin: 0 auto;
}

.menu-section {
  margin-bottom: 2rem;
}
.icon {
  width: 80px;
  height: auto;
}

  GLOBAL ZODIAC PAGE LAYOUT
   Applies to all zodiac pages
/* Main two-column layout (desktop/tablet) */
.zodiac-layout {
  display: grid;
  grid-template-columns: 1.7fr 1fr; /* 70% image / 30% text */
  gap: 2rem;
  align-items: start;
}

/* Image styling */
.zodiac-layout img {
  width: 100%;
  height: auto;
  max-width: 100%; /* Optional enhancement: allow full use of the 70% column */
  border-radius: 6px;
  display: block;
}
.aquarius-img {
  max-height: 700px;   /* adjust until it visually matches the others */
  object-fit: contain;
}

.scorpio2000-img {
  max-height: 700px;   /* adjust until it visually matches the others */
  object-fit: contain;
}

/* Text styling */
.zodiac-text p {
  text-align: left;
  margin-bottom: 1rem;
  line-height: 1.5;
}

/* Mobile layout */
@media (max-width: 700px) {
  .zodiac-layout {
    grid-template-columns: 1fr; /* Stacks image above text */
  }

  .zodiac-layout img {
    width: 100%; /* Full-width image on mobile */
    max-width: 100%;
  }

}
MYTHICAL PAGES LAYOUT (Option A)
   Full-width artwork at the top
.myth-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem;
}

.myth-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  display: block;
  margin-bottom: 2rem;
}

.myth-text {
  text-align: left;
  line-height: 1.6;
}

.myth-text p {
  margin-bottom: 1rem;
}
.myth-image {
  max-height: 700px;   /* adjust to taste */
  object-fit: contain;
}

.pattern-wrapper {
  text-align: center;
  margin-top: 2rem;
}

.pattern-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.pattern-side img {
  width: 250px;      /* adjust to match your triangle size */
  height: auto;
}

.pattern-center img.pattern-gif {
  width: 200px;      /* adjust to match your desired GIF size */
  height: auto;
}

.pattern-collection h2 {
  color: #FFCC33;    /* matches your page text colour */
  margin-bottom: 0.5rem;
}

.pattern-collection a {
  color: #FFCC33;
  font-weight: bold;
  text-decoration: underline;
}
.pattern-side img {
  display: block;
  margin-top: 0;
}
.pattern-side img {
  display: block;
  margin-top: 0;
}
.eye-link {
  width: 50px;
  height: 50px;
  display: block;
  margin: 30px auto 10px auto;
}