/* Global Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    overflow-x: hidden;
}
html{
    overflow-x: hidden;
}
h1, h2, h3 {
    font-family: 'Press Start 2P', cursive;
    color: #333;
}

.press-start-font {
    font-family: 'Press Start 2P', cursive;
}

/* Custom Color Palette */
.bg-dark-gray {
    background-color: #333;
}
.dark-gray {
    color: #333;
}
.bg-light-gray {
    background-color: #f0f0f0;
}
.bg-pink-light {
    background-color: #ffe0e6; /* Soft Pink */
}
.bg-yellow-light {
    background-color: #fff9e6; /* Soft Yellow */
}
.yellow {
    color: #FFD700; /* Gold/Yellow */
}
.hover-yellow:hover {
    color: #FFD700;
}
.hover-bg-gold:hover {
    background-color: #FFD700;
}

/* Header & Navigation */
header {
    z-index: 1000;
}

.f3-l {
    font-size: 1.5rem;
}
.f2-l {
    font-size: 1.8rem;
}
.f1-l {
    font-size: 2rem;
}

/* Responsive Typography for Headings */
h1 {
    font-size: 1.5rem; /* Mobile */
}
@media screen and (min-width: 48em) {
    h1 {
        font-size: 2.2rem; /* Tablet */
    }
}
@media screen and (min-width: 64em) {
    h1 {
        font-size: 3.5rem; /* Desktop */
    }
}

h2 {
    font-size: 1.25rem; /* Mobile */
}
@media screen and (min-width: 48em) {
    h2 {
        font-size: 1.8rem; /* Tablet */
    }
}
@media screen and (min-width: 64em) {
    h2 {
        font-size: 2.5rem; /* Desktop */
    }
}

h3 {
    font-size: 1.1rem; /* Mobile */
}
@media screen and (min-width: 48em) {
    h3 {
        font-size: 1.5rem; /* Tablet */
    }
}
@media screen and (min-width: 64em) {
    h3 {
        font-size: 1.8rem; /* Desktop */
    }
}

.hero-banner .f-headline-l {
    font-size: 2.5rem; /* Desktop specific for hero */
}

.hero-banner p.f2-l {
    font-size: 1.8rem; /* Desktop specific for hero sub-text */
}

/* Hero Section */
.hero-banner {
    min-height: 70vh;
    height: 70vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-size: cover;
    background-position: center;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #FFD700; /* Yellow */
    color: #333;
    font-family: 'Press Start 2P', cursive;
    font-size: 0.9rem;
    text-decoration: none;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    white-space: normal;
    word-break: break-word;
    text-align: center;
}

.btn-primary:hover {
    background-color: #e6c200; /* Darker Yellow */
    color: #000;
    transform: translateY(-2px);
}

/* Image Styling */
section img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

/* Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1001; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
    padding-top: 60px; /* Location of the box */
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto; /* 15% from the top and centered */
    padding: 2rem;
    border: 1px solid #888;
    width: 90%; /* Could be more or less, depending on screen size */
    max-width: 700px;
    position: relative;
    border-radius: 8px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2), 0 6px 20px 0 rgba(0,0,0,0.19);
    max-height: 80vh;
    overflow-y: auto;
}

.close-button, .close-button-cookie {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    position: absolute;
    top: 10px;
    right: 20px;
}

.close-button:hover,
.close-button:focus,
.close-button-cookie:hover,
.close-button-cookie:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Form Styling */
form input[type="text"], 
form input[type="email"], 
form select, 
form textarea {
    border: 1px solid #ccc;
    border-radius: 4px;
    padding: 0.75rem;
    font-size: 1rem;
    width: 100%;
    max-width: 100%;
    transition: border-color 0.3s ease;
}

form input:focus, 
form select:focus, 
form textarea:focus {
    border-color: #FFD700;
    outline: none;
}

/* Footer */
footer .list li {
    display: flex;
    align-items: flex-start;
}

footer .list i {
    font-size: 1.2rem;
    margin-top: 0.2rem;
}

