:root {
    --primary-color: #0A2E54; /* Deep Blue */
    --secondary-color: #E8A900; /* Warm Gold */
    --light-bg-color: #F8F9FA; /* Off-white */
    --dark-bg-color: #1A1A1A; /* Dark Grey for footer/overlay */
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --text-muted: #6c757d;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--light-bg-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    line-height: 1.2;
}

/* Custom Bootstrap overrides */
.text-primary-custom {
    color: var(--primary-color) !important;
}

.text-secondary-custom {
    color: var(--secondary-color) !important;
}

.bg-light-custom {
    background-color: var(--light-bg-color) !important;
}

.bg-dark-custom {
    background-color: var(--dark-bg-color) !important;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--text-light);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-primary-custom:hover {
    background-color: #082545; /* Slightly darker primary */
    border-color: #082545;
    color: var(--text-light);
}

.btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    transition: background-color 0.3s ease, border-color 0.3s ease;
}

.btn-secondary-custom:hover {
    background-color: #c28800; /* Slightly darker secondary */
    border-color: #c28800;
    color: var(--text-dark);
}

.navbar-brand .text-primary-custom {
    color: var(--primary-color) !important;
}

.navbar-brand .text-white {
    color: var(--text-light) !important;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color) !important;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh; /* Full viewport height */
    background: url('pictures/pics/balkan-landscape-export.jpg') no-repeat center center/cover;
    background-attachment: fixed; /* Parallax effect */
    overflow: hidden;
    padding-top: 56px !important; /* Adjust for fixed navbar height */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6); /* Dark overlay */
    z-index: 0;
}

.hero-section h1 {
    font-size: 3.8rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    color: var(--text-light);
}

.hero-section p {
    font-size: 1.3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    .hero-section p {
        font-size: 1rem;
    }
}

/* About Us Section */
#about img {
    max-height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Our Products Section */
.product-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 0.75rem;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.175) !important;
}

.product-card .card-img-top {
    height: 250px;
    object-fit: cover;
    border-top-left-radius: 0.75rem;
    border-top-right-radius: 0.75rem;
}

.product-card .card-body {
    padding: 1.5rem;
}

/* Why Choose Us Section */
.feature-item {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 5px solid var(--secondary-color);
    background-color: #fff;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.15) !important;
}

/* Our Team Section */
.team-member img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border: 4px solid var(--secondary-color);
}

.team-member .card {
    border-radius: 0.75rem;
}

/* Testimonials Section */
#testimonialCarousel .carousel-control-prev-icon,
#testimonialCarousel .carousel-control-next-icon {
    background-color: var(--primary-color);
    border-radius: 50%;
    padding: 1.2rem;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

#testimonialCarousel .carousel-control-prev-icon:hover,
#testimonialCarousel .carousel-control-next-icon:hover {
    opacity: 1;
}

#testimonialCarousel .carousel-item .lead {
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-dark);
}

#testimonialCarousel .bxs-star,
#testimonialCarousel .bx-star {
    font-size: 1.5rem;
    margin: 0 2px;
}

/* Footer */
footer .navbar-brand .text-white {
    color: var(--text-light) !important;
}

footer .social-icons a {
    font-size: 2rem;
    transition: color 0.3s ease;
}

footer .social-icons a:hover {
    color: var(--secondary-color) !important;
}

footer .list-unstyled a {
    transition: color 0.3s ease;
}

footer .list-unstyled a.hover-secondary:hover {
    color: var(--secondary-color) !important;
}

/* Impressum Modal */
.modal-header {
    background-color: var(--primary-color);
}

.modal-header .modal-title {
    color: var(--text-light);
}

.modal-header .btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%); /* Makes white close button visible on dark background */
}

.modal-body {
    color: var(--text-dark);
}

.modal-footer .btn-secondary-custom {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
}

.modal-footer .btn-secondary-custom:hover {
    background-color: #c28800;
    border-color: #c28800;
}

/* General Spacing */
section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

@media (max-width: 767.98px) {
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    .display-5 {
        font-size: 2.5rem;
    }
    .navbar-brand img {
        height: 30px;
    }
    .navbar-brand span {
        font-size: 1.2rem;
    }
    .hero-section {
        height: auto;
        min-height: 90vh;
    }
    .hero-section .container {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
    .footer .text-md-start, .footer .text-md-end {
        text-align: center !important;
    }
    .footer .justify-content-md-start, .footer .justify-content-md-end {
        justify-content: center !important;
    }
}
/* Styles for a content block, often used for legal texts or general information */
.rightsFieldUnit {
    padding-top: 3rem; /* Top padding for the content block */
    padding-bottom: 3rem; /* Bottom padding for the content block */
    padding-left: 1.5rem; /* Left padding for the content block */
    padding-right: 1.5rem; /* Right padding for the content block */
    margin-top: 2rem; /* Top margin to separate from previous sections */
    margin-bottom: 2rem; /* Bottom margin to separate from next sections */
    background-color: var(--light-bg-color); /* Background color for the content block */
    border-radius: 0.5rem; /* Slightly rounded corners */
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075); /* Subtle shadow */
}

