/* General Styles */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #1a1a1a; /* Deep black/dark grey */
    color: #f8f9fa; /* Light grey for general text */
    line-height: 1.6;
    overflow-x: hidden; /* Prevent horizontal scroll */
}

h1, h2, h3, h4, h5, h6 {
    color: #f8f9fa;
    font-weight: 600;
}

p {
    color: #ced4da; /* Slightly darker light grey for paragraphs */
}

a {
    color: #007bff; /* Bootstrap primary blue for links */
    text-decoration: none;
}

a:hover {
    color: #0056b3; /* Darker blue on hover */
    text-decoration: underline;
}

.text-primary {
    color: #007bff !important;
}

.text-white-50 {
    color: rgba(248, 249, 250, 0.7) !important; /* Lighter text for subtle info */
}

.btn-primary {
    background-color: #007bff;
    border-color: #007bff;
    color: #fff;
    transition: none; /* No animation */
}

.btn-primary:hover {
    background-color: #0056b3;
    border-color: #0056b3;
    color: #fff;
}

.btn-outline-light {
    border-color: #f8f9fa;
    color: #f8f9fa;
    transition: none; /* No animation */
}

.btn-outline-light:hover {
    background-color: #f8f9fa;
    color: #1a1a1a;
}

/* Navbar */
.navbar {
    background-color: rgba(26, 26, 26, 0.95) !important; /* Slightly transparent dark background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    z-index: 1030; /* Ensure it's above other content */
}

.navbar-brand .fw-bold {
    color: #f8f9fa;
}

.navbar-nav .nav-link {
    color: #f8f9fa !important;
    padding: 0.5rem 1rem;
    transition: none; /* No animation */
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #007bff !important;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('photos/media/hero-background_26.jpg') no-repeat center center / cover;
    position: relative;
    overflow: hidden;
    padding-top: 76px; /* Adjust for fixed navbar height */
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7); /* Dark overlay */
    z-index: 1;
}

.hero-section > * {
    position: relative;
    z-index: 2;
}

.custom-badge {
    background-color: rgba(26, 26, 26, 0.85); /* Dark background for the badge */
    border: 1px solid rgba(0, 123, 255, 0.5); /* Blue border */
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    backdrop-filter: blur(5px); /* Subtle blur effect */
}

.hero-logo {
    height: 60px;
}

.custom-btn-hero {
    padding: 12px 30px;
    font-size: 1.2rem;
}

/* About Section (Timeline) */
.about-section {
    background-color: #121212; /* Slightly lighter dark background */
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #007bff; /* Blue timeline line */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
}

.timeline-item {
    padding: 10px 0;
    position: relative;
    width: 50%;
}

.timeline-item.left {
    left: 0;
    padding-right: 40px;
}

.timeline-item.right {
    left: 50%;
    padding-left: 40px;
}

.timeline-content {
    background-color: #2a2a2a; /* Darker card background */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
}

.timeline-icon {
    font-size: 2.5rem;
    color: #007bff;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: #1a1a1a;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #007bff;
    z-index: 1;
}

.timeline-item.left .timeline-icon {
    right: -70px;
}

.timeline-item.right .timeline-icon {
    left: -70px;
}

@media (max-width: 768px) {
    .timeline::after {
        left: 18px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 60px;
        padding-right: 10px;
    }

    .timeline-item.right {
        left: 0;
        padding-left: 60px;
    }

    .timeline-item.left .timeline-icon,
    .timeline-item.right .timeline-icon {
        left: 0;
        margin-left: -72px;
    }
}

/* Products Section */
.products-section {
    background-color: #1a1a1a;
}

