/* ================================================= */
/* ------------------ General CSS ------------------ */
/* ================================================= */

body {
    color: #4d2c13;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    background: #dfd4aa;
}

/* ...existing code... */
ul.icon {
    list-style: none;
    padding-left: 0;
    display: flex;
    gap: 16px;
    align-items: center;
    margin: 0;
}
ul.icon li {
    display: flex;
    align-items: center;
    /* Remove background, border, or icon font styles */
}
ul.icon a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
}
ul.icon img {
    display: block;
    width: 24px;
    height: 24px;
    object-fit: contain;
}
/* ...existing code... */

a {
    color: #BC9B5D;
    transition: 0.5s;
}

a:hover,
a:active,
a:focus {
    color: #4d2c13;
    outline: none;
    text-decoration: none;
}

p {
    padding: 0;
    margin: 0 0 30px 0;
}

h1,
h2,
h3 {
    font-family: 'Dancing Script', cursive;
    color: #4d2c13;
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 400;
}

h4,
h5,
h6 {
    font-family: 'Dancing Script', cursive;
    color: #4d2c13;
    margin: 0 0 20px 0;
    padding: 0;
    font-weight: 600;
}

a[href="https://www.flaticon.com/free-icons/icons"] {
    font-family: 'FontAwesome';
    font-style: normal;
    font-weight: normal;
    color: #BC9B5D;
}

.back-to-top {
    position: fixed;
    display: none;
    background: #BC9B5D;
    color: #4d2c13;
    width: 44px;
    height: 44px;
    text-align: center;
    line-height: 1;
    font-size: 18px;
    border-radius: 50%;
    right: 15px;
    bottom: 15px;
    transition: background 0.5s;
    z-index: 11;
}

.back-to-top:hover {
    color: #BC9B5D;
    background: #4d2c13;
}

.back-to-top i {
    padding-top: 10px;
}

/* ================================================= */
/* ---------------- Top Header CSS ----------------- */
/* ================================================= */

#top-header {
    position: relative;
    width: 100%;
    margin: 15px 0 0 0;
    padding-bottom: 10px;
    background: transparent;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

#top-header .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

#top-header .logo img {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

#top-header .top-socials {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 10px;
    width: 100%;
}

#top-header .top-socials .icon {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: center;
    margin: 0 0 8px 0;
    padding: 0;
    list-style: none;
}

#top-header .top-socials .icon li {
    display: flex;
    align-items: center;
}

#top-header .top-socials .icon img {
    width: 32px;
    height: 32px;
    display: block;
    object-fit: contain;
    transition: transform 0.2s;
}

#top-header .top-socials .icon img[alt="Instagram"] {
    width: 36px;
    height: 36px;
} 

#top-header .top-socials .icon img:hover {
    transform: scale(1.1);
    filter: brightness(1.2);
}

#top-header .top-socials .icon-credit {
    font-size: 16px;
    color: #BC9B5D;
    font-weight: 300;
    text-align: center;
    margin-top: 4px;
    text-decoration: none;
    font-family: inherit;
    line-height: 1.5;
    display: inline-block;
}

#top-header .top-socials .icon-credit:hover {
    color: #4d2c13;
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    #top-header {
        margin: 10px 0 0 0;
        padding-bottom: 8px;
    }
    #top-header .logo img {
        max-width: 90px;
    }
    #top-header .top-socials .icon img {
        width: 28px;
        height: 28px;
    }
    #top-header .top-socials .icon-credit {
        font-size: 14px;
    }
}


/* ================================================= */
/* ------------------ Header CSS ------------------- */
/* ================================================= */

#header {
    font-family: 'Nunito', sans-serif;
    position: relative;
    background: #BC9B5D;
    height: 70px;
    text-align: center;
    border-bottom: 5px solid #4d2c13;
}

@media (max-width: 767.98px) {
    #header,
    #header-sticky-wrapper {
        display: none;
    }
}

#nav-menu-container {
    display: inline-block;
}