/* Heading 1 styles within the content block */
.rightsFieldUnit h1 {
    font-size: 1.45rem; /* Moderate size for main content headings */
    margin-top: 2.5rem; /* Top margin for separation */
    margin-bottom: 1rem; /* Bottom margin for spacing */
    color: var(--primary-color); /* Use primary color for headings */
    font-family: 'Montserrat', sans-serif; /* Consistent heading font */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 2 styles within the content block */
.rightsFieldUnit h2 {
    font-size: 1.3rem; /* Moderate size for sub-headings */
    margin-top: 2rem; /* Top margin for separation */
    margin-bottom: 0.8rem; /* Bottom margin for spacing */
    color: var(--primary-color); /* Use primary color for headings */
    font-family: 'Montserrat', sans-serif; /* Consistent heading font */
    line-height: 1.2; /* Line height for readability */
}

/* Heading 3 styles within the content block */
.rightsFieldUnit h3 {
    font-size: 1.3rem; /* Moderate size for deeper sub-headings */
    margin-top: 1.75rem; /* Top margin for separation */
    margin-bottom: 0.7rem; /* Bottom margin for spacing */
    color: var(--primary-color); /* Use primary color for headings */
    font-family: 'Montserrat', sans-serif; /* Consistent heading font */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 4 styles within the content block */
.rightsFieldUnit h4 {
    font-size: 1.25rem; /* Moderate size for minor headings */
    margin-top: 1.5rem; /* Top margin for separation */
    margin-bottom: 0.6rem; /* Bottom margin for spacing */
    color: var(--primary-color); /* Use primary color for headings */
    font-family: 'Montserrat', sans-serif; /* Consistent heading font */
    line-height: 1.3; /* Line height for readability */
}

/* Heading 5 styles within the content block */
.rightsFieldUnit h5 {
    font-size: 1.1rem; /* Smallest heading size */
    margin-top: 1.25rem; /* Top margin for separation */
    margin-bottom: 0.5rem; /* Bottom margin for spacing */
    color: var(--primary-color); /* Use primary color for headings */
    font-family: 'Montserrat', sans-serif; /* Consistent heading font */
    line-height: 1.4; /* Line height for readability */
}

/* Paragraph styles within the content block */
.rightsFieldUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    margin-bottom: 1rem; /* Bottom margin for paragraph spacing */
    line-height: 1.6; /* Line height for optimal readability */
    color: var(--text-dark); /* Dark text color for good contrast */
}

/* Unordered list styles within the content block */
.rightsFieldUnit ul {
    list-style-type: disc; /* Default disc bullet points */
    margin-bottom: 1rem; /* Bottom margin for list spacing */
    padding-left: 1.5rem; /* Indentation for list items */
    color: var(--text-dark); /* Dark text color for list */
}

/* List item styles within the content block */
.rightsFieldUnit li {
    font-size: 1rem; /* Standard font size for list items */
    margin-bottom: 0.5rem; /* Spacing between list items */
    line-height: 1.6; /* Line height for readability */
    color: var(--text-dark); /* Dark text color for list items */
}

/* Responsive adjustments for smaller screens */
@media (max-width: 768px) {
    .rightsFieldUnit {
        padding-top: 2rem;
        padding-bottom: 2rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .rightsFieldUnit h1 {
        font-size: 1.25rem;
    }
    .rightsFieldUnit h2 {
        font-size: 1.1rem;
    }
    .rightsFieldUnit h3 {
        font-size: 1.1rem;
    }
    .rightsFieldUnit h4 {
        font-size: 1.15rem;
    }
    .rightsFieldUnit h5 {
        font-size: 1rem;
    }
    .rightsFieldUnit p,
    .rightsFieldUnit li {
        font-size: 0.95rem;
    }
}

@media (max-width: 992px) {
        #about img{
            margin-bottom: 20px;
        }
}



.foot-contact{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    text-align: center;
}

.foot-contact h2{
    font-size: 16px !important;
    font-weight: 800;
    color: #fff !important;
    margin: 0;
}

.foot-contact a{
    font-size: 16px !important;
    color: #fff !important;
}

.foot-contact p{
    font-size: 16px !important;
    color: #fff !important;
    margin: 0;
}



.bx{
 font-size: 1.5rem !important;
margin: 0 2px !important;
}