.custom-card {
    background-color: #2a2a2a; /* Darker card background */
    border: 1px solid rgba(0, 123, 255, 0.2); /* Subtle blue border */
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.custom-card .card-img-top {
    height: 200px;
    object-fit: contain;
    background-color: #1a1a1a; /* Background for image area */
    border-bottom: 1px solid rgba(0, 123, 255, 0.1);
}

/* Features Section */
.features-section {
    background-color: #121212;
}

.custom-feature-panel {
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

/* Stats Section */
.stats-section {
    background: url('photos/media/stats-background.jpg') no-repeat center center / cover;
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75); /* Dark overlay */
    z-index: 1;
}

.stats-section > * {
    position: relative;
    z-index: 2;
}

.stats-section h1 {
    font-size: 3.5rem;
}
@media screen and (max-width: 575px) {
    .stats-section h1 {
        font-size: 2.5rem;
    }
}

.stats-section p {
    font-size: 1.1rem;
    color: #f8f9fa;
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a1a;
}

.custom-accordion .accordion-item {
    background-color: #2a2a2a; /* Darker background for accordion items */
    border: 1px solid rgba(0, 123, 255, 0.2);
    margin-bottom: 10px;
    border-radius: 8px;
}

.custom-accordion .accordion-header .accordion-button {
    background-color: #2a2a2a;
    color: #f8f9fa;
    font-weight: 600;
    border-radius: 8px;
    transition: none; /* No animation */
    box-shadow: none;
}

.custom-accordion .accordion-header .accordion-button:not(.collapsed) {
    background-color: #007bff; /* Blue when open */
    color: #fff;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.custom-accordion .accordion-header .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
}

.custom-accordion .accordion-body {
    background-color: #2a2a2a;
    color: #ced4da;
    border-top: 1px solid rgba(0, 123, 255, 0.2);
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

/* Disable Bootstrap collapse animation */
.collapsing {
    transition: none !important;
}

.collapse.show {
    transition: none !important;
}

/* Contact/Order Form Section */
.contact-section {
    background-color: #121212;
}

.custom-form-container {
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.custom-form-container .form-control {
    background-color: #1a1a1a;
    border: 1px solid rgba(0, 123, 255, 0.3);
    color: #f8f9fa;
}

.custom-form-container .form-control::placeholder {
    color: rgba(248, 249, 250, 0.5);
}

.custom-form-container .form-control:focus {
    background-color: #1a1a1a;
    border-color: #007bff;
    box-shadow: 0 0 0 0.25rem rgba(0, 123, 255, 0.25);
    color: #f8f9fa;
}

.custom-form-container .form-label {
    font-weight: 600;
}

.invalid-feedback {
    color: #dc3545;
}

/* Reviews Section */
.reviews-section {
    background-color: #1a1a1a;
}

.custom-review-card {
    background-color: #2a2a2a;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(0, 123, 255, 0.2);
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #007bff;
}

.text-warning {
    color: #ffc107 !important; /* Bootstrap yellow for stars */
}

/* Footer */
.footer-section {
    background-color: #0d0d0d; /* Even darker for footer */
    border-top: 1px solid rgba(0, 123, 255, 0.2);
}

.footer-cta-bar {
    background-color: #007bff; /* Primary blue for CTA bar */
    border-radius: 10px;
    padding: 1.5rem 2rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.footer-cta-bar h4 {
    color: #fff;
}

.footer-cta-bar .btn-light {
    color: #007bff;
    background-color: #f8f9fa;
    border-color: #f8f9fa;
    transition: none; /* No animation */
}

.footer-cta-bar .btn-light:hover {
    background-color: #e2e6ea;
    border-color: #e2e6ea;
}

.footer-section .list-unstyled a {
    color: rgba(248, 249, 250, 0.7);
    transition: none; /* No animation */
}

.footer-section .list-unstyled a:hover {
    color: #007bff;
    text-decoration: none;
}

/* Cookie Banner */
.cookie-banner {
    background-color: #2a2a2a; /* Dark background */
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 1040; /* Above navbar */
    border-top: 1px solid rgba(0, 123, 255, 0.3);
}

.cookie-banner p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.cookie-banner a {
    font-weight: 600;
}

@media (max-width: 767.98px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }
    .cookie-banner p {
        margin-bottom: 1rem !important;
    }
    .cookie-banner .d-flex {
        width: 100%;
        justify-content: center;
    }
    .cookie-banner .btn {
        flex-grow: 1;
    }
}
/* Styles for content within .rightsFieldUnit */
.rightsFieldUnit {
    padding: 2.5rem 1.5rem; /* Padding top and sides */
    /* You might want to add a background-color here if this section is distinct */
    /* background-color: #1a1a1a; */
}

.rightsFieldUnit h1 {
    font-size: 2.2rem; /* Moderate font size for H1 */
    margin-bottom: 1.5rem; /* Space below H1 */
    color: #f8f9fa; /* Light color for headings */
}

.rightsFieldUnit h2 {
    font-size: 1.8rem; /* Moderate font size for H2 */
    margin-bottom: 1.2rem; /* Space below H2 */
    color: #f8f9fa;
}

.rightsFieldUnit h3 {
    font-size: 1.5rem; /* Moderate font size for H3 */
    margin-bottom: 1rem; /* Space below H3 */
    color: #f8f9fa;
}

.rightsFieldUnit h4 {
    font-size: 1.3rem; /* Moderate font size for H4 */
    margin-bottom: 0.8rem; /* Space below H4 */
    color: #f8f9fa;
}

.rightsFieldUnit h5 {
    font-size: 1.1rem; /* Moderate font size for H5 */
    margin-bottom: 0.6rem; /* Space below H5 */
    color: #f8f9fa;
}

.rightsFieldUnit p {
    font-size: 1rem; /* Standard paragraph font size */
    line-height: 1.7; /* Good line height for readability */
    margin-bottom: 1rem; /* Space below paragraphs */
    color: #ced4da; /* Slightly darker light grey for paragraphs */
}

.rightsFieldUnit ul {
    list-style: disc; /* Standard disc bullet points */
    padding-left: 1.5rem; /* Indentation for list items */
    margin-bottom: 1rem; /* Space below the list */
    color: #ced4da; /* Inherit text color for list items */
}

.rightsFieldUnit li {
    margin-bottom: 0.5rem; /* Space between list items */
    line-height: 1.6; /* Good line height for list items */
}
