@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Revalia&family=Syncopate:wght@400;700&family=Unica+One&display=swap');
@media screen and (min-width: 769px) {
  .mobile-menu-overlay {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
  }

  .menu-toggle {
    display: none !important;
  }
}

H1 {
    font-family: "Unica One", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  font-size: 1.2rem !important; /* Large font size for prominence */
  color: #777777; /* Dark gray color for readability */
  text-align: center; /* Center the heading */
  margin-top: 0px; /* Spacing above */
  margin-left: 180px;
  margin-bottom: 20px; /* Spacing below */
  letter-spacing: 1px; /* Adds slight spacing between letters */
  text-transform: uppercase; /* Makes text uppercase */
  z-index: 10; /* Ensure it stays on top of other elements */
}

@media screen and (max-width: 768px) {
  h1 {
    margin-top: 10px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.9rem !important;
    font-weight: 400;
    color: #b93c3c;
    text-align: center;
    z-index: 10;
    max-width: 600px; /* Optional: to prevent too wide text on large screens */
  }

  .layer-2 .logo {
    width: 80px;
    height: auto;
    margin-top: 0px;
    margin-left: 10px;
    transform: rotate(0deg);
    animation: fadeInLogo 5s ease-in-out forwards;
    }

    .layer-3 .logo {
      max-width: 150px;
      height: auto;
    }

    .layer-2 .sidebar-content {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: space-between;
      height: 100%;
      padding: 20px;
      }
}
/* Applies to all pages - transition (Layer-4) */
.layer-4 {
    position: fixed;
    top: 0;
    left: -100%; /* Starts off-screen */
    width: 100vw;
    height: 100vh;
    background-color: white; /* Customize as needed */
    z-index: 1001; /* Ensure it appears above other layers */
    transition: left 1s cubic-bezier(0.1, 0.8, 0.1, 1); /* !!! - - - -transition - MATCH WITH aboutus.js - - - - !!!! */
}
/* Page load transition */
@keyframes fadeInPage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

body {
  opacity: 0; /* Start hidden */
  animation: fadeInPage 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) forwards;
}


.copyright {
  position: fixed;
  bottom: 1rem;
  left: 10.5rem;
  font-size: 9px; 
  color: #8e8e8e;  
  z-index: 1000;  
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.footer-icon {
    width: 30px; /* Adjust image size */
    height: 30px; /* Keep aspect ratio consistent */
    margin-bottom: -5px;
    margin-right: 65px;
    margin-left: -140px;
    display: inline-block;
}

.instagram-icon img {
  height: 20px;
  margin-left: 50px;
  transition: opacity 0.3s ease;
}

.instagram-icon img:hover {
  opacity: 0.2;
}

.pinterest-icon img {
  height: 20px;
  margin-left: 15px;
  transition: opacity 0.3s ease;
}

.pinterest-icon img:hover {
  opacity: 0.2;
}

@media screen and (min-width: 769px) {
  .mobile-menu-overlay,
  .menu-toggle {
    display: none !important;
    opacity: 0 !important;
    pointer-events: none !important;
    visibility: hidden !important;
    position: absolute !important;
    top: -9999px !important;
    left: -9999px !important;
    height: 0 !important;
    width: 0 !important;
    overflow: hidden !important;
  }
}