.nav-menu,
.nav-menu * {
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-menu ul {
    position: absolute;
    display: none;
    top: 100%;
    left: 0;
    text-align: left;
    z-index: 99;
}

.nav-menu li {
    position: relative;
    white-space: nowrap;
}

.nav-menu > li {
    float: left;
}

.nav-menu li:hover > ul,
.nav-menu li.sfHover > ul {
    display: block;
}

.nav-menu ul ul {
    top: 0;
    left: 100%;
}

.nav-menu ul li {
    min-width: 180px;
}

.sf-arrows .sf-with-ul {
    padding-right: 30px;
}

.sf-arrows .sf-with-ul:after {
    content: "\f107";
    position: absolute;
    right: 15px;
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
}

.sf-arrows ul .sf-with-ul:after {
    content: "\f105";
}

.nav-menu a {
    padding: 18px 15px 20px 15px;
    text-decoration: none;
    display: inline-block;
    color: #4d2c13;
    font-weight: 600;
    font-size: 18px;
    outline: none;
}

.nav-menu a:hover,
.nav-menu .menu-active > a {
    color: #BC9B5D;
    background: #4d2c13;
}

.nav-menu ul {
    margin: 0;
    -webkit-box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 0px 1px 1px rgba(0, 0, 0, 0.08);
}

.nav-menu ul li {
    background: #fff;
    border-top: 1px solid #f4f4f4;
}

.nav-menu ul li:first-child {
    border-top: 0;
}

.nav-menu ul li:hover {
    background: #4d2c13;
}

.nav-menu ul li a {
    color: #4d2c13;
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
    padding: 10px 15px;
    width: 100%;
}

.nav-menu ul li a:hover {
    color: #fff;
    background: #BC9B5D;
}

.nav-menu ul ul {
    margin: 0;
}

#mobile-nav-toggle {
    position: fixed;
    right: 0;
    top: 0;
    z-index: 999;
    margin: 10px 10px 0 0;
    padding: 10px 12px;
    border: 0;
    background: #BC9B5D;
    border-radius: 30px;
    font-size: 24px;
    line-height: 1px;
    display: none;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    transition: all 0.4s;
    outline: none;
    cursor: pointer;
}

#mobile-nav-toggle i {
    color: #fff;
}

@media (max-width: 767.98px) {
    #mobile-nav-toggle {
        display: inline;
    }
    
    #logo {
        width: 100%;
        text-align: center;
    }
}

#mobile-nav {
    position: fixed;
    top: 0;
    padding-top: 18px;
    bottom: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.9);
    left: -260px;
    width: 260px;
    overflow-y: auto;
    -webkit-transition: 0.4s;
    -o-transition: 0.4s;
    transition: 0.4s;
}

#mobile-nav ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

#mobile-nav ul li {
    position: relative;
}

#mobile-nav ul li a {
    color: #fff;
    font-size: 16px;
    overflow: hidden;
    padding: 10px 22px 10px 15px;
    position: relative;
    text-decoration: none;
    width: 100%;
    display: block;
    outline: none;
}

#mobile-nav ul li a:hover {
    color: #fff;
}

#mobile-nav ul li li {
    padding-left: 30px;
}

#mobile-nav ul .menu-has-children i {
    position: absolute;
    right: 0;
    z-index: 99;
    padding: 15px;
    cursor: pointer;
    color: #fff;
}

#mobile-nav ul .menu-has-children i.fa-chevron-up {
    color: #BC9B5D;
}

#mobile-nav ul .menu-item-active {
    color: #BC9B5D;
}

#mobile-body-overly {
    width: 100%;
    height: 100%;
    z-index: 997;
    top: 0;
    left: 0;
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    display: none;
}

body.mobile-nav-active {
    overflow: hidden;
}

body.mobile-nav-active #mobile-nav {
    left: 0;
}

body.mobile-nav-active #mobile-nav-toggle {
    color: #fff;
}

/* ================================================= */
/* ---------------- Section Header ----------------- */
/* ================================================= */

.section-header h3 {
    position: relative;
    text-align: center;
    color: #BC9B5D;
    font-size: 45px;
    text-transform: capitalize;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 30px;
}

@media (max-width: 767.98px) {
    .section-header h3 {
        font-size: 38px;
    }
    
    .section-header h3::before {
        height: 6px;
    }
}

@media (max-width: 575.98px) {
    .section-header h3 {
        font-size: 32px;
    }
    
    .section-header h3::before {
        height: 5px;
    }
}

/* ================================================= */
/* ---------------- Reservations CSS --------------- */
/* ================================================= */

#reservations {
    padding: 40px 0 30px 0;         /* from your new code */
    text-align: center;
    position: relative;
    background: #4d2c13;            /* from your new code */
    color: #c4a484;                 /* from your new code */
}

#reservations .section-header h3 {
    color: #c4a484;                 /* from your new code */
}

#reservations .container {
    position: relative;
    max-width: 700px;
    z-index: 9;
}

#reservations .input-group-text {
    border: none;
    border-radius: 0 30px 30px 0;
}

#reservations .form-control,
#reservations select {
    background: #fff;               /* from your new code */
    color: #4d2c13;                 /* from your new code */
    border: 1px solid #997355;      /* from your new code */
}

