.italianno-regular {
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}


/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #440E03, #711705, #9D2007);
  color: #FFD700;
  overflow-x: hidden;
}

/* Loading Screen with Fade-Out */
#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #711705, #440E03 70%);
  
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 2.5em;
  color: gold;
  z-index: 9999;

  opacity: 1;
  transform: scale(1);
  filter: blur(0);

  transition: 
    opacity 1.2s ease,
    transform 1.2s ease,
    filter 1.2s ease;

  font-family: "Italianno", cursive;
}

/* 🌩️ STORM FADE OUT */
#loader.fade-out {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(12px);
  pointer-events: none; /* 👈 prevents invisible blocking */
}




/* =========================
   ☁️ SKY CLOUDS (FLOATING)
   ========================= */
.sky-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  overflow: hidden;
}

/* BASE CLOUD */
.cloud {
  position: absolute;

  width: 250px;        /* 👈 controls size */
  max-width: 30vw;     /* 👈 responsive cap */

  height: auto;

  opacity: 0.25;
  filter: blur(2px);

  animation: driftCloud linear infinite;
}

/* INDIVIDUAL CLOUDS */
.cloud-1 {
  top: 10%;
  left: -300px;
  animation-duration: 120s;
}

.cloud-2 {
  top: 25%;
  left: -400px;
  width: 400px;
  opacity: 0.2;
  animation-duration: 160s;
}

.cloud-3 {
  top: 5%;
  left: -250px;
  width: 250px;
  opacity: 0.3;
  animation-duration: 100s;
}

/* DRIFT ACROSS SCREEN */
@keyframes driftCloud {
  from {
    transform: translateX(0);
    opacity: 0;
  }

  10% {
    opacity: 0.3;
  }

  90% {
    opacity: 0.3;
  }

  to {
    transform: translateX(120vw);
    opacity: 0;
  }
}




#loader.fade-out {
  opacity: 0;
  pointer-events: none; /* 👈 prevents invisible blocking */
}

body.loading {
  overflow: hidden;
}


.star {
  position: absolute;
  width: 5px;
  height: 5px;
  background: #ffff00;
  border-radius: 50%;
  opacity: 0.8;
  animation: floatStars 10s linear infinite, shine 2s ease-in-out infinite alternate;
}

/* Random positions for multiple stars */
.star:nth-child(1) { top: 30%; left: 30%; animation-duration: 12s; }
.star:nth-child(2) { top: 40%; left: 70%; animation-duration: 8s; }
.star:nth-child(3) { top: 70%; left: 50%; animation-duration: 10s; }
.star:nth-child(4) { top: 60%; left: 20%; animation-duration: 8s; }
.star:nth-child(5) { top: 90%; left: 60%; animation-duration: 10s; }
.star:nth-child(6) { top: 47%; left: 42%; animation-duration: 12s; }
.star:nth-child(7) { top: 64%; left: 83%; animation-duration: 8s; }
.star:nth-child(8) { top: 55%; left: 75%; animation-duration: 10s; }
.star:nth-child(9) { top: 15%; left: 25%; animation-duration: 8s; }
.star:nth-child(10) { top: 25%; left: 60%; animation-duration: 10s; }

/* Floating movement */
@keyframes floatStars {
  0% { transform: translateY(0) translateX(0); }
  50% { transform: translateY(-30px) translateX(20px); }
  100% { transform: translateY(0) translateX(0); }
}

/* Twinkling effect */
@keyframes shine {
  0% { opacity: 0.2; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
  100% { opacity: 0.2; transform: scale(0.8); }
}


/* Main Title */
.main-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  font-size: 4em;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}

/* Horizontal Sections */
.sections-row {
  display: flex;
  justify-content: center;
  padding: 100px 20px;
  gap: 20px;
  flex-wrap: wrap;
}

.section {
  background: rgba(255, 215, 0, 0.05);
  border: 2px solid #FFD700;
  padding: 50px 20px;
  flex: 1;
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  border-radius: 10px;
}

.section h2 {
  font-size: 2em;
  margin-bottom: 20px;
  font-family: "Italianno", cursive;
  font-weight: 400;
  font-style: normal;
}

.section p {
  font-size: 1em;
  margin-bottom: 20px;
}

.section button {
  background: #FFD700;
  color: #440E03;
  border: none;
  padding: 10px 20px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  text-decoration: none;
  margin-bottom: 5%;
}


.profile-pic {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin-bottom: 20px;
}


/* Footer */
footer {
  position: relative;
  bottom: 0;
  width: 100%;
  height: 30px;
  color: gold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85em;
}



/* ── AUDIO PLAYER ── */
#audio-btn {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 9998;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(68, 14, 3, 0.85);
  border: 1px solid #FFD700;
  color: #FFD700;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  transition: background 0.2s, transform 0.2s;
}
#audio-btn:hover {
  background: rgba(113, 23, 5, 0.95);
  transform: scale(1.1);
}
#audio-btn.playing {
  animation: pulse-ring 2s ease-in-out infinite;
}
@keyframes pulse-ring {
  0%, 100% { box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.4); }
  50%       { box-shadow: 0 0 0 8px rgba(255, 215, 0, 0); }
}


