html, body {
    scroll-behavior: smooth;
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
  }

.custom-container {
    max-width: 1400px;
}

.header-background {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.1)) fixed, url(../img/kitchen2.webp) no-repeat center center;
    background-size: cover;
    background-position: 0px -200px;
    height: 400px;
}

.card-col {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.card {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(25% - 1rem);
    margin: 0.5rem;
}

.card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-grow: 1;
}

.card-img-top {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.card-img-top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-img-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    filter: blur(10px);
    z-index: -1;
}

.quote-container {
    background-color: #a7d1e2;
    border-radius: 4px;
}

.select2-search__field {
    height: 25px !important;
}

.header-1 {
    font-size: 1.8rem;
    font-weight: 500;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.alert-header {
    font-size: 0.9rem;
    font-weight: 700;
}

.alert-sub{
    font-size: 0.8rem;
}

.btn-action {
    background-color: #ec5b0c;
    color: #f5f5f5;
}

.btn-action:hover {
    background-color: #d44e0a;
    color: #f5f5f5;
}

.multi-select {
    max-width: 100%;
    display: block;
}

.navbar-nav li {
    padding: 0 1rem;
}

.text-action {
    color: #ec5b0c;
}

.review-quote {
    position: absolute;
    top: -5px;
    opacity: 0.2;
    right: 5px;
    font-size: 30px;
}

.heading-underline {
    position: relative; 
    padding-bottom: 0.5rem;
  }

  .heading-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 10%;
    height: 3px;
    background-color: #ec5b0c;
  }


  .footer-heading-underline {
    position: relative; 
    padding-bottom: 0.5rem;
  }

.footer-heading-underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 10%;
    height: 2px;
    background-color: #ec5b0c;
}

.bg-navbar {
    position: fixed !important;
    background-color: rgba(38 38, 38, 0.9);
    top: 0;
    width: 100%;
    z-index: 999;
}

#navbar {
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

/* Slide-down effect (applied when fixed) */
.slide-down {
    transform: translateY(0);
}

#gallery img {
    object-fit:cover;
    background-color: rgba(38 38, 38, 0.1);
}

.pswp__img {
    object-fit: contain;
    background-color: rgba(38 38, 38, 0.9);
}

.shadow-blur {
    /* Slight drop-shadow to create a blurred effect around the edges */
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.3));
  }

.scroll-margin-top {
    scroll-margin-top: 90px;
}

#mobile-contact {
    display: none;
}

@media (max-width: 515px) {
    .header-title {
        font-size: 1.7rem;
    }

    .header-sub {
        font-size: 1rem;
    }

    .header-1 {
        font-size: 1.3rem;
    }

    .custom-card {
        padding: 0;
        margin: 0;
    }
}

@media (max-width: 768px) {
    .card {
        flex: 1 1 calc(50% - 1rem);
    }
}


@media (max-width: 900px) {
    .header-background {
        background-position: 0px 0px;
        
    }
}

@media (max-width: 1000px) {
    #nav-button-set-2 {
        display: none !important;
    }

    #nav-button-set-1 {
        display: none !important;
    }
}

@media (max-width: 990px) {
    #mobile-contact {
        display: block;
    }
    #contact-image {
        display: none !important;
    }
    #contact-form {
        width: 100%;
    }
}