#reservations input {
    border: none;
    box-shadow: none;
    border-radius: 30px 0 0 30px;
}

#reservations select,
#reservations .btn-book,
#reservations .btn {
    border: none;
    box-shadow: none;
    border-radius: 30px;
}

#reservations input:focus,
#reservations select:focus,
#reservations .btn-book:focus,
#reservations .btn:focus {
    border-color: #4d2c13;
}

#reservations .btn-book,
#reservations .btn {
    padding: 7px 0 8px 0;
    color: #fff;                    /* from your new code */
    background: #997355;            /* from your new code */
    border: none;
}

#reservations .btn-book:hover,
#reservations .btn:hover {
    background-color: #ff9800;      /* from your new code */
    color: #fff;                    /* from your new code */
}

#reservations .dropdown-menu {
    width: 230px;
}

@media (max-width: 575.98px) {
    #reservations .btn-book,
    #reservations .btn {
        margin-top: 15px;
        margin-bottom: 10px;
        width: 130%;           
    }
}

/* ================================================= */
/* ---------------- Gallery CSS --------------- */
/* ================================================= */

#gallery {
    padding: 20px 0;
    text-align: center;
    position: relative;
    background: #ffffff;
}

#gallery .container {
    position: relative;
    max-width: 700px;
    z-index: 9;
}

#gallery .input-group-text {
    border: none;
    border-radius: 0 30px 30px 0;
}

#gallery input {
    border: none;
    box-shadow: none;
    border-radius: 30px 0 0 30px;
}

#gallery select,
#gallery .btn-book {
    border: none;
    box-shadow: none;
    border-radius: 30px;
}

#gallery input:focus,
#gallery select:focus,
#gallery .btn-book:focus {
    border-color: #ffffff;
}

#gallery .btn-book {
    padding: 7px 0 8px 0;
    color: #ffffff;
    background: #BC9B5D;
    border: none;
}

#gallery .btn-book:hover {
    color: #BC9B5D;
    background: #ffffff;
}

#gallery .dropdown-menu {
    width: 230px;
}

@media (max-width: 575.98px) {
    #gallery .btn-book {
        margin-top: 15px;
        margin-bottom: 10px;
    }
}
/* Add this to your style.css or inside a <style> block in gallery.html */

/* Center the modal content using flexbox */
#gallery-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0; top: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.85);
    /* Add these lines to center content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Make sure the arrows and close button are above the image */
#gallery-modal-close,
#gallery-modal-prev,
#gallery-modal-next {
    position: absolute;
    z-index: 10001;
}

/* Optional: Remove line-height from arrows for better vertical centering */
#gallery-modal-prev, #gallery-modal-next {
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    user-select: none;
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#gallery-modal-prev { left: 30px; }
#gallery-modal-next { right: 30px; }





/* ================================================= */
/* ---------------- Welcome Section ---------------- */
/* ================================================= */

#welcome {
    position: relative;
    padding: 45px 0 60px 0;
    background: #ffffff;
    text-align: center;
}

#welcome .container {
    max-width: 900px;
}

#welcome h3 {
    color: #BC9B5D;
    font-size: 50px;
    text-transform: capitalize;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

#welcome p {
    font-size: 20px;
    font-weight: 300;
    line-height: 30px;
    margin-bottom: 25px;
}

@media (max-width: 767.98px) {
    #welcome h3 {
        font-size: 40px;
    }
    
    #welcome p {
        font-size: 18px;
        line-height: 28px;
    }
}

@media (max-width: 575.98px) {
    #welcome h3 {
        font-size: 30px;
        letter-spacing: 0;
    }
    
    #welcome p {
        font-size: 16px;
        line-height: 26px;
    }
}

#welcome a {
    display: inline-block;
    padding: 8px 30px;
    border-radius: 20px;
    color: #4d2c13;
    background: #BC9B5D;
}

#welcome a:hover {
    color: #BC9B5D;
    background: #4d2c13;
}

/* ================================================= */
/* --------------- About Us Section ---------------- */
/* ================================================= */

#about {
    padding: 60px 0;
    position: relative;
    background: #f2f2f2;
}

#about .section-header h3 {
    margin-bottom: 20px;
}

#about .about-col-left {
    position: relative;
    width: 100%;
    height: 100vh;
    border-radius: 6px;
    background: url("../img/gallery/restaurant/rest-02.jpg") left top no-repeat fixed;
    background-size: contain;
}

#about .about-col-right {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#about .icon {
    margin: 0 0 15px 0;
    padding: 0;
    list-style-type: none;
}

#about .icon li {
    display: inline-block;
}