/* ── TEAPOT CORNER WRAPPER ── */
.corner-wrap {
  position: fixed;
  bottom: 6%;
  right: 7%;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

/* "click me" label — hidden by default, fades in on hover */
.corner-hint {
  font-family: "Italianno", cursive;
  font-size: 1rem;
  color: #FFD700;
  text-shadow: 0 0 8px rgba(255,215,0,0.7), 0 0 16px rgba(255,100,0,0.4);
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  white-space: nowrap;
  /* subtle pulsing border pill */
  background: rgba(68, 14, 3, 0.75);
  border: 1px solid rgba(255,215,0,0.45);
  border-radius: 20px;
  padding: 3px 12px;
  backdrop-filter: blur(4px);
}

.corner-wrap:hover .corner-hint {
  opacity: 1;
  transform: translateY(0);
}

/* also show it on a looping idle animation so first-time visitors notice */
@keyframes hint-peek {
  0%, 70%, 100% { opacity: 0; transform: translateY(4px); }
  80%, 92%      { opacity: 1; transform: translateY(0); }
}
.corner-hint {
  animation: hint-peek 6s ease-in-out infinite;
}
/* hover overrides the animation */
.corner-wrap:hover .corner-hint {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

.corner-overlay {
  width: 200px;
  transition: transform 0.3s ease, filter 0.3s ease;
  filter: drop-shadow(0 0 10px gold);
  display: block;
}

.corner-wrap:hover .corner-overlay {
  filter:
    drop-shadow(0 0 20px #FFD700)
    drop-shadow(0 0 8px rgba(255,140,0,0.8));
  transform: scale(1.09) rotate(-3deg);
}


/* ══════════════════════════════════════
   FOUNDER MODAL
══════════════════════════════════════ */

.section:has(h2:contains("LemonGal24601")) .profile-pic { object-position: center; }
.section:has(h2:contains("Shaydee")) .profile-pic { object-position: center; }

/* Backdrop */
.modal-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(30, 4, 0, 0.82);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: none;
}
.modal-backdrop.open {
  display: flex;
  animation: fadeInBackdrop 0.35s ease forwards;
}
@keyframes fadeInBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Modal box */
.modal-box {
  position: relative;
  background: radial-gradient(ellipse at top, #5a1204 0%, #2e0800 60%, #1a0400 100%);
  border: 2px solid #FFD700;
  border-radius: 12px;
  box-shadow:
    0 0 40px rgba(255, 215, 0, 0.25),
    0 0 80px rgba(255, 100, 0, 0.15),
    inset 0 0 30px rgba(68, 14, 3, 0.6);
  width: 100%;
  max-width: 680px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  animation: slideUp 0.35s cubic-bezier(.4,.2,.2,1) forwards;
}
@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

/* Close button */
.modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: transparent;
  border: 1px solid rgba(255,215,0,0.4);
  color: #FFD700;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  z-index: 1;
}
.modal-close:hover {
  background: rgba(255,215,0,0.15);
  transform: scale(1.15);
}

/* Scrollable content area */
.modal-scroll {
  overflow-y: auto;
  padding: 36px 34px 30px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,215,0,0.4) rgba(30,4,0,0.5);
}
.modal-scroll::-webkit-scrollbar       { width: 5px; }
.modal-scroll::-webkit-scrollbar-track { background: rgba(30,4,0,0.5); }
.modal-scroll::-webkit-scrollbar-thumb { background: rgba(255,215,0,0.4); border-radius: 3px; }

/* Typography */
.modal-main-title {
  font-family: "Italianno", cursive;
  font-size: 2rem;
  color: #FFD700;
  text-align: center;
  text-shadow: 0 0 18px rgba(255,215,0,0.6), 0 2px 4px rgba(0,0,0,0.8);
  margin-bottom: 18px;
  line-height: 1.3;
}

.modal-section-title {
  font-family: "Italianno", cursive;
  font-size: 1.45rem;
  color: #FFD700;
  text-shadow: 0 0 10px rgba(255,215,0,0.4);
  margin: 22px 0 8px;
  line-height: 1.3;
  border-bottom: 1px solid rgba(255,215,0,0.2);
  padding-bottom: 4px;
}

.modal-body {
  font-size: 15px;
  color: #ffe8b0;
  line-height: 1.75;
  margin-bottom: 10px;
}

.modal-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal-list li {
  font-size: 1.05rem;
  color: #ffe8b0;
  line-height: 1.7;
  padding: 10px 14px;
  background: rgba(255,215,0,0.05);
  border-left: 2px solid rgba(255,215,0,0.45);
  border-radius: 0 6px 6px 0;
}
.modal-value-title {
  color: #FFD700;
  font-size: 1.15rem;
  text-shadow: 0 0 8px rgba(255,215,0,0.35);
}

.modal-closing {
  font-family: "Italianno", cursive;
  font-size: 25px;
  color: #FFD700;
  text-align: center;
  margin-top: 20px;
  font-style: italic;
  text-shadow: 0 0 10px rgba(255,215,0,0.3);
  line-height: 1.7;
}

@media (max-width: 520px) {
  .modal-scroll { padding: 28px 18px 22px; }
  .modal-main-title { font-size: 1.6rem; }
  .modal-section-title { font-size: 1.25rem; }
}