/* BODY */
body, html {
    height: auto;
    font-family: 'Amatic SC', cursive;
    background-size: cover;
    background-position: center;
    background-color: navy;
    align-items: center;
    cursor: url('compass-cursor.png') 12 12, pointer;
}

/* HEADER */
h1 {
    font-family: "Comforter Brush";
    font-size: 100px;
     letter-spacing:15px;
     padding-top: 20px;
     padding-left: 50px;
     padding-right: 50px;
     margin-bottom: 0;
     width: 100%;
    text-align: center;   
    display: block;      
    color: white;
    text-shadow: 0 0 15px cyan, 0 0 15px cyan;
    z-index: 10;
}

/* TEXT */
p {
    font-family: "Amatic SC";
    color: #3f0fB7;
    font-size:24px;
    line-height: 30px;
    font-weight: bold;
}


/* LINKS */
a {
    color: MediumVioletRed; 
    text-decoration: none; 
    font-weight: bold;    
    transition: color 0.3s ease; 
}

/* HOVER EFFECT */
a:hover {
    color: cyan;   
}

/* COMPASS ROSE NAVIGATION */
.compass-nav {
    position: fixed;
    flex-shrink: 0;
    bottom: 75px;
    right: 75px;
    width: 150px;
    height: 150px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes compassPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.pulse-effect {
  animation: compassPulse 3s ease-in-out infinite;
  filter: drop-shadow(0 0 15px rgba(255, 250, 205, 0.6)); 
}

.compass-label {
    display: block;
    cursor: pointer;
    transition: transform 0.8s ease;
    filter: drop-shadow(0 0 10px #FFFACD);
    z-index: 1001;
}

.compass-icon {
    width: 150px;
    height: 150px;
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip-path: inset(50%);
    white-space: nowrap !important;
    border: 0 !important;
    opacity: 0 !important;
}

#toggle:checked + .compass-label {
    transform: rotate(360deg);
}

ul.menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    transition: all 0.5s ease;
    opacity: 0;
    pointer-events: none;
}

#toggle:checked ~ ul.menu-list {
    opacity: 1;
    pointer-events: auto;
}

/* COMPASS ICONS */

ul.menu-list li {
    --radius: 100px;  
    --offset: -0.25turn;
    --count: 4;
    position: absolute;
    top: 0; left: 0;
    padding: 0;
    margin: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform: translate(-50%, -50%);
}

#toggle:checked ~ ul.menu-list li {
    transform: translate(-50%, -50%) 
               rotate(calc((var(--i) * 1turn / var(--count)) + var(--offset))) 
               translate(var(--radius))
               rotate(calc(-1 * ((var(--i) * 1turn / var(--count)) + var(--offset))));
}

ul.menu-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 75px;
    height: 50px;
    background: #FFFACD;
    border: 3px solid #FFA07A;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.3);
    transition: transform 0.2s ease;
}

ul.menu-list a:hover {
    transform: scale(1.2);
    box-shadow: 0 0 15px #FFFACD;
}

/* PARALLAX SCROLLING */
*{
  margin: 0;
  padding: 0;
}
.section-background {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
  height: 50vh;
  width: 100%;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
}
.parallax {
  background-image: url('sky.png'); 
}
.parallax1 {
  background-image: url("starrysky.gif");
}
.parallax2 {
  background-image: url("garden.gif");
}
.parallax3 {
  background-image: url("pool.gif");
}

.parallax4 {
  background-image: url("pool.gif"); 
}

/* BIO CONTAINER */
.bio-flex-container {
    display: flex;
    flex-direction: row; 
    align-items: center; 
    justify-content: center;
    gap: 100px; 
    text-align: left; 
}

.bio-image img {
    width: 500px; 
    height: 500px;
    object-fit: cover; 
    border-radius: 50%; 
   border: 8px transparent;
    box-shadow: 
        0 0 0 4px #FFA07A,
        0 0 0 10px #FFFACD,
        0 0 0 14px #FFA07A;
}

/* CONTENT STYLING */
.bio-content {
    flex: 1; 
    max-width: 600px;
}

/* TEXT BLOCKS */

.text-bloc {
    overflow: visible;
    background-color: white;
    padding: 80px 5%; 
    text-align: center;
    position: relative;
    box-sizing: border-box;
    border: 8px transparent;
    box-shadow: 
        0 0 0 4px #FFA07A,
        0 0 0 10px #FFFACD,
        0 0 0 14px #FFA07A;
}

.text-bloc h2 {
    font-family: 'Comforter Brush', cursive;
    font-size: 60px;
    color: #3f0fB7;
    margin-bottom: 10px;
}

.text-bloc h3 {
    font-family: 'Amatic SC', cursive;
    font-size: 40px;
    color: MediumVioletRed; 
    margin-bottom: 30px;
}

.text-bloc p {
    font-family: 'Amatic SC', cursive;
    color: #3f0fB7;
    font-size: 28px;
    line-height: 1.4;
    font-weight: bold;
    margin-bottom: 25px; 
}

.text-bloc a {
    color: MediumVioletRed;
    transition: all 0.3s ease;
}

.text-bloc a:hover {
    color: cyan;
}

/* SUBTACK */
.substack-horizontal-row {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap; 
    gap: 20px;
    padding: 20px 0;
    overflow-x: auto; 
    justify-content: flex-start;
    align-items: stretch; 
    border: none;
}

/* INDIVIDUAL COLUMNS */
.substack-horizontal-row .column {
    flex: 0 0 400px; 
    min-height: 200px;
     border: none;
}

.substack-post-embed {
    width: 100% !important;
    height: 100%;
     border: none;
}


/* BUTTONS */
.button {
  transition-duration: 0.4s;
  border-radius: 50px;
  padding: 15px 32px;
  text-align: center;
  display: inline-block;      
  font-size: 30px;
  letter-spacing:.15em;
  font-weight: bold;      
  background-color: white; 
  border: 8px solid transparent;
    box-shadow: 
        0 0 0 4px #FFA07A,
        0 0 0 10px #FFFACD,
        0 0 0 14px #FFA07A;
  color: MediumVioletRed;             
  cursor: pointer;          
}

.button:hover {
  background-color: navy;
  color: cyan;
}

footer {
    padding: 60px 40px;
    margin-top: 0;
    width: 100%;
    text-align: left;
    background-color: white; 
    position: relative;
    z-index: 1;
    box-sizing: border-box;
  border-top: 8px solid transparent;
    box-shadow: 
        0 0 0 4px #FFA07A,
        0 0 0 10px #FFFACD,
        0 0 0 14px #FFA07A;
}