/* Resetting default margin and padding */
body, h1, h2, h3, p, ul {
  margin: 0;
  padding: 0;
}

body {
  font-family: 'gloock-regular', serif;
  margin: 0;
  padding: 0;
  max-width: 100%;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: 50px;
  padding: 20px 40px;
  border-bottom: #000 1px solid;
}

header p {
  margin: 0;
  font-size: 1.5rem;
}


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

#menu-toggle {
    display: none;
}

.menu-icon {
  display: none;
  font-size: 30px;
  cursor: pointer;
}

.social-icons {
  display: flex;
  gap: 0.5rem;
}

.social-icons a {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
}

.social-icons img {
  width: 40px;
  height: 40px;
  border-radius: 10%;
}

.social-icons i {
  font-size: 12px;
  margin-top: 5px;
}

.social-icons a img:hover {
  transform: scale(1.1);
}

@keyframes shake {
  0% { transform: translateX(0); }
  20% { transform: translateX(-5px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
  100% { transform: translateX(0); }
}

.shake-hover:hover {
  display: inline-block;
  animation: shake 0.5s ease-in-out;
}

.body {
  margin-top: 100px; /* Space for fixed header */
  padding: 2rem 4rem; /* Increased horizontal padding */
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.infocontent {
  font-family: 'gloock-regular', serif;
  margin-bottom: 3rem;
}

.infocontent h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  line-height: 1.3;
}

.infocontent h3 {
  color: rgb(46, 46, 46);
  line-height: 1.6;
  font-size: 1.2rem;
}

.line {
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  border-top: #000 solid 1px;
}

.content {
  margin-top: 2rem;
  padding: 0 1rem;
}


.box {
  padding: 1rem;
  background: #dfdbdb;
  transition: box-shadow 0.1s cubic-bezier(0, -0.07, 1, 1.11);
  box-shadow: 12px 12px 0 #333;
  display: inline-block;
  outline: none;
}

.box:hover {
  box-shadow: 0 0 0 #333;
}

.box:active {
  border: 2px solid #333;
  transition: border 0.3s ease-in-out;
  transform: scale(1.04);
}

.buttons-container {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
  padding: 1rem 0;
}

.button {
  padding: 1.2rem 2rem;
  background: #dadada;
  transition: all 0.2s cubic-bezier(0, -0.07, 1, 1.11);
  box-shadow: 12px 12px 0 #333;
  outline: none;
  font-size: 1.1rem;
  cursor: pointer;
  text-align: center;
}

.button:hover {
  box-shadow: 0 0 0 #333;
  transform: translate(6px, 6px);
}

.button:active {
  border: 2px solid #333;
  transition: border 0.3s ease-in-out;
  transform: scale(1.02);
}

.button a {
  text-decoration: none;
  color: #333;
  display: block;
  width: 100%;
  height: 100%;
}

.popup {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 900;
}

.popup-content {
  text-align: center;
}

input, textarea, button {
  margin-bottom: 10px;
}

button {
  background-color: #009974;
  color: #fff;
  padding: 10px;
  border: none;
  cursor: pointer;
}

button:hover {
  background-color: #007c66;
}

.category {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.5rem 0;
}

.category-content {
  max-width: 90%;
}

.bullet-list {
  color: rgb(46, 46, 46);
  margin-top: 1rem;
  list-style-position: outside;
  padding-left: 1.2rem;
}

.bullet-list li {
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.category h2 {
  margin: 0 0 1rem 0;
  font-size: 1.8rem;
}

.category p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  line-height: 1.6;
}

ul li h2 {
  color: goldenrod;
}

/* Responsive styles */

@media (max-width: 768px) {
  header p {
    font-size: 1.5rem !important;
  }
  
  header {
    padding: 15px 20px;
  }
  
  .body {
    padding: 1rem;
    margin-top: 80px;
  }
  
  .infocontent h1 {
    font-size: 1.8rem;
  }
  
  .infocontent h3 {
    font-size: 1rem;
  }

  .menu-icon {
    display: block;
  }

  .social-icons {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 5rem;
    right: .65rem;
    border-top: 3px solid white;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    background-color: rgba(255, 255, 255, 0.863);
    padding: 20px;
  }

  #menu-toggle:checked ~ .social-icons {
    display: flex;
    
    
  } 

  .social-icons a {
    opacity: 0;
    transform: translateY(-10px);
    animation: fadeIn 0.5s ease-out forwards;
  }

  .social-icons a:nth-child(1) { animation-delay: 0.1s; }
  .social-icons a:nth-child(2) { animation-delay: 0.2s; }
  .social-icons a:nth-child(3) { animation-delay: 0.3s; }
  .social-icons a:nth-child(4) { animation-delay: 0.4s; }
  .social-icons a:nth-child(5) { animation-delay: 0.5s; }
  .social-icons a:nth-child(6) { animation-delay: 0.6s; }

  @keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

  .button {
    padding: auto;
    background: #dadada;
    transition: box-shadow 0.1s cubic-bezier(0, -0.07, 1, 1.11);
    box-shadow: 12px 12px 0 #333;
    outline: none;
    max-width: 80%;
  }

  .buttons-container {
    flex-direction: column;
    gap: 1rem;
  }

  .box, .button {
    width: 100%;
  }

  .category {
    flex-direction: column;
    align-items: flex-start;
  }

  .category-content {
    max-width: 100%;
  }
  .silver {
    color: rgb(56, 56, 56);
}

}

.section {
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-content {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.image-container {
    flex: 1;
    max-height: fit-content;
    max-width: fit-content; /* Lock maximum width */
    height: 500px; /* Lock height */
}

.image-container img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.quote-container {
    flex: 1;
    text-align: left;
}

.quote {
    font-size: 2em;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: bold;
}

.attribution {
    font-size: 1em;
    color: #666;
}

.attribution a {
    color: #009974;
    text-decoration: none;
    transition: color 0.3s ease;
}

.attribution a:hover {
    color: #007c66;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .section {
        padding-top: 80px; /* Reduced padding for mobile */
    }

    .hero-content {
        flex-direction: column;
        gap: 20px;
    }

    .image-container {
        width: 100%;
        height: 350px; /* Smaller height for mobile */
        max-width: 100%;
    }

    .quote-container {
        text-align: center;
    }

    .quote {
        font-size: 1.5em; /* Smaller font size for mobile */
    }
}

/* Add specific styles for other sections as needed */
