/* Navbar */
.navbar {
    background-color: #f8f9fa;
    /* Light gray background */
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
    /* Subtle shadow */
    padding: 10px 0;
}

.navbar-brand {
    display: flex;
    align-items: center;
}

/* Adjust logo size */
.logo-img {
    height: 55px;
    /* Increase logo height */
    max-width: 140px;
    /* Ensure it doesn't overflow */
    object-fit: contain;
    /* Maintain aspect ratio */
    margin-right: 15px;
    /* Space between logo and text */
}

/* Adjust Sarajevo text */
.logo-text {
    font-size: 1.6rem;
    /* Match size with logo */
    font-weight: bold;
    color: #122142;
    /* Dark gray text color */
    line-height: 1;
    /* Align vertically */
}

/* Navigation links */
.navbar-nav .nav-link {
    font-size: 1rem;
    color: #555;
    margin: 0 10px;
    transition: color 0.3s ease-in-out;
}

.navbar-nav .nav-link:hover {
    color: #b79722;
}

/* English option */
.navbar-nav .nav-link.english {
    font-weight: bold;
    margin-left: 20px;
    color: #b79722;
}

.navbar-nav .nav-link.english:hover {
    color: #ff9900;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .navbar-brand .logo-img {
        height: 45px;
        /* Reduce height for smaller screens */
    }

    .navbar-nav .nav-link {
        margin: 5px 0;
    }
}

/*-------------- NAVBAR SECTION START -----------------*/



/*-------------- NAVBAR BUTTON START -----------------*/

/* Centering and styling the button */
#languageToggle {
    font-size: 0.9rem;
    /* Slightly smaller font size for neatness */
    padding: 8px 20px;
    /* Adds padding to the button */
    background-color: #122142;
    /* Bootstrap primary color */
    color: white;
    /* Text color */
    border: none;
    /* No border */
    cursor: pointer;
    /* Pointer cursor on hover */
    transition: all 0.3s ease-in-out;
    /* Smooth transition for hover */
}

#languageToggle:hover {
    background-color: #b79722;
    /* Darker blue on hover */
    color: #122142;
    /* Keep text color consistent */
}

#languageToggle:focus {
    outline: none;
    /* Remove focus outline */
}

/* Center the button with other list items */
.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-item:last-child {
    margin-left: 10px;
    /* Add spacing from other links */
}

/*-------------- NAVBAR BUTTON END -----------------*/

/* Global Styles */
body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    background-color: #f4f7fa;
}

h1,
h2,
h3 {
    font-family: 'Montserrat', sans-serif;
}

.text-primary {
    color: #122142;
    /* Dark Blue */
}

.text-light {
    color: #ffffff;
}

.bg-primary {
    background-color: #122142;
    /* Dark Blue */
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #343a40;
}

/* Hero Section */
.hero-section {
    background: #122142;
    background-size: cover;
    padding: 5rem 0;
    margin-top: 75px;
}

.hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero-section p {
    font-size: 1.5rem;
}

/* Sadržaj stranice */
.about-section .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.about-section .col-md-6 {
    flex: 1;
    padding: 1.5rem;
}

.about-section h2 {
    font-size: 2.5rem;
    color: #122142;
    /* Dark Blue */
    font-weight: 700;
}

.about-section p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Ensuring both sections are aligned in a row */
@media (max-width: 768px) {
    .about-section .row {
        flex-direction: column;
    }
}


/* Services Section */
.services-section {
    padding: 5rem 0;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #122142;
    font-weight: 700;
}

.services-section .card {
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.services-section .card:hover {
    transform: translateY(-10px);
}

.services-section .card-title {
    color: #122142;
    font-weight: 600;
    font-size: 1.5rem;
}

.services-section .card-text {
    font-size: 1.1rem;
    color: #555;
}

/* Trust Section */
.trust-section {
    background-color: #122142;
    padding: 5rem 0;
}

.trust-section h2 {
    font-size: 2rem;
    color: #fff;
    font-weight: 700;
}

.trust-section p {
    font-size: 1.2rem;
    color: #f1f1f1;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Footer Section */
footer {
    background-color: #343a40;
    color: #f1f1f1;
    padding: 1rem 0;
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .about-section,
    .vision-section,
    .services-section,
    .trust-section {
        padding: 3rem 0;
    }

    .services-section .card {
        margin-bottom: 1rem;
    }

    .services-section .card-body {
        padding: 1.5rem;
    }

    .about-section p {
        font-size: 0.9rem;
    }

    .vision-section p {
        font-size: 0.9rem;
    }
}

/* Buttons */
.btn-primary {
    background-color: #f1c40f;
    /* Yellow */
    border-color: #f1c40f;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 25px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-primary:hover {
    background-color: #e1b40e;
    transform: translateY(-2px);
}

/* Card Hover Effect */
.card {
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
}


/* Scroll Animation */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    animation: fadeInUp 1s ease-out forwards;
}

.goldencolor{
    color: #b79722;
}