/* -------------------------
   General Layout & Typography
-------------------------- */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  font-family: sans-serif;
  background-color: white;
  color: black;
}

header, footer {
  text-align: center;
  padding: 20px;
}

main {
  flex: 1;
  padding-bottom: 40px;
}



/* -------------------------
   Grid Layout (Homepage)
-------------------------- */
.grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.grid-item {
  text-align: center;
}

.grid-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.hover-description {
  opacity: 0;
  transition: opacity 0.2s ease;
  font-size: 0.85em;
  color: #444;
  margin-top: 8px;
}

.grid-item:hover .hover-description {
  opacity: 1;
}


/* -------------------------
   Mobile Layout Fixes
-------------------------- */
@media (max-width: 700px) {
  .grid-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 10px;
  }

  .grid-item {
    width: 100%;
    max-width: 400px;
  }

  audio {
    width: 100%;
  }

  .sunnyboi-row {
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap; /* allow wrapping if needed */
  }

  .sunnyboi {
    width: 100px;
    height: auto;
  }
}

/* -------------------------
   Navigation Menu
-------------------------- */
.lsl-nav {
  text-align: center;
  margin: 30px 0;
  font-family: 'Courier New', Courier, monospace;
}

.lsl-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.lsl-nav li {
  margin: 0;
}

.lsl-nav a {
  text-decoration: none;
  color: black;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.lsl-nav a:hover {
  border-bottom: 1px solid black;
}

/* -------------------------
   Sunnyboi Animation
-------------------------- */
.sunnyboi {
  transition: transform 0.3s ease;
}

@keyframes wiggle {
  0% { transform: rotate(0deg); }
  15% { transform: rotate(4deg); }
  30% { transform: rotate(-4deg); }
  45% { transform: rotate(3deg); }
  60% { transform: rotate(-3deg); }
  75% { transform: rotate(2deg); }
  100% { transform: rotate(0deg); }
}

.sunnyboi:hover {
  animation: wiggle 0.5s ease-in-out;
}

.sunnyboi-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px; /* adjust as needed */
  flex-wrap: nowrap;  /* prevents stacking */
  margin-top: 40px;
}


/* -------------------------
   Subpage Styles (About, Contact, etc.)
-------------------------- */

.about-text {
  max-width: 700px;
  margin: 40px auto;
  padding: 0 20px;
  line-height: 1.7;
  font-size: 16px;
  text-align: center;
  font-family: 'Georgia', serif;
  color: #222;
}

/* list styling inside about-text */
.about-text ul {
  list-style-position: inside;
  padding-left: 0;
  text-align: center;
  margin: 20px 0;
}

/* -------------------------
  social icons 
-------------------------- */

.sunnyboi-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;  /* Adjust spacing between sun images */
  margin-bottom: 100px;  /* Space below suns before icons */
}


.social-icons {
  display: flex;
  gap: 16px; /* Space between social icons */
  justify-content: center;
}


