@font-face {
  font-family: 'MuseoModerno';
  src: url('fonts/MuseoModerno-Regular.ttf') format('truetype');      
  font-weight: normal;
  font-style: normal;
}


/* Color Palette */
:root {
  --clay: #C97D60; /* Clay */
  --bone: #F2E5D7; /* Bone */
  --dune: #B5AA9D; /* Dune */
  --smoke: #9C7CA5; /* Smoke */
  --basalt: #747274; /* Basalt */
}

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

body, html {
  margin: 0;
  background-color: var(--bone);
  font-family: 'MuseoModerno', serif;
  color: var(--clay);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 4vh 5vw;
  scroll-behavior: smooth;
}

main {
  flex: 1; /* pushes footer down */
  overflow-y: scroll;
  scroll-snap-type: y mandatory; /* Enables scroll snapping */
  scroll-snap-stop: always; /* Ensures snapping always occurs */
  padding-top: 80px; /* Match or exceed your header’s height */
}

section {
  height: 100vh; /* Full viewport height */
  scroll-snap-align: start; /* Snaps to start of section */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 2rem;
}

section#logo {
  scroll-snap-align: none; /* Disable snap for logo section */
}

.logo-link {
  text-decoration: none; /* Remove underline */
  color: inherit; /* Inherit text color */
  cursor: pointer; /* Pointer cursor on hover */
}

.site-footer {
  text-align: center;
  padding: 20px;
  background: var(--bone); /* or your brand color */
}

.logo-wrapper {
  width: 100%;
  max-width: 435px; /* or whatever size */
  aspect-ratio: 1 / 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 2rem;
}

.logo-wrapper svg {
  width: 100%;
  height: auto;
  display: block;
}

.brand-name {
  font-family: 'MuseoModerno', sans-serif;
  font-size: 2.8rem;
  font-weight: 900; /* 811 is original */
  color: var(--clay);
  letter-spacing: 1.0em; /* 1.0 em is original */
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 3.0s ease forwards;
  animation-delay: 1.8s;
  margin-bottom: 2rem;
}

.headline-section { /* Tools for coming back to yourself */
  color: var(--clay);
  font-family: 'MuseoModerno', sans-serif; 
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.8em;
  text-transform: none;
  opacity: 0;
  /*animation: fadeIn 3.5s ease forwards;
  animation-delay: 1.8s;*/
  margin-bottom: 1rem;
}

.headline-mobile {
  display: none;
}


.subhead-section { /* The Return. 7 day practice. */
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 450;
  letter-spacing: 0.8em; /* 0.8px is originally used */
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  color: var(--clay); /* Use your brand's Smoke tone or equivalent */
  text-align: center;  
  opacity: 0;
  /*animation: fadeIn 2.5s ease forwards;
  animation-delay: 4.0s;*/
}

.prompt-section { /* You don't need fixing. You need remembering. */
  font-family: 'MuseoModerno', sans-serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 450;
  letter-spacing: 0.8em; /* 0.8px is originally used */
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  color: var(--clay); /* Use your brand's Smoke tone or equivalent */
  text-align: center;
  opacity: 0;
  /*animation: fadeIn 2.5s ease forwards;
  animation-delay: 4.0s;*/
}

/* Style for "next" links */
a.next {
  text-decoration: none; /* remove underline */
  color: inherit;        /* use the same text color as surrounding */
  display: inline-block; /* ensures hover states apply nicely */
  cursor: pointer;       /* makes it clear it's clickable */
  transition: opacity 0.3s ease;
}

a.next:hover,
a.next:focus {
  opacity: 0.7; /* subtle feedback on hover */
}

/* Logo Animations */
#Rays {
  animation: rotateCounter 444s linear infinite, fadeIn 2s ease forwards;
  animation-delay: 0.3s;
  transform-origin: center;
  opacity: 0;
}

#Crescent {
  animation: rotateClockwise 222s linear infinite, fadeIn 3s ease forwards;
  animation-delay: 0.6s;
  transform-origin: center;
  opacity: 0;
}

#Star,
#Star_2 {
  transform: none !important;
  animation: none !important;
  transition: none !important;
}

/* Fade sections in as you scroll */
.fade-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 4.0s ease-in-out, transform 4.0s ease-in-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays so sections appear more gradually */
.fade-section:nth-of-type(1) {
  transition-delay: 0s;
}
.fade-section:nth-of-type(2) {
  transition-delay: 0.5s;
}
.fade-section:nth-of-type(3) {
  transition-delay: 1s;
}
.fade-section:nth-of-type(4) {
  transition-delay: 1.5s;
}





/* Fixed Header */
.site-header {
  position: fixed;        /* Makes it float at the top */
  top: 0;                  /* Sticks it to the very top */
  left: 0;
  width: 100%;             /* Full width */
  background-color: var(--bone); /* Clay w/ slight transparency */
  color: white;
  padding: 1rem 2rem;
  z-index: 1000;           /* Ensures it stays above content */
  backdrop-filter: blur(6px); /* Optional nice effect */
}


/* Footer */
.site-footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem 0;
  opacity: 0.8;
  border-top: 1px solid rgba(0,0,0,0.1); /* thin divider line */
  color: var(--dune);
}

/* Optional social link styling */
.site-footer .social-links a {
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--clay);
}

.site-footer img {
  width: 24px;
  height: 24px;
}

.site-footer .social-links a:hover {
  opacity: 0.8;
}

@keyframes rotateClockwise {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes rotateCounter {
  from { transform: rotate(0deg); }
  to { transform: rotate(-360deg); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@media (max-width: 600px) {
  body {
    padding: 4vh 2vw;
  }
  
  .logo-wrapper {
    margin-bottom: 2.5rem;
    }
  
  .brand-name {
    font-size: 5.5vw;
    max-width: 100%;
    letter-spacing: 0.33em;
    overflow: hidden;
    white-space: nowrap;
    text-align: center;
    text-overflow: ellipsis;
  }


  .headline-mobile {
    display: none;
    font-family: 'FutureBeing'; 
    font-size: 1.05rem;
    font-weight: 300;
    color: var(--clay);
    letter-spacing: 0.65em;
    text-transform: none;
    opacity: 0;
    animation: fadeIn 3.5s ease forwards;
    animation-delay: 1.8s;
    margin-bottom: 1rem;
  }

  .headline {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-section { transition: none; }
}