#about .icon li a {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin-right: 8px;
    padding: 8px;
    border-radius: 50%;
    color: #4d2c13;
    background: #BC9B5D;
}

#about .icon li a:hover {
    color: #BC9B5D;
    background: #4d2c13;
}

#about h3 {
    text-align: left;
}

#about h3::before {
    left: 0;
}

#about h4 {
    margin: 30px 0 15px 0;
    color: #BC9B5D;
    font-weight: 800;
    letter-spacing: 2px;
}

#about .about-col-right p {
    color: #4d2c13;
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 15px;
}

#about .about-col-right p:last-child {
    margin-bottom: 0;
}

#about .about-col-right a {
    display: inline-block;
    padding: 8px 30px;
    border-radius: 20px;
    color: #4d2c13;
    background: #BC9B5D;
}

#about .about-col-right a:hover {
    color: #BC9B5D;
    background: #4d2c13;
}

@media (max-width: 767.98px) {
    #about {
        text-align: center;
    }
    
    #about h3 {
        text-align: center;
    }
    
    #about .about-col-left {
        margin-bottom: 30px;
    }
    
    #about .about-col-right p {
        font-size: 16px;
    }
}

/* ================================================= */
/* -------------- Food Menu Section ---------------- */
/* ================================================= */

#food-menu {
    position: relative;
    padding: 60px 0 30px 0;
    text-align: center;
    background: #ffffff;
}

#food-menu .single-menu {
    position: relative;
    text-align: center;
    font-weight: 400;
    margin: 0 0 30px 0;
    padding: 0;
    border-radius: 6px;
    background: #4d2c13;
}

#food-menu .single-menu img {
    width: 100%;
    border-radius: 6px 6px 0 0;
}

#food-menu .single-menu div {
    position: absolute;
    width: 65px;
    height: 45px;
    top: 0;
    right: 0;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 600;
    background: rgba(188, 155, 93, .8);
    border-radius: 0 6px 0 6px;
    z-index: 1;
}

#food-menu .single-menu h4 {
    position: absolute;
    width: 100%;
    bottom: 88px;
    padding: 10px;
    color: #4d2c13;
    background: rgba(188, 155, 93, .8);
    font-size: 16px;
    font-weight: 800;
    line-height: 24px;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 10px;
}

#food-menu .single-menu div span {
    display: block;
}

#food-menu .single-menu p {
    padding: 0 15px;
    margin-top: 10px;
    margin-bottom: 10px;
}

#food-menu .single-menu a {
    display: inline-block;
    margin: 30px 0;
    padding: 7px 30px;
    color: #4d2c13;
    background: #BC9B5D;
    border-radius: 30px;
}

#food-menu .single-menu:hover a {
    color: #BC9B5D;
    background: #ffffff;
}


/* ================================================= */
/* ----------------- Booking Style ----------------- */
/* ================================================= */

#booking {
    position: relative;
    padding: 60px 0;
}

#booking .container {
    max-width: 900px;
}

#booking label {
    font-size: 14px;
    font-weight: 600;
}

#booking .booking-form input,
#booking .booking-form select {
    font-size: 16px;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 20px;
    box-shadow: none;
    margin-bottom: 15px;
}

#booking .booking-form input:focus,
#booking .booking-form textarea:focus {
    border: 1px solid #BC9B5D;
}

#booking .booking-form button[type="submit"] {
    background: #FFFFFF;
    border: none;
    padding: 8px 30px 10px 30px;
    color: #ffffff;
    background: #BC9B5D;
    transition: 0.4s;
    cursor: pointer;
    border-radius: 30px;
}

#booking .booking-form button[type="submit"]:hover {
    background: #4d2c13;
}

/* ================================================= */
/* ---------------- Contact Section ---------------- */
/* ================================================= */

#contact {
    position: relative;
    padding: 50px 0 60px 0;
    background: #ffffff;
    
}

#contact .contact-detail .col-md-6:first-child {
    padding-right: 0;
    margin-bottom: 30px;
}

#contact .contact-detail .col-md-6:last-child {
    padding-left: 0;
    margin-bottom: 30px;
}

#contact .contact-col-1 {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background: #BC9B5D;
    border-radius: 6px 0 0 6px;
    text-align: center;
}

#contact .contact-col-2 {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px 15px;
    background: #4d2c13;
    border-radius: 0 6px 6px 0;
    text-align: center;
}

@media (max-width: 767.98px) {
    #contact .contact-detail .col-md-6:first-child,
    #contact .contact-detail .col-md-6:last-child {
        padding: 0 15px;
    }

    #contact .contact-col-1,
    #contact .contact-col-2 {
        border-radius: 6px;
    }
}

