* {
    margin: 0;
    padding: 0;
    font-family: Josefin Sans;
}
p {
    font-size: 20px;
}
.hero-section {
    background-color: #ff6600;
    min-height: 50vh;
    padding: 100px 0;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 1;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}
.hero-curve {
    margin-top: -1px; 
    z-index: 0;
}
.btn-order-online {
   background-color: #ff6600;
   color: #ffffff;
   padding: 12px 30px;
   font-size: 1.25rem;
   font-weight: bold;
   border: none;
   border-radius: 8px;
   transition: background-color 0.3s ease;
    }
    .btn-order-online:hover {
   background-color: #e65c00;
   color: #ffffff;
    }
    .phone_num_index {
   font-size: 50px;
   font-weight: 600;
   text-shadow: (0px 0px 21px #000000);
    }
    #gallery img {
    transition: transform 0.3s ease;
    }

    #gallery img:hover {
    transform: scale(1.03);
    }

    .social-icon i {
  color: #ff6600; 
  transition: color 0.3s ease;
}

.social-icon:hover i {
  color: #e65c00; 
}
#menus img {
  height: auto;        
  max-width: 100%;     
}
.no-dogs-notice {
  background-color: #ff6600; 
  color: #ffffff;            
  padding: 15px 20px;
  border-radius: 8px;
  font-size: 1rem;
}
.con-details {
  padding-left: 70px;
}
.cookie-banner {
  background-color: rgba(33, 37, 41, 0.7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1050;

  /* animation setup */
  transform: translateY(100%);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}

/* when visible */
.cookie-banner.cookie-visible {
  transform: translateY(0);
  opacity: 1;
}
.no-dogs-notice strong {
  font-weight: bold;
}

.no-dogs-notice a {
  color: #ffffff;
  text-decoration: underline;
}

.no-dogs-notice a:hover {
  color: #ffe6cc;
}
.cookie-banner {
  z-index: 9999;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
@media (max-width: 576px) {
  .navbar .social-icon {
    display: inline-block;
    margin: 0 12px; 
    position: relative;
    padding: 0 8px;
  }

  
  .navbar .social-icon:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
  }

  .navbar .social-icon i {
    font-size: 2rem; 
  }
}