@import url('https://fonts.googleapis.com/css2?family=Merriweather&family=Oswald&family=Protest+Riot&display=swap');

.herotext{
  font-family: 'Oswald', sans-serif !important;
  color: white !important; /* White text color */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5) !important; /* Black shadow */
  position: relative;
  top: 150px;
}

.herologo{
  position: relative;
  top: 150px;
}

h1, h2 {
  font-family: 'Merriweather', serif !important;
}


.menu-icon {
    display: none; /* Hide by default */
    cursor: pointer;
    font-size: 30px;
    position: fixed;
    top: 35px;
    right: 20px; /* Position top right */
    z-index: 1000;
    color: #ffffff; /* Color adjusted for better visibility */
}

.menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    text-align: center;
    padding-top: 150px;
    transition: all 0.3s ease; /* Smooth transition */
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Added shadow for depth */
}

.menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("media/footer.jpg");
    background-size: cover;
    background-position: center;
    opacity: 0.9; /* Adjust the opacity as needed */
    z-index: -1; /* Ensures the pseudo-element is behind the content */
}

/* Ensure the direct children of .menu are positioned relative to it */
.menu > * {
    position: relative;
    z-index: 1;
}

.menu a {
    display: block;
    color: #ecf0f1;
    padding: 20px;
    margin: 20px 20px; /* Increased margin for better spacing */
    text-decoration: none;
    font-size: 28px;
    font-weight: 500;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease; /* Smooth transitions */
    opacity: 0;
    transform: translateY(-20px);
    animation: slideIn 0.5s ease forwards;
    border: 1px solid transparent; /* Added for a subtle border effect */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow for depth */
}

.menu a:hover {
    background-color: #34495e;
    transform: scale(1.05); /* Scale up slightly on hover */
    border-color: #ecf0f1; /* Subtle border color change */
    box-shadow: 0 5px 15px rgba(0,0,0,0.5); /* Added shadow for a 3D effect */
}



/* Media Query for Mobile Screens */
@media screen and (max-width: 921px) {
    .menu-icon {
        display: block; /* Show only on small screens */
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Staggered animation for each menu item */
.menu a:nth-child(1) { animation-delay: 0.3s; }
.menu a:nth-child(2) { animation-delay: 0.4s; }
.menu a:nth-child(3) { animation-delay: 0.5s; }
.menu a:nth-child(4) { animation-delay: 0.6s; }
.menu a:nth-child(5) { animation-delay: 0.7s; }


@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 0.9; }
}

@keyframes fadeOut {
  from { opacity: 0.9; }
  to { opacity: 0; }
}

.background-fade-in {
  animation: fadeIn 0.5s ease forwards;
}

.background-fade-out {
  animation: fadeOut 0.5s ease forwards;
}





.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out 0.3s, transform 0.6s ease-out 0.3s; /* Added a 0.3s delay */
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0px);
}

.pulse-zoom {
  
  transform-origin: center; /* Ensures zooming happens from the center */
}

/*zoom anims for products.html*/
.pulse-zoom.visible {
  animation: pulseZoomAnimation 0.6s ease-out forwards;
}

@keyframes pulseZoomAnimation {
  0% { transform: scale(1); }
  50% { transform: scale(1.2); } /* Zoom in */
  100% { transform: scale(1); } /* Zoom out */
}


.zoom-in img {
    transition: transform 0.3s ease; /* Smooth transition effect */
    display: block; /* Removes any extra space below the image */
}

.zoom-in:hover img {
    transform: scale(1.1); /* Zooms in the image */
}




/* footer */

.footer {
    position: relative; /* Needed for absolute positioning of the pseudo-element */
    color: #fff;
    font-family: 'Roboto', sans-serif;
    z-index: 1;
  }
  
  .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3)), url('./media/footer.jpg') no-repeat center center;
    background-size: cover;
    opacity: 0.9; /* Adjust the opacity as needed */
    z-index: -1;
  }
  
  
  
  .footer nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .footer nav ul li {
    margin-bottom: 8px; /* Spacing between list items */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
  
  }
  
  .footer nav ul li a {
    color: #ddd; /* Light color for the font */
    text-decoration: none; /* Removes underline from links */
    display: block; /* Makes the whole list item clickable */
  }
  
  .footer nav ul li:hover {
    transform: scale(1.05); /* Slightly enlarges the list item on hover */
    color: #fff; /* Changes text color on hover */
  }
  
  .footer nav ul li a:hover {
    color: inherit; /* Ensures the link color matches the list item color on hover */
  }
  
  .footer-content {
    padding: 20px 0;
    display: flex;
    justify-content: space-around;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
  }
  
  .footer-section {
    padding: 15px;
  }
  
  .footer-widget {
    text-align: left;
  }
  
  .footer-title {
    color: #fff;
    margin-bottom: 10px;
  }
  
  .footer-bottom {
    background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.3));  padding: 10px 0;
    text-align: center;
  }
  
  .footer-logo {
    max-width: 100px;
    margin-bottom: 10px;
  }
  
  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  
    .footer-bottom-content {
      flex-direction: column;
    }
  }
  
  @media (max-width: 480px) {
    .footer-grid {
      grid-template-columns: 1fr;
    }
  }
  
  


  /* Class that hides an element by default */
  .hide-mobile {
    display: none;
}

/* When the screen size is 749px or larger, the element is displayed */
@media (min-width: 750px) {
    .hide-mobile {
        display: block; /* or 'inline', 'inline-block', 'flex', etc., depending on your layout needs */
    }
}




.phone-link {
    display: inline-flex;
    align-items: center;
    color: white; /* Adjust the color as needed */
    text-decoration: none; /* Optional: Removes underline from the link */
    font-size: 16px; /* Adjust the font size as needed */
}

.phone-link i {
    margin-right: 8px; /* Adds spacing between the icon and the number */
}