#contact .contact-hours,
#contact .contact-info {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#contact .contact-detail h4 {
    color: #ffffff;
    font-weight: 800;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

#contact .contact-detail p {
    margin-bottom: 5px;
    color: #ffffff;
    font-size: 16px;
    font-weight: 300;
    letter-spacing: 1px;
}

#contact .contact-detail a {
    color: #ffffff;
}

#contact .contact-detail a:hover {
    color: #BC9B5D;
}

#contact .contact-map,
#contact .contact-form {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

#contact .contact-map {
    position: relative;
}

#contact .contact-map iframe {
    width: 100%;
    height: 329px;
    border-radius: 6px;
}

@media (max-width: 767.98px) {
    #contact .contact-map iframe {
        margin-bottom: 25px;
    }
}

#contact .contact-form {
    color: #4d2c13;
    font-weight: 400;
}

#contact .contact-form input,
#contact .contact-form textarea {
    font-size: 16px;
    padding: 10px 14px;
    border: 1px solid #BC9B5D;
    border-radius: 20px;
    box-shadow: none;
}

#contact .contact-form input:focus,
#contact .contact-form textarea:focus {
    border: 1px solid #4d2c13;
}

#contact .contact-form button[type="submit"] {
    background: #FFFFFF;
    border: none;
    padding: 8px 30px;
    color: #4d2c13;
    background: #BC9B5D;
    transition: 0.4s;
    cursor: pointer;
    border-radius: 30px;
}

#contact .contact-form button[type="submit"]:hover {
    color: #BC9B5D;
    background: #4d2c13;
}

/* ================================================= */
/* --------------- Subscriber Section -------------- */
/* ================================================= */

#subscriber {
    position: relative;
    padding: 40px 0 30px 0; /* from your new code */
    background: #4d2c13;    /* from your new code */
    color: #c4a484;         /* from your new code */
    text-align: center;
}

#subscriber .section-header h3 {
    color: #c4a484; /* from your new code */
}

#subscriber .form-inline {
    width: 440px;
    margin: 0 auto;
}

#subscriber .form-group {
    margin-bottom: 0;
}

#subscriber .form-control,
#subscriber input[type="email"] {
    background: #fff;
    color: #4d2c13;
    border: 1px solid #997355;
}

#subscriber input {
    width: 325px;
    height: 45px;
    font-size: 16px;
    padding: 0 45px 0 15px;
    border: 1px solid #997355; /* from your new code */
    border-radius: 30px;
    box-shadow: none;
    background: #fff; /* from your new code */
    color: #4d2c13;   /* from your new code */
}

#subscriber input:focus {
    background: rgba(256, 256, 256, .5);
}

#subscriber .btn,
#subscriber button[type="submit"] {
    width: 150px;
    height: 45px;
    border: 1px solid #997355; /* from your new code */
    box-shadow: none;
    padding: 0;
    color: #fff;                /* from your new code */
    font-weight: 600;
    letter-spacing: 1px;
    background: #997355;        /* from your new code */
    transition: 0.4s;
    cursor: pointer;
    border-radius: 30px;
    margin-left: -35px;
}

#subscriber .btn:hover,
#subscriber button[type="submit"]:hover {
    background-color: #ff9800; /* from your new code */
    color: #fff;               /* from your new code */
}

@media (max-width: 575.98px) {
    #subscriber .form-inline {
        width: 300px;
    }

    #subscriber input {
        width: 225px;
        height: 35px;
        padding: 0 35px 0 15px;
    }

    #subscriber .btn,
    #subscriber button[type="submit"] {
        width: 100px;
        height: 35px;
        margin-left: -30px;
    }
}

/* ================================================= */
/* ------------------- Footer CSS ------------------ */
/* ================================================= */

#footer {
    position: relative;
    background: #4d2c13;
    padding: 30px 0;
    color: #fff;
}

#footer .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

#footer .row {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 64px;
}

#footer .col-12,
#footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    width: 100%;
}

#footer .copyright img {
    width: 200px;
    height: auto;
    margin-top: 10px;
    padding-top: 10px;
}

#footer .copyright p {
    color: #BC9B5D;
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
}

@media (max-width: 991.98px) {
    #footer .container {
        max-width: 100%;
        padding: 0 10px;
    }
}

@media (max-width: 575.98px) {
    #footer {
        padding: 20px 0;
    }
    #footer .copyright img {
        width: 140px;
        margin-top: 0;
        padding-top: 0;
    }
    #footer .copyright p {
        font-size: 14px;
    }
}



