/* Webkit browsers (Chrome, Safari) */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: #FFA500;
    border-radius: 10px;
    border: 2px solid #2c2c2c;
}

::-webkit-scrollbar-thumb:hover {
    background: #f9b857;
}

/* Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #FFA500 #2c2c2c;
}
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#preloader-logo {
    width: 100px;
    animation: blink 1s infinite;
}
body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        color: #333;
        line-height: 1.6;
        background-color: #f9f9f9;

}

header {
    height: 70px;
    background-color: #333;
    color: #fff;
    padding: 10px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;



}


.logo-link {
    display: flex;
    align-items: center;
}

header img.logo {
    height: 120px;
    margin-left: 20px; /* Pomeramo logo malo levo *
}
.korpa {
    display: block;
    color: orange;
    font-weight: bold;
}
.cart-link {
    position: relative;
    cursor: pointer;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    margin-right: 20px; /* Pomeramo ikonu korpe malo levo */
}

.cart-icon {
    width: 27px;
    height: 27px;
    fill: #FFF;
}

.cart-link:hover .cart-icon {
    fill: #ccc;
    transition: transform 0.3s ease;
}

.cart-item-count {
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: orange;
    color: white;
    font-size: 14px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.category-nav {
    text-align: left;
    margin: 20px;
    position: relative;
    top: 70px; /* Visina zaglavlja plus margin-top */
    border-radius: 5px; /* Opciono: dodaj zaobljenje ivica */
    padding: 5px; /* Opciono: dodaj malo paddinga */
}
.category-nav select {
    font-size: 16px;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    background-color: #444;
    color: #fff;
}

.category-nav select:focus {
    outline: none;
    background-color: #555;
}

#gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
    z-index: 1;
    flex: 1;
    margin-top: 70px;
}

.image-container {
    position: relative;
    margin: 10px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;

}
#h2
{
    text-align: center;
}
h1,h2, h3 {
    font-weight: normal; /* Uklanjanje boldiranja */

}
.image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.timestamp {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
}

.enlarge-button, .add-button, .remove-button {
    position: absolute;
    top: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 3px;
    font-size: 15px;
    cursor: pointer;
    font-weight: bold;
}

.enlarge-button {
    right: 30px;
}

.add-button {
    right: 5px;
}

.remove-button {
    right: 5px;
    background-color: red;
}

#cart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-top: 75px; /* Dodajemo margin iznad kontejnera */
}

#cart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 10px;
    max-width: 1000px;
    margin-bottom: 20px;
}

.cart-item {
    position: relative;
    margin: 10px;
}

#cart img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.cart-item-count {
    position: absolute;
    top: -15px;
    right: -17px;
    background-color: orange;
    color: #fff;
    font-size: 13px;
    width: 21px;
    height: 21px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

form {
    width: 100%;

    margin-left: -15px; /* Centriranje forme */
    text-align: center;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 18px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

label {
    display: block;
    margin-bottom: 5px;
    color: #333;
}

input {
    width: calc(100% - 20px);
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    transition: border-color 0.3s;
}

input:focus {
    border-color: #576df9;
}

button {
    width: 100%;
    padding: 12px;
    background-color: #f9b857;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
}

button:hover {
    background-color: #fd9948;
}

#orderStatus {
    margin-top: 20px;
    color: #fd9948;
}

#cart-container > div {
    max-width: 600px;
    margin: 0 auto;
}

.order-status {
    background-color: rgba(0, 0, 0, 0.8);
    color: #fff;
    padding: 20px;
}

#orderImages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

#orderImages .image-container {
    position: relative;
    margin: 10px;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

#orderImages .image-container img {
    width: 100%;
    height: auto;
    max-height: 400px;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

#orderImages .image-container:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

#orderImages .timestamp {
    position: absolute;
    bottom: 5px;
    left: 5px;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    padding: 5px;
    border-radius: 3px;
    font-size: 12px;
}
header {
    background-color: #333;
    color: #fff;
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    height: 50px;
    margin-right: 20px;
}
.nav-desktop {
    display: flex;
    gap: 30px;
    margin-left: auto;
}
.nav-link {

    color: orange;
    font-weight: bold;
    padding:10px 10px 5px 5px;
    text-decoration: none;

    font-size: 18px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #ddd;
}
/* Hamburger dugme - skriveno na desktopu */
.hamburger {
    display: none;
    font-size: 28px;
    color: white;
    margin-left: auto;
    cursor: pointer;
}

/* Padajući meni za mobilne uređaje */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #222;
    position: absolute;
    top: 60px;
    right: 20px;
    width: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 12px rgba(0,0,0,0.3);
    animation: fadeIn 0.3s ease-in-out;
}

.mobile-menu.open {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mobile-menu a {
    padding: 14px 20px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-bottom: 1px solid #444;
    text-align: right;
}

.mobile-menu a:hover {
    background-color: #444;
}

/* Responsive ponašanje */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-menu.open {
        display: flex;
    }
}
.cart-link {
    position: relative;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
}

.cart-link:hover {
    color: #ddd;
}

.cart-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.cart-item-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: orange;
    color: white;
    font-size: 12px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
}

.about-main {
    margin-top: 80px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-section {
    max-width: 1200px;
    width: 100%;
}

.about-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
}

.about-logo {
    width: 80px;
}

.about-header h1 {
    font-size: 32px;
    color: #333;
}

.about-text {
    margin-bottom: 40px;
    font-size: 18px;
    line-height: 1.6;
}
.about-text p {
    margin-bottom: 20px;
}

/*.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    justify-content: center;
    max-width: 700px;
    margin: 2rem auto;
}

.team-member {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 20px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.team-photo {
    width: 260px;
    height: 260px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.team-photo:hover {
    transform: scale(1.05);
}

.team-info {
    text-align: center;
    margin-top: 1.2rem;
    max-width: 90%;
}

.team-info h2 {
    font-size: 26px;
    margin-bottom: 6px;
    color: #2c2c2c;
    font-weight: 700;
}

.team-info h3 {
    font-size: 18px;
    color: #666;
    margin-bottom: 14px;
    font-weight: 500;
}

.team-info p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.team-info a {
    display: inline-block;
    margin-top: 12px;
}

.team-info a img {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(43%) sepia(46%) saturate(2361%) hue-rotate(327deg) brightness(103%) contrast(104%);
    transition: transform 0.3s ease, filter 0.3s ease;
}

.team-info a img:hover {
    transform: scale(1.3);
    filter: none;
}


@media (max-width: 480px) {
    .team-photo {
        width: 180px;
        height: 180px;
    }

    .team-info h2 {
        font-size: 22px;
    }

    .team-info h3 {
        font-size: 16px;
    }

    .team-info p {
        font-size: 14px;
    }
} */
.about-us-modern {
    background: linear-gradient(135deg, #f9f9f9, #f2f2f2);
    padding: 60px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 40px;
    text-align: center;
}

.about-modern-container {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 50px;
}

.about-modern-image {
    flex: 1 1 400px;
    max-width: 400px;
    border-radius: 20px;
    overflow: hidden;
    background-color:transparent;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15); /* Mekši shadow bez „okvira“ */
    transition: transform 0.4s ease, box-shadow 0.4s ease;

}

.about-modern-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;

}

.about-modern-image:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.about-modern-text {
    flex: 1 1 500px;
    font-size: 18px;
    color: #333;
    text-align: left;
}

.about-modern-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    font-weight: 700;
    color: #f9b857;
    margin-bottom: 10px;
}

.about-modern-text h3 {
    font-size: 24px;
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}

.about-modern-text p {
    margin-bottom: 15px;
    line-height: 1.7;
    color: #444;
}

.about-modern-text .moto {
    font-size: 20px;
    font-weight: 600;
    color: #555;
    margin-top: 20px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
    text-align: center;
    font-style: italic;
    transition: color 0.3s ease;
}

.about-modern-text .moto:hover {
    color: #f9b857;
}

@media (max-width: 768px) {
    .about-modern-container {
        flex-direction: column;
    }
    .about-modern-text {
        text-align: center;
    }
}


footer {
    background-color: #333;
    color: #fff;
    padding: 0px 0;
    text-align: center;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0px;
    box-sizing: border-box;
}

.footer-section {
    flex: 1 1 300px;
    margin:7px;
}

.footer-section h3 {
    font-size: 20px;
    border-bottom: 2px solid #fff;
    padding-bottom: 10px;
    margin-bottom: 10px;
}

.footer-section p {
    font-size: 16px;
    line-height: 1.6;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.social-icons a {
    display: inline-block;
    text-align: center;
}

.social-icons img {
    width: 30px;
    height: 30px;
    filter: invert(100%);
    transition: transform 0.3s ease;
}

.social-icons img:hover {
    transform: scale(1.2);
}

.footer-copyright {
    background-color: #222;
    padding: 5px;
    font-size: 14px;
}
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

#preloader-logo {
    width: 200px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0; }
}
#loading-message {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px;
    color: #fff;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.services-section {
    max-width: 800px;
    margin: 40px auto;
    text-align: center;
}

.services-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.services-section ul {
    list-style: none;
    padding: 0;
}

.services-section ul li {
    font-size: 18px;
    margin-bottom: 10px;
}
/* 🎞️ Animacije i hover efekti u uslugama */

@keyframes zoomBlurContrast {
    0% {
        transform: scale(1);
        filter: none;
    }
    100% {
        transform: scale(1.05);
        filter: blur(1.5px) brightness(90%) contrast(115%);
    }
}

