body {
    padding-top: 60px; 
}

section[id] {
    scroll-margin-top: 60px;
}

/* navbar */
.navbar-custom {
    background-color: #2d2d2d;
}

.footer-custom {
    background-color: #2d2d2d;
}

.navbar-nav .nav-link {
    font-weight: bold;
}

.navbar-nav .nav-link:hover {
    text-decoration: underline;
}

/* header */
.header-title {
    font-family: 'Great Vibes', sans-serif;
    font-size: 5.5rem;
}

.section-title {
    font-family: 'Story Script', sans-serif;
    font-size: 3.75rem;
}

.header-custom {
    background-color: #e5a62d;
    background-image: repeating-linear-gradient(
        45deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.05) 1px,
        transparent 1px,
        transparent 10px
    );
}

.header-button {
    color: #7c560f;
}

.header-button2:hover {
    color: #7c560f;
}

@media (max-width: 768px) {
    .header-custom p {
        margin-bottom: 1rem; 
    }
}

.footer-custom a {
  text-decoration: none;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem auto;
    border-radius: 0.5rem; 
    background-color: #2d2d2d; 
    color: white; 
}

/* sections */
.section-custom1 {
    background-color: #FFF7E6;
}

.section-custom2 {
    background-color: #FFF0D3;
}

.menu-bg {
    background-color: #FFF7E6;
}

.contact-bg {
    background-color: #FFF7E6;
}

.text-justify {
    text-align: justify;
}

/* contact us section */
.contact-us-wrapper {
    display: flex;
    align-items: stretch; 
}

.contact-us-image {
    flex: 1;
    overflow: hidden; 
}

.contact-us-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}

.contact-us-content {
    align-items: flex-end;
    flex: 1;
    padding-left: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (max-width: 768px) {
    .contact-us-wrapper {
        flex-direction: column;
        gap: 1.5rem; 
    }

    .contact-us-image {
        height: 250px;
    }

    .contact-us-content {
        padding-left: 0;
        text-align: center;
        align-items: center;
    }
}

/* custom buttons */
.btn-custom-1 {
    background-color: #2d2d2d;
    color: white;
}

.btn-outline-menu-custom {
    background-color: white;
    color: #2d2d2d;
}

.btn-outline-menu-custom:hover {
    background-color: #2d2d2d;  
    color: white;
}

.btn-outline-menu-custom-2 {
    border-color: white;
    color: white;
}

.btn-outline-menu-custom-2:hover {
    background-color: #2d2d2d;  
    color: white;
}

.category-btn.active {
    background-color: #2d2d2d;  
    color: white;
    border-color: #2d2d2d;
}

#scrollBottomBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2d2d2d;
  color: white;
}

/* testomonials */
.testimonial-fade {
  position: relative;
  min-height: 180px;
}

.testimonial-item {
  position: absolute;
  width: 100%;
  opacity: 0;
  animation: fadeTestimonials 12s infinite;
}

.testimonial-item:nth-child(1) {
  animation-delay: 0s;
}
.testimonial-item:nth-child(2) {
  animation-delay: 4s;
}
.testimonial-item:nth-child(3) {
  animation-delay: 8s;
}

@keyframes fadeTestimonials {
  0% { opacity: 0; }
  8% { opacity: 1; }
  33% { opacity: 1; }
  41% { opacity: 0; }
  100% { opacity: 0; }
}

.testimonial-item .stars {
  color: #f5c518;       
  font-size: 1.2rem;    
  margin-bottom: 0.5rem;
}


/* image overlay */
.zoom-img {
    cursor: pointer;
}

#overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 999;
}

#overlay img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}