#instagram-carousel {
    height: 200px; /* Fixed height for carousel images */
    overflow: hidden;
}

#instagram-carousel-track {
    display: flex;
    height: 100%;
}

#instagram-carousel-track img {
    height: 100%;
    width: 100%; /* Each image takes full width of the container */
    object-fit: cover;
    flex-shrink: 0;
}

/* Mobile Menu */
#mobile-menu {
    transition: transform 0.3s ease-out;
    transform: translateY(-100%);
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: fixed;
    z-index: 999;
}

#mobile-menu.open {
    transform: translateY(0);
}

#mobile-menu a {
    padding: 1rem;
    font-size: 1.5rem;
}

#close-mobile-menu-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

/* Cookie Banner */
#cookie-banner {
    z-index: 1002;
    transition: opacity 0.3s ease-in-out;
}

#cookie-modal {
    z-index: 1003;
}

.btn-cookie {
    padding: 0.6rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-cookie.bg-yellow:hover {
    background-color: #e6c200;
}

.btn-cookie.ba:hover {
    background-color: white;
    color: #333;
}

.word-break-all {
    word-break: break-all;
}
@media (max-width:575px) {
        header .f3.f2-ns.f1-l {
        font-size: 9px!important; /* Logo text size on mobile */
    }
    .f1-l{
        font-size: 1.6rem!important;
    }
    form input[type="text"], form input[type="email"], form select, form textarea{
        font-size: 12px;
    }
    .trustPillarUnit h2{
        font-size: 14px!important;
    }
    .trustPillarUnit h3 {
        font-size: 14px!important;
}}
/* Responsive adjustments for navigation */
@media screen and (max-width: 64em) {
    .dn-l {
        display: block;
    }
    .flex-l {
        display: none;
    }
    header nav {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    header .f3.f2-ns.f1-l {
        font-size: 1rem; /* Logo text size on mobile */
    }
    header img.w2.h2 {
        width: 1.5rem;
        height: 1.5rem;
    }
}
/* Base styles for the trust pillar unit container */
.trustPillarUnit {
    padding: 20px 25px; /* Adds space inside the container on top/bottom and left/right */
}

/* Heading styles within the trust pillar unit */
.trustPillarUnit h1 {
    font-size: 2rem; /* Moderate font size for H1 */
    line-height: 1.2; /* Tighter line spacing for headings */
    margin-top: 1.5em; /* Space above the heading */
    margin-bottom: 0.8em; /* Space below the heading */
}

.trustPillarUnit h2 {
    font-size: 1.6rem; /* Moderate font size for H2 */
    line-height: 1.2;
    margin-top: 1.4em;
    margin-bottom: 0.7em;
}

.trustPillarUnit h3 {
    font-size: 1.4rem; /* Moderate font size for H3 */
    line-height: 1.3;
    margin-top: 1.3em;
    margin-bottom: 0.6em;
}

.trustPillarUnit h4 {
    font-size: 1.2rem; /* Moderate font size for H4 */
    line-height: 1.4;
    margin-top: 1.2em;
    margin-bottom: 0.5em;
}

.trustPillarUnit h5 {
    font-size: 1rem; /* Moderate font size for H5, similar to body text */
    line-height: 1.5;
    margin-top: 1em;
    margin-bottom: 0.4em;
}

/* Paragraph styles within the trust pillar unit */
.trustPillarUnit p {
    font-size: 1rem; /* Standard body text size */
    line-height: 1.6; /* Good line spacing for readability */
    margin-bottom: 1em; /* Space below paragraphs */
}

/* Unordered list styles within the trust pillar unit */
.trustPillarUnit ul {
    list-style: disc; /* Default bullet style */
    margin-top: 1em; /* Space above the list */
    margin-bottom: 1em; /* Space below the list */
    padding-left: 25px; /* Indentation for bullet points */
}

/* List item styles within the trust pillar unit */
.trustPillarUnit li {
    font-size: 1rem; /* Standard body text size for list items */
    line-height: 1.6; /* Consistent line spacing */
    margin-bottom: 0.5em; /* Space between list items */
}
