:root {
    --primary-color: #FFD700;
    --secondary-color: #007bff;
    --light-yellow: #FFFACD;
    --dark-text: #333;
    --light-text: #f8f9fa;
    --overlay-color: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    background-color: #fff;
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: border-box;
}

h1 {
    font-size: 2.5rem;
}
h2 {
    font-size: 2rem;
}
h3 {
    font-size: 1.75rem;
}
h4 {
    font-size: 1.5rem;
}
h5 {
    font-size: 1.25rem;
}

@media (min-width: 768px) and (max-width: 1023px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.6rem; }
    h4 { font-size: 1.4rem; }
    h5 { font-size: 1.15rem; }
    .site-name { font-size: 1.8rem; }
}

@media (max-width: 767px) {
    h1 { font-size: 1.8rem; }
    h2 { font-size: 1.5rem; }
    h3 { font-size: 1.3rem; }
    h4 { font-size: 1.2rem; }
    h5 { font-size: 1.1rem; }
    .site-name { font-size: 1.25rem; }
    .navbar-brand img { height: 30px; }
}

.navbar-brand .site-name {
    font-weight: 700;
    color: var(--dark-text);
    font-size: 2rem;
}

.navbar-nav .nav-link {
    color: var(--dark-text) !important;
    font-weight: 600;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark-text);
    font-weight: 600;
}

.btn-primary:hover {
    background-color: #E6C200;
    border-color: #E6C200;
    color: var(--dark-text);
}

.btn-outline-primary {
    border-color: var(--primary-color);
    color: var(--primary-color);
}
.btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: var(--dark-text);
}

.bg-light-yellow {
    background-color: var(--light-yellow);
}

.section-title {
    font-weight: 700;
    color: var(--dark-text);
}

.hero-section {
    position: relative;
    height: 80vh;
    min-height: 500px;
    background: url(static/pics/amsterdam-canal-hero_2.jpg) no-repeat center center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 56px;
}

.hero-section .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-section p.lead {
    font-size: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.product-card {
    border: none;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

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

.product-card .card-img-top {
    height: 200px;
    object-fit: cover;
}

.product-card .price {
    color: var(--primary-color);
    font-weight: 700;
}

.product-card .btn {
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.review-avatar {
    width: 60px;
    height: 60px;
    object-fit: cover;
}

.contact-info li {
    font-size: 1.1rem;
}

footer {
    background-color: #212529 !important;
}

footer .site-name {
    font-weight: 700;
    color: var(--light-text);
}

footer .list-inline-item a {
    font-weight: 400;
}

#cookieConsentModal .modal-content {
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#cookieConsentModal .modal-header {
    border-bottom: none;
    padding-bottom: 0;
}

#cookieConsentModal .modal-footer {
    border-top: none;
    padding-top: 0;
}

#cartModal .modal-content {
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}

#cartModal .cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 0.5rem;
}

#cartModal .form-control-sm {
    width: 70px;
}

#cartModal .btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

#cartModal .btn-danger:hover {
    background-color: #c82333;
    border-color: #bd2130;
}

#cartModal .cart-item-subtotal {
    font-weight: 600;
}

#cartModal #cart-total-price {
    font-size: 1.8rem;
}

.offcanvas-body .nav-link {
    padding: 0.75rem 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offcanvas-body .nav-item:last-child .nav-link {
    border-bottom: none;
}

/* @media (max-width: 1199.98px) {
    .navbar-collapse {
        display: none !important;
    }
    .navbar-toggler {
        display: block !important;
    }
} */
@media (min-width: 1200px) {
    .offcanvas {
        visibility: hidden !important;
    }
    .navbar-toggler {
        display: none !important;
    }
}

.fixed-top {
    z-index: 1030;
}
#cookieConsentModal {
    z-index: 1060;
}
#cartModal {
    z-index: 1070;
}

html {
    scroll-behavior: smooth;
}/* Base container styling for padding */
.policyOrbitalShell {
    padding-top: 30px; /* Top padding for the content area */
    padding-left: 20px; /* Left padding for the content area */
    padding-right: 20px; /* Right padding for the content area */
    /* You might want to add padding-bottom as well if content doesn't always fill the space */
    /* padding-bottom: 30px; */
}

/* Heading 1 styles */
.policyOrbitalShell h1 {
    font-size: 1.8em; /* A reasonable size, not excessively large */
    font-weight: 700; /* Bold */
    line-height: 1.2; /* Improved readability for headings */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
}

/* Heading 2 styles */
.policyOrbitalShell h2 {
    font-size: 1.5em;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
}

/* Heading 3 styles */
.policyOrbitalShell h3 {
    font-size: 1.3em;
    font-weight: 700;
    line-height: 1.4;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
}

/* Heading 4 styles */
.policyOrbitalShell h4 {
    font-size: 1.1em;
    font-weight: 600; /* Slightly less bold to differentiate from higher headings */
    line-height: 1.5;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

/* Heading 5 styles */
.policyOrbitalShell h5 {
    font-size: 1em; /* Similar to body text, but bold */
    font-weight: 600;
    line-height: 1.5;
    margin-top: 1.1em;
    margin-bottom: 0.4em;
}

/* Paragraph styles */
.policyOrbitalShell p {
    font-size: 1em; /* Standard body text size */
    line-height: 1.6; /* Good line height for readability */
    margin-top: 0; /* No top margin by default for paragraphs */
    margin-bottom: 1em; /* Space between paragraphs */
}

/* Unordered list styles */
.policyOrbitalShell ul {
    list-style-type: disc; /* Standard bullet points */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for list items */
}

/* List item styles */
.policyOrbitalShell li {
    font-size: 1em; /* Standard text size for list items */
    line-height: 1.5; /* Line height for readability within list items */
    margin-bottom: 0.5em; /* Space between individual list items */
}
@media screen and (width < 576px) {
    .navbar-toggler {
        padding: 5px;
    }
    .navbar-brand .site-name {
        font-size: 1.8rem !important;
    }
}