* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Body styling */
body {
    background-color: rgba(1, 68, 33, 255);
    font-family: Arial, sans-serif;
    min-height: 100vh;
}

.payment-box {
  background: #f7f7f7;
  border: 1px solid #ddd;
  border-radius: 12px;
  padding: 24px;
  max-width: 500px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
}

.payment-box h3 {
  margin-top: 0;
  margin-bottom: 15px;
  color: #1f4d3a;
}



.payment-method {
  background: #fff;
  border: 1px solid #e2e2e2;
  border-radius: 8px;
  padding: 14px;
  margin-top: 15px;
}

.payment-method strong {
  display: block;
  margin-bottom: 6px;
  color: #1f4d3a;
}

.payment-note {
  margin-top: 20px;
  font-size: 14px;
  color: #555;
}

/* Navbar styling */
nav {
    background-color: white;
    padding: 10px 20px;
    display: flex;
    align-items: center;
}

/* Logo Image inside Navbar */
.logo {
    margin-right: auto;
    height: 100%; /* Set the height of the logo container to 100% */
    display: flex; /* Use flexbox to align items */
    align-items: center; /* Center the logo vertically */
}

.logo img {
    height: 100%; /* Set the logo height to fill the container */
    width: auto; /* Keep the width auto to maintain aspect ratio */
    max-height: 50px; /* Set a max height to maintain overall navbar height */
}

.noneWhenLarge {
    display: none;
}

/* Navbar links styling */
nav ul {
    list-style-type: none;
    display: flex;
    flex: 1;
    justify-content: center;
}

nav ul li {
    margin: 0 10px;
}

nav ul li a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    position: relative;
}

/* Underline effect */
nav ul li a::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background-color: rgba(0, 51, 0, 255);
    position: absolute;
    left: 0;
    bottom: -5px;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

nav ul li a:hover::after {
    transform: scaleX(1);
}

nav ul li a.selected {
    color: rgba(0, 51, 0, 255);
}

/* Main content styling */
main {
    background-color: rgba(0, 51, 0, 255);
    color: #333333;
    padding: 30px;
    margin: 30px auto;
    max-width: 90%;
    text-align: center;
    border-radius: 10px;
}

.centered {
  position: relative;
  max-width: 50%;
  height: 50%;
}


/* Section styling */
section {
    padding: 20px;
    font-size: 18px;
    line-height: 1.6;
}

/* Image comparison section */
.image-container {
    position: relative; /* Ensure images are positioned relative to the container */
    width: 100%; /* Allow full width */
    max-width: 480px; /* Limit max width */
    aspect-ratio: 1 / 1; /* Ensures the height is always equal to the width for a square */
    margin: 0 10px; /* Space between image containers */
    overflow: hidden; /* Hide overflow */
    border-radius: 10px; /* Rounded corners */
}

.image-container img {
    position: absolute; /* Position images absolutely within the container */
    top: 0;
    left: 0;
    width: 100%; /* Make images responsive */
    height: 100%; /* Fill the container */
    object-fit: cover; /* Ensure images are not distorted */
    opacity: 0; /* Start with hidden images */
    transition: opacity 0.5s ease; /* Smooth transition for fading */
}


.image-container img.active {
    opacity: 1; /* Show active image */
}




/* Top style */
/* .top-style {
    background-color: rgba(8,120,2,255);
    font-weight: bold;
    font-size: 20px;
    color: white;
    margin-bottom: 10px;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}
 */

/* Section styling */
.top-section {
    width: 90%; /* Match the footer's max-width */
    margin: 30px auto; /* Center the section */
    padding: 15px; /* Add padding to match the footer */
    background-color: rgba(0, 51, 0, 255); /* Match the footer's background color */
    border-radius: 10px; /* Match the footer's border radius */
    text-align: center; /* Center text in the section */
}

/* Top style for text */
.top-style {
    font-weight: bold;
    font-size: 20px; /* You can adjust the font size as needed */
    color: white; /* Ensure text color matches */
}
/* List styling */
section ul {
    list-style-type: disc;
    padding-left: 20px;
}

section ul li {
    margin-bottom: 10px;
}


/* Footer styling */
footer {
    background-color: rgba(0, 51, 0, 255);
    padding: 20px;
    text-align: center;
    border-radius: 10px;

    margin: 30px auto;
    max-width: 90%;
    color: white;
}

/* Styling for paragraph text */
footer p {
    color: #ffffff; /* Dark green for text */
    background-color: rgba(0, 51, 0, 255);
    font-size: 16px;
    margin: 5px 0;
}

/* Styling for footer links */
footer a {
    background-color: rgba(0, 51, 0, 255);
    color: #ffffff; /* Dark green for text */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold; /* Make links bold */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
}

/* Hover effect for links */
footer a:hover {
    color: #007A33; /* Change to dark green on hover */
}

/* List styling for opening hours */
footer ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

footer ul li {
    display: inline; /* Display links inline */
    margin: 0 10px; /* Add margin between links */
}



/* Responsive Design: Adjust for mobile */
@media (max-width: 768px) {
    main {
        flex-direction: column;
    }
    .noneWhenLarge {
        display: flex;
    }
    .noneWhenBig {
        display: none;
    }

    section.image-comparison {
        flex-direction: column; /* Stack on small screens */
    }

    .image-container {
        position: relative; /* Ensure images are positioned relative to the container */
        width: 100%;
        max-width: 300px; /* Limit max width */
        height: 300px; /* Fixed height for each image container */
        margin: 0 10px; /* Space between image containers */
        overflow: hidden; /* Hide overflow */
        border-radius: 10px; /* Rounded corners */
    }
    section {
        display: flex; /* Use flexbox for image comparison section */
        flex-direction: column; /* Stack images in a column on small screens */
        align-items: center; /* Center the image containers horizontally */
        width: 100%; /* Ensure section takes full width */
    }


    /* Footer styling */
footer {
    background-color: rgba(0, 51, 0, 255);
    padding: 20px;
    text-align: center;
    border-radius: 10px;

    margin: 30px auto;
    max-width: 90%;
    color: white;
}

/* Styling for paragraph text */
footer p {
    color: #ffffff; /* Dark green for text */
    background-color: rgba(0, 51, 0, 255);
    font-size: 10px;
    margin: 5px 0;
}

/* Styling for footer links */
footer a {
    background-color: rgba(0, 51, 0, 255);
    color: #ffffff; /* Dark green for text */
    text-decoration: none; /* Remove underline from links */
    font-weight: bold; /* Make links bold */
    transition: color 0.3s ease; /* Smooth transition for hover effect */
    font-size: 13px;
    margin: 5px 0;
}

/* Hover effect for links */
footer a:hover {
    color: #007A33; /* Change to dark green on hover */
}

/* List styling for opening hours */
footer ul {
    list-style-type: none; /* Remove bullet points */
    padding: 0; /* Remove padding */
}

footer ul li {
    display: flex; /* Display links inline */
}
    

    /* Font size adjustments */
.opening-hours {    font-size: 0.7em; /* Reduce font size to half */
}
}

/* Responsive Design for form */
@media (max-width: 480px) {

    section {
        display: flex; /* Use flexbox for image comparison section */
        flex-direction: column; /* Stack images in a column on small screens */
        align-items: center; /* Center the image containers horizontally */
        width: 100%; /* Ensure section takes full width */
    }
    .noneWhenLarge {
        display: flex;
    }
    .noneWhenBig {
        display: none;
    }

    nav ul li a {
        font-size: 14px; /* Smaller font size */
    }

    main {
        padding: 20px;
        margin: 20px auto;
    }
    
}

/* Contact form styling */
.contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}

.contact-form div {
    margin-bottom: 15px;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.contact-form button {
    background-color:rgba(8,120,2,255);
    color: white;
    padding: 10px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.contact-form button:hover {
    background-color: rgba(8,120,2,255);
}

.alligned {
    display: grid;
    align-items: center; 
    grid-template-columns: 1fr 1fr 1fr;
    column-gap: 5px;
   }



/* Snowflakes container */
.snow-container {
    position: fixed; /* Stay in the background */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none; /* Ensure it doesn't interfere with interactions */
    overflow: hidden; /* Prevent scrollbars */
    z-index: -1; /* Place it behind other content */
}

/* Snowflake styles */
.snowflake {
    position: absolute;
    top: -10px; /* Start above the screen */
    width: 6px; /* Snowflake size */
    height: 6px; /* Snowflake size */
    background-color: rgba(255, 255, 255, 0.8); /* White snowflake */
    border-radius: 50%; /* Make it circular */
    animation-name: fall;
    animation-timing-function: linear;
    animation-fill-mode: forwards; /* Keep the snowflakes at the bottom */
}

/* Snowflake falling animation */
@keyframes fall {
    to {
        transform: translateY(100vh); /* Fall to the bottom of the screen */
        opacity: 0; /* Fade out when reaching the bottom */
    }
}


/* Remove bullets from the opening hours list */
.no-bullets {
    list-style-type: none; /* Remove default bullet points */
    padding-left: 0; /* Remove left padding */
    margin: 0; /* Remove any default margin */
}


.opening-hours-static {
    width: 400px;  /* Set a fixed width */
    height: 300px; /* Set a fixed height */
    margin: 20px auto; /* Center the section on the page */
    padding: 20px; /* Add some padding */
    background-color: white; /* Background color for better visibility */
    border-radius: 10px; /* Optional: round the corners */
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* Optional: add shadow */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.opening-hours {
    text-align: center; /* Center text in opening hours */
}

.left{
    
    text-align: left; /* Align text to the left */
}
.calendar .end-date {
    background: linear-gradient(
        135deg,
        #4CAF50 0%,
        #4CAF50 50%,
        #625959 50%,
        #413c3c 100%
    ) !important;

    color: white !important;
    border: 2px solid #1976D2;
    font-weight: bold;
}
.img-text {
    color: white; /* Set text color to white */
    text-align: center; /* Center align text */
    margin: 5px 0; /* Add some margin above and below */
    font-size: 16px; /* Adjust font size as needed */
}

.centerProducts{
    text-align: left;
    width: 100%;
}

.opening-hours-container {
    display: flex;
    gap: 20px; /* Space between the two sections */
    justify-content: space-between; /* Optional, to spread them out */
}

.open-hours-static {
    flex: 1; /* Makes both sections take equal space */
}

/* Responsive behavior: stack the sections when the screen is small */
@media (max-width: 768px) {
    .opening-hours-container {
        flex-direction: column;
    }
}

