/* =============================================
   THE ASTROLOGY EFFECT — Global Styles
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f3f3f8;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

/* =============================================
   HEADER
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #f3f3f8;
  border-bottom: 1px solid #e5e5e5;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 200px 0 160px;
}

.header-logo a {
  display: flex;
  align-items: center;
}

.header-logo img {
  width: 153px;
  height: auto;
  object-fit: contain;
}

/* Hamburger */
.hamburger {
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Nav Menu */
.nav-menu {
  position: fixed;
  top: 60px;
  right: 0;
  width: 260px;
  background: #ffffff;
  border-left: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  padding: 16px 0;
  box-shadow: -4px 4px 20px rgba(0,0,0,0.08);
  transform: translateX(100%);
  opacity: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 999;
}

.nav-menu.open {
  transform: translateX(0);
  opacity: 1;
}

.nav-menu a {
  display: block;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 500;
  color: #1a1a1a;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.nav-menu a:last-child {
  border-bottom: none;
}

.nav-menu a:hover {
  background: #f8f8f8;
}

/* Overlay */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 998;
  background: rgba(0,0,0,0.2);
}

.menu-overlay.open {
  display: block;
}

/* =============================================
   LANDING PAGE LAYOUT
   ============================================= */

.landing-wrapper {
  display: flex;
  height: calc(100vh - 120px);
  margin-top: 60px;
  overflow: hidden;
}

/* ---- LEFT SECTION (text) ---- */

.left-col {
  width: 52%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 160px;
  padding-right: 40px;
  padding-top: 40px;
  padding-bottom: 40px;
}

.left-content {
  max-width: 560px;
  width: 100%;
}

.headline {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.15;
  margin-bottom: 20px;
}

.subtitle {
  font-size: 15px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  margin-bottom: 28px;
}

.gender-prompt {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 44px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.btn:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-male {
  background: #1a1a1a;
  color: #ffffff;
}

.btn-male:hover {
  background: #333333;
}

.btn-female {
  background: #f5c518;
  color: #1a1a1a;
}

.btn-female:hover {
  filter: brightness(0.93);
}

/* ---- RIGHT SECTION (scrolling images) ---- */

.right-col {
  width: 48%;
  display: flex;
  gap: 10px;
  overflow: hidden;
  padding: 12px 20px 12px 10px;
}

.scroll-col {
  flex: 1;
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 10px;
  will-change: transform;
}

.scroll-track img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Scroll animations */
@keyframes scrollDown {
  0%   { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}

@keyframes scrollUp {
  0%   { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}

.scroll-col-down .scroll-track {
  animation: scrollDown 35s linear infinite;
}

.scroll-col-up .scroll-track {
  animation: scrollUp 35s linear infinite;
}


/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  border-top: 1px solid #e5e5e5;
  padding: 30px;
  text-align: center;
  background: #f3f3f8;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #888888;
  font-weight: 500;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #1a1a1a;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-bottom: 18px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888888;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #1a1a1a;
}

.footer-social svg {
  width: 20px;
  height: 20px;
}

.footer-copy {
  font-size: 13px;
  color: #888888;
}

/* =============================================
   INNER PAGES (contact, terms, privacy)
   ============================================= */

.inner-page {
  padding-top: 60px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.inner-content {
  flex: 1;
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 28px 80px;
  width: 100%;
}

.inner-content h1 {
  font-size: 36px;
  font-weight: 900;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}

.inner-content .page-updated {
  font-size: 13px;
  color: #888888;
  margin-bottom: 40px;
}

.inner-content h2 {
  font-size: 19px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 36px;
  margin-bottom: 12px;
}

.inner-content p {
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 16px;
}

.inner-content ul {
  margin: 0 0 16px 20px;
}

.inner-content ul li {
  font-size: 15px;
  line-height: 1.75;
  color: #444444;
  margin-bottom: 6px;
}

.inner-content a {
  color: #d4a843;
  text-decoration: underline;
}

.inner-content a:hover {
  color: #b8922e;
}

/* Contact page specific */
.contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  background: #f8f8f8;
  border-radius: 10px;
  border: 1px solid #eeeeee;
}

.contact-item svg {
  flex-shrink: 0;
  color: #d4a843;
  margin-top: 2px;
}

.contact-item-text {
  font-size: 15px;
  color: #444444;
  line-height: 1.6;
}

.contact-item-label {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 14px;
  margin-bottom: 4px;
}

/* =============================================
   RESPONSIVE — TABLET (768–1023px)
   ============================================= */

@media (min-width: 768px) and (max-width: 1023px) {
  .site-header {
    padding: 0 40px;
  }

  .left-col {
    padding-left: 40px;
    padding-right: 28px;
  }

  .headline {
    font-size: 28px;
  }
}

/* =============================================
   RESPONSIVE — MOBILE (under 768px)
   ============================================= */

@media (max-width: 767px) {
  .site-header {
    padding: 0 20px;
  }

  .nav-menu {
    width: 100%;
    border-left: none;
  }

  /* Landing layout stacks vertically */
  .landing-wrapper {
    flex-direction: column;
    height: auto;
    overflow: visible;
  }

  .left-col {
    width: 100%;
    padding: 36px 30px 28px;
    align-items: flex-start;
  }

  .left-content {
    max-width: 100%;
  }

  .headline {
    font-size: 28px;
  }

  .subtitle {
    font-size: 15px;
  }

  .btn {
    padding: 14px 32px;
    font-size: 15px;
  }

  /* Scrolling columns below text, side by side */
  .right-col {
    width: 100%;
    height: 50vh;
    flex-shrink: 0;
    padding: 0 16px 16px;
  }

  /* Footer */
  .site-footer {
    padding: 24px 20px;
  }

  .footer-links {
    gap: 16px;
  }

  /* Inner pages */
  .inner-content {
    padding: 40px 20px 60px;
  }

  .inner-content h1 {
    font-size: 28px;
  }
}
