/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    color: #202122;
    line-height: 1.6;
}

/* Header and Navigation */
header {
    background-color: #333;
    color: #050101;
    text-align: center;
    padding: 20px;
}

nav {
    background-color: hwb(27 75% 4%);
    padding: 10px 0;
    position: relative;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li:first-child {
    margin-left: 0;
}

nav ul li a {
    color: #8f231a;
    text-decoration: none;
    font-size: 16px;
}

nav ul li a:hover {
    color: #202122;
    text-decoration: underline;
}
#cookieConsent {
    /* Example adjustments */
    top: 0 !important;  
    left: 0; 
    right: 0;
    /* You can add more properties here */
}
/* Banner */
/* Ensure parent container does not constrain the banner */
.banner-wrapper {
    padding: 0;
    margin: 0;
    width: 100%; /* Ensures the container spans the full viewport */
    text-align: center;
    box-sizing: border-box;
}

.responsive-banner {
    display: block; /* Removes inline or text-like behavior */
    width: 100%; /* Ensures the banner image fills the container */
    max-width: 100%; /* Prevents scaling issues */
    height: auto; /* Maintains aspect ratio */
    margin: 0 auto; /* Center alignment */
    box-sizing: border-box;
}
/*
.banner-wrapper {
    background-color: #8f231a; /* Restore red background *
    text-align: center;
    padding: 10px 0;
}

.responsive-banner {
    width: 70%;
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    box-sizing: border-box;
}*/

/* Content */
.content {
    max-width: 960px;
    margin: 0 auto;
    padding: 20px;
    background-color: white;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
}
.content h1,
.content h2,
.content h3,
.content h4 {
    color: #8f231a;
    margin-top: 20px;
}

/* Footer */
footer {
    background-color: #8f231a;
    color: #ffffff;
    text-align: center;
    padding: 10px 20px;
    box-sizing: border-box;
}

footer p {
    color: #ffffff; /* White text */
}

footer a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #ffcccb;
    text-decoration: underline;
}

footer address a:hover {
    color: #ffcccb;
}
.menu-icon {
    display: none;
}
/* General Image Styling */
.container {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start; /* Align the content at the top */
}
/* Specific to the Chia Pudding Image */
.zoom img {
    width: 20%; /* Let it scale within the container */
    max-width: 600px; /* Optional: set a maximum width to avoid it being too large */
    height: auto; o/* Keep the original aspect ratio */
    transition: transform 0.3s ease; /* Smooth zoom effect */
}

.zoom:hover img {
    transform: scale(1.05); /* Slight zoom-in on hover */
}
.image-container {
    flex: 2; /* Takes up the first half of the space */
}

.responsive-image {
    width: 100%; /* Makes the image responsive and scaleable */
    height: auto; /* Maintains the aspect ratio */
    border-radius: 8px; /* Adds rounded corners */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Adds a subtle shadow */
}

.text-content {
    flex: 1; /* Takes up the remaining space */
    padding-top: 20px;
}

ul {
    list-style-type: disc;
    margin-top: 10px;
}

ul li {
    margin-bottom: 10px;
}

p {
    font-size: 16px !important;
    margin-top: 15px;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 415px) {
    .responsive-banner {
        width: 100%;

        height: auto;
        margin: 0 auto; /* Remove margins */
        max-width: 100%; /* Prevent any unwanted scaling */
        height: auto; /* Maintain aspect ratio */
        display: block;
        box-sizing: border-box; /* Ensure proper sizing */
    }
    .banner-wrapper {
        background-color: #8f231a; /* Restore red background #8f231a */
        text-align: center;
        padding: 0;
    }
}

@media (max-width: 600px) {
    .responsive-banner {
        width: 90%;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 1000px) {
    .responsive-banner {
        width: 80%;
        height: auto;
        margin: 0 auto;
    }
}

@media (max-width: 1325px) {
    .menu-icon {
        display: block;
        color: #8f231a;
        font-size: 16px;
        text-align: right;
        padding: 2px 20px;
    }
    nav ul {
        flex-direction: column;
        display: none;
    }
    nav ul.show {
        display: flex;
    }
    .content {
        padding: 10px;
    }
    .banner-wrapper {
        padding: 10px;
    }
}

/* Video Wrapper */
.video-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.video-wrapper iframe {
    width: 100%;
    max-width: 600px;
    aspect-ratio: 16 / 9;
    height: auto;
    border: none;
}

/* Grid Page */
.grid-page .grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 20px 0;
}

.grid-page .grid-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    transition: opacity 0.3s;
}

.grid-page .grid-item:hover img {
    opacity: 0.8;
}