@keyframes iconPop {
    0% {
        transform: scale(1);
        filter: contrast(100%) saturate(100%);
    }
    100% {
        transform: scale(1.2);
        filter: contrast(130%) saturate(120%);
    }
}

.service-content:hover .service-image {
    animation: zoomBlurContrast 0.4s forwards;
}

.service-content:hover .service-icon {
    animation: iconPop 0.4s forwards;
}


.form-section {
    max-width: 400px;
    margin: 40px auto;
    text-align: center;
}

.form-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
}
/* Ovde je ceo tvoj CSS (postojeći kod), plus dodati novi stilovi */

/* ... (tvoj postojeći CSS koji već postoji ostaje isti) ... */
.services-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 20px;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 40px;
    color: #222;
    letter-spacing: 1px;
    margin: 0;
}

.service-item {
    margin-bottom: 80px;
    overflow: hidden;
}

.service-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: #fafafa;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeIn 1s ease;
}

.service-item.alt .service-content {
    flex-direction: row-reverse;
}

.service-content:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.image-wrapper {
    flex: 1;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
    position: relative;
}

.service-item.alt .image-wrapper {
    border-radius: 0 20px 20px 0;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.4s ease;
    filter: brightness(95%) contrast(105%);
}

.service-content:hover .service-image {
    transform: scale(1.05);
    filter: brightness(100%) contrast(110%);
}

.service-text {
    flex: 1;
    padding: 50px;
    text-align: left;
}

.service-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #333;
}

.service-text p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
    letter-spacing: 0.5px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 768px) {
    .service-content {
        flex-direction: column;
    }
    .service-item.alt .service-content {
        flex-direction: column;
    }
    .image-wrapper {
        border-radius: 20px 20px 0 0;
    }
    .service-item.alt .image-wrapper {
        border-radius: 20px 20px 0 0;
    }
    .service-text {
        padding: 30px;
        text-align: center;
    }
}



/* Modernizovana forma ostaje kao ranije */
.form-section {
    max-width: 400px;
    margin: 50px auto;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.form-section h2 {
    text-align: center;
    margin-bottom: 20px;
    font-size: 28px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #ccc;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    border-color: #f9b857;
}

.form-section button {
    width: 100%;
    padding: 12px;
    background-color: #f9b857;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.form-section button:hover {
    background-color: #fd9948;
}

/* Stilizacija video sekcije za dron */
.drone-section {
    width: 100%;
    margin: 80px 0;
    position: relative;
}

.drone-video-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.drone-video {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    filter: brightness(70%);
}

.drone-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 30px 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    max-width: 90%;
    box-sizing: border-box;
    animation: fadeIn 1.5s ease;
    line-height: 1.6;
    word-break: break-word;
}
.drone-overlay h2 {
    font-size: 36px;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
    color: #f9b857;
}

.drone-overlay p {
    font-size: 18px;
    line-height: 1.6;
    color: #eee;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, -60%); }
    to   { opacity: 1; transform: translate(-50%, -50%); }
}

@media (max-width: 480px) {
    .drone-overlay {
        font-size: 14px;
        padding: 20px;
    }

    .drone-overlay h2 {
        font-size: 22px;
    }

    .drone-overlay p {
        font-size: 14px;

    }
}
/* Prikaz samo za mobilne */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}
.h2tekst{
    font-weight: normal;
    font-family: 'Playfair Display', serif;
    color: #f9b857;
    text-align: center;
}

/* Responsive pravila */
@media (max-width: 768px) {
    .mobile-only {
        display: block !important;
    }

    .desktop-only {
        display: none !important;
    }

    .drone-video-container {
        border-radius: 20px;
    }
}
.booking-section {
    background: linear-gradient(135deg, #fffaf2, #ffe7c4);
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.booking-wrapper {
    width: 100%;
    max-width: 600px;
    background-color: #fff;
    padding: 40px;
    margin: auto;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
}


.booking-title {
    font-size: 32px;
    color: #444;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.input-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: space-between;
}

.input-row input,
.input-row select {
    flex: 1 1 48%;
    padding: 14px;
    border: 1px solid #ccc;
    border-radius: 10px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.input-row input:focus,
.input-row select:focus {
    border-color: #f9b857;
    outline: none;
}

.booking-form button {
    padding: 16px;
    background-color: #f9b857;
    color: white;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.booking-form button:hover {
    background-color: #fd9948;
}

.form-message {
    font-weight: bold;
    margin-top: 15px;
    color: red;
    min-height: 20px;
}

.nav-link.active {
    color: #fff;
    background-color: #FFA500;
    border-radius: 8px;
    padding: 6px 12px;
}
.mobile-menu a.active {
    background-color: #FFA500;
    color: white;
}