

body {
    background: #6b3f1d;
    color: #f5d7a1;
    /*font-family: serif;*/
     font-family: "Marcellus", serif;
}

/* HEADER */
.hero-box .topbar {
    background: linear-gradient(to right, #6b3f1d, #8b5a2b);
    padding: 10px 0;
    border-bottom: 1px solid #caa45f;
    border-radius: 10px 10px 0 0;
    position: static;
}



.modal-footer {
    display: flex;
    justify-content: space-between !important;
}
.social-med {
    gap: 20px;
    display: flex;
    align-items: center;
    width: 35%;
}
.social-med img {width: 100%;}
.x-img {
    font-size: 11px;
    padding: 0.5% 5%;
    width: 17%;
    color: #fff;
    background-color: #000;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.x-img img{
    width: 71%;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
}
.right-ft {display: flex; width: 65%; align-items: center;    justify-content: right;}

.hero-box .menu li { width: 100%;}
.logo h2 {
    margin: 0;
    color: #ffd27f;
}

a { text-decoration: none;}
.footer-links-ft a { text-decoration: none; color: #fff;}
.footer-bottom a {    color: #9b8240;}
.logo span {
    font-size: 12px;
    letter-spacing: 2px;
}
.gallery-item img { object-fit:cover; height: 100%;}
/* SEARCH */
.search-box input {
    background: transparent;
    border: 1px solid #caa45f;
    padding: 6px;
    color: white;
}

.controls button { padding: 0 5px 3px !important;width: 35px; height: 35px;}
.search-box input{box-shadow: none;}
.search-box input::placeholder { color: #fff;}

.search-box button {
    background: #caa45f;
    border: none;
    padding: 6px 12px;
}

/* SIDEBAR */
.hero-box .sidebar {
    background: #3b1f0f;
    min-height: 100vh;
    padding: 20px;
    border-radius: 0 0 0 10px;
}

.sidebar h6 {
    border-bottom: 1px solid #caa45f;
    padding-bottom: 10px;
}

.menu {
    list-style: none;
    padding: 0;
}

.menu li a {
    display: block;
    padding: 8px;
    color: #d8b97f;
    text-decoration: none;
}

.menu li a:hover {
    color: #ffd27f;
}

/* SUBMENU */
.submenu {
    display: none;
    padding-left: 15px;
}

.menu-item.active .submenu {
    display: block;
}

/* CONTENT */
.hero-box .content {
    padding: 20px;
    background-color: #9f7958;
    border-radius: 0 0 10px 0;
}
.card-box .hero p {     color: #3b1f0f;}
/* TITLE BOX */
.title-box {
    background: linear-gradient(to right, #4a2a15, #2c160a);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #caa45f;
    margin-bottom: 20px;
}

/* CARDS */
.card-box {
    text-align: center;
    text-decoration: none;
    color: #f5d7a1;
}

.img-box {
    height: 180px;
    border: 1px solid #caa45f;
    border-radius: 6px;
    background: rgba(255,255,255,0.05);
}

/* COLORS */
.green { background: #3f6b3f; }
.blue { background: #3f5b6b; }

/* TEXT */
.card-box p {
    margin-top: 10px;
    color: #3b1f0f;
}

.card-box span {
    color: #fff;
    font-size: 13px;
}

/* BADGE */
.badge-gold {
    display: inline-block;
    border: 1px solid #caa45f;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 12px;
}

/* BREADCRUMB */
.breadcrumb {
    color: #caa45f;
    margin-bottom: 15px;
}
.breadcrumb a {
    color: #caa45f;
    text-decoration: none;
    padding: 0 10px;
}

.breadcrumb a:hover{
    
    color:  #000;
}

.menu-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.toggle-btn {
    cursor: pointer;
    padding: 5px;
}
/* SECTION */
.section-title {
    border-bottom: 1px solid #caa45f;
    padding-bottom: 5px;
    margin-bottom: 20px;
}

/* MODAL BACKDROP */
.gallery-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

/* BOX */
.modal-content-box {
    width: 80%;
    max-width: 900px;
    border: 2px solid #caa45f;
    border-radius: 10px;
    background: #2b160a;
    overflow: hidden;
    position: relative;
}

/* CLOSE */
.close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 22px;
    color: #caa45f;
    cursor: pointer;
}

/* IMAGE */
.modal-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* FOOTER */
.modal-footer {
    background: #5a351c;
    padding: 15px;
    text-align: center;
}

.modal-footer h5 {
    color: #ffd27f;
    margin-bottom: 0 !important;
    font-size: 16px;
    text-align: right;
}

/* CONTROLS */
.controls {
    display: flex;
    justify-content: right;
    align-items: center;
    gap: 15px;
    width: 55%;
}

.controls button {
    background: transparent;
    border: 1px solid #caa45f;
    color: #caa45f;
    padding: 6px 10px;
    border-radius: 50%;
    cursor: pointer;
}

#imageCount {
    color: #f5d7a1;
}

@media (max-width: 600px) {
 .hero-box .topbar .d-flex{
     flex-direction: column;
     text-align: left;
 }   
 .hero-box .topbar .d-flex .logo {
         width: 100%;
    padding: 3% 0 4% 4%;
 }
 .hero-box .sidebar { border-radius: 0;}
 .img-box {
    height: 140px;
 }
 .hero p {
     font-size: 1rem;
     line-height: 1.22;
 }
 .hero-box .content {
     border-radius: 0 0 10px 10px;
}
.social-med { width: 100%;}
.right-ft {width: 100%;    width: 100%;
    flex-direction: column;
    text-align: left;
    justify-content: left;
}
.modal-footer { flex-direction: column;}
.x-img {
    font-size: 13px;
    padding: 0.5% 7% 0.5% 5%;
    width: 23%;
}
}