/*
 Theme Name:   Jeitta
 Template:     twentytwentyfive
*/

html {
  scroll-behavior: smooth;
}

.sticky {
    position: fixed;
    top: 0;
    opacity: 0.9;
    z-index: 100;
    width: 100vw;
    transition: opacity 0.3s ease;
  }
  
  .sticky:hover {
    opacity: 1; /* Full opacity on hover */
  }
  
  .map-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
  }
  
  .btn1:hover {
    color: #660032;
    background-color: #b19d5e;
       transform: scale(1.02);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .btn2:hover {
    color: #660031;
    background-color: #b19d5e;
  }
  
  
  
  footer {
  background: red !important;
  padding: 30px !important;
  position: relative !important;
  z-index: 9999 !important;
}

.hide-on-mobile {
  display: none !important;
}

/* Show on larger screens (optional) */
@media (min-width: 768px) {
  .hide-on-mobile {
    display: none !important;
  }
}