/*General*/
body { 
  background-image: url('1_b7204dbe-2b32-4bad-9791-e952b7efbb36.jpg'); 
  background-size: cover;      /* ensures the image covers the whole screen */
  background-repeat: no-repeat; /* prevents tiling */
  background-position: center;  /* centers the image */
  background-attachment: fixed; /* optional: makes it stay during scroll */
}

body * {
    .acme-regular {
  font-family: "Acme", sans-serif;
  font-weight: 400;
  font-style: normal;
}
  }
  
  html,
  body {
    padding: 0;
    margin: 0;
    scroll-behavior: smooth;
  }
  
  h1,
  h2,
  h3,
  h4 {
    font-weight: bold;
  }
  
  ul li {
    border: none !important;
  }
  
  /*Containers*/
  
  .image-section {
    height: 100vh;
    -moz-text-align: center; /*works on Firefox */
    -webkit-text-align: center; /*works on Safari and Google Chrome*/
    text-align: center;
    background-color: #262626;
    -moz-padding: 20px; /*works on Firefox */
    -webkit-padding: 20px; /*works on Safari and Google Chrome*/
    padding: 20px;
  }
  
  .image-section img {
    max-width: 60%;
    max-height: 60%;
    margin-top: 50px !important;
    object-fit: cover;
  }
  
  .links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  .links a {
    flex: 0 0 10%;
  }
  
  .icon-link {
    text-decoration: none;
    font-size: 48px auto;
    padding: 26px;
  }
  
  .content-container {
    width: 70%;
    margin: 0 auto;
  }
  
  .home {
    width: 100%;
    margin: 0 auto;
  }
  
  .home p {
    font-weight: bold;
  }
  
  .home h1 {
    font-size: 64px;
  }
  
  .html {
    width: 90%;
    background-color: #04aa6d;
  }
  
  .w3-ul li {
    padding: 8px 0px;
  }
  
  /*Utilities*/
  
  .w3-margin-top-2 {
    margin-top: 32px;
  }
  
  .w3-margin-top-4 {
    margin-top: 64px;
  }
  
  .w3-margin-top-20-percent {
    margin-top: 20%;
  }
  
  .w3-sticky {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
  }
  
  .w3-fixed {
    position: fixed;
    bottom: 0;
    left: 0;
  }
  
  /*Media queries*/
  @media screen and (max-width: 1200px) {
    .home {
      width: 90%;
    }
    .content-container {
      width: 80% !important;
    }
  
    .download-text {
      display: none;
    }
  }
  
  @media screen and (max-width: 992px) {
    .home {
      width: 100%;
    }
    .home h1 {
      font-size: 48px;
    }
  }
  
  @media screen and (max-width: 600px) {
    .content-container {
      width: 100% !important;
    }
  
    .image-section {
      -moz-padding: 10px; /*works on Firefox */
      -webkit-padding: 10px; /*works on Safari and Google Chrome*/
      padding: 10px;
    }
  
    .links a {
      flex: 0 0 5% !important;
    }
  
    .home {
      text-align: center;
      width: 100%;
    }
  
    .home p {
      font-size: medium !important;
    }
  
    .home h1 {
      font-size: 32px;
    }
    .home h2 {
      font-size: 24px;
    }
  
    .w3-fixed {
      position: inherit;
    }
  
    .image-section {
      height: auto;
    }
  
    .image-section img {
      max-width: 80%;
      max-height: 80%;
    }
  
    .icon-link {
      font-size: 24px;
    }
  
    .w3-container,
    .w3-panel {
      padding: 0.01em;
    }
  
    .download-text {
      display: inline-block;
    }
  }

/* === Forest Aesthetic Enhancements === */

/* Background */
body {
  background: linear-gradient(to bottom, #0b3d0b, #1f5c1f);
  background-image: url('1_b7204dbe-2b32-4bad-9791-e952b7efbb36.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-blend-mode: multiply;
  color: #f0f5e1;
}

/* Headings */
h1, h2, h3, h4 {
  color: #d3f9d8;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

/* Section Containers with glass effect */
.content-container,
.w3-container {
  background-color: rgba(34, 49, 34, 0.6);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  padding: 24px;
  margin-bottom: 32px;
}

/* Buttons & Links */
.w3-button {
  background-color: rgba(129, 212, 131, 0.1);
  color: #c4f0c5;
  border: 1px solid #81d483;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.w3-button:hover {
  background-color: #81d483;
  color: #0b3d0b;
  box-shadow: 0 0 10px #b8e994;
}

a {
  color: #b8e994;
  text-decoration: none;
}

a:hover {
  color: #a2f5a2;
  text-shadow: 0 0 5px #a2f5a2;
}

/* Image Section Enhancements */
.image-section {
  background: rgba(22, 40, 22, 0.8);
  border-right: 2px solid #a2f5a2;
}

.image-section img {
  border: 3px solid #81d483;
  box-shadow: 0 0 12px rgba(129, 212, 131, 0.3);
}

/* Social Icons */
.links a {
  font-size: 28px;
  color: #b8e994;
  margin: 0 10px;
  transition: all 0.3s ease;
}

.links a:hover {
  color: #d3f9d8;
  transform: scale(1.2);
}

/* Quote Style */
.home p {
  font-style: italic;
  color: #f0ffe1;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Pitch/Theme/Why Section Headings */
#pitch h2, #theme h2, #why h2 {
  color: #e6fce6;
  font-size: 28px;
  border-bottom: 2px solid #81d483;
  padding-bottom: 6px;
}

/* Game iframe */
iframe {
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  margin-top: 20px;
}
/* Glowing hover + leaf icons */
.w3-button {
  position: relative;
  padding-left: 30px;
}

.w3-button::before {
  content: '🍃';
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: 0.7;
  transition: opacity 0.3s ease;
}

.w3-button:hover::before {
  opacity: 1;
}

.w3-button:hover {
  box-shadow: 0 0 8px 3px rgba(144, 238, 144, 0.4);
  text-shadow: 0 0 5px #a2f5a2;
}



body {
  cursor: url('https://cdn-icons-png.flaticon.com/512/7655/7655287.png') 16 16, auto;
}

