body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;

    /* Background image settings */
    background-image: url('../images/background.jpg'); /* Replace with the path to your image */
    background-size: cover; /* Ensures the image covers the entire background */
    background-repeat: no-repeat; /* Prevents the image from repeating */
    background-position: center center; /* Centers the image */
}


.header {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    width: 100%;
    background: rgba(0,0,0,0.3);
    z-index: 1000;
}

.header_logo {
    width: 8rem;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.logo {
    /* color: white; */
    font-size: 24px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin: 0 15px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #178252;
}

.burger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: space-around;
    height: 24px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px; /* positioning below the menu button */
        right: 20px;
        background: rgba(0, 0, 0, 0.8); /* black background with high transparency */
        border-radius: 8px; /* rounded corners */
        padding: 10px;
        width: 200px; /* adjust width as necessary */
        transition: all 0.3s ease; /* smooth transition */
    }

    .nav-links.show {
        display: flex;
    }

    .burger {
        display: flex;
    }
}

/* Main Section Styles */
.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
    background: rgba(255, 255, 255, 0.8); /* Slightly transparent background */
    border-radius: 8px;
    margin: 50px auto; /* Center the section with some margin */
    max-width: 800px; /* Set a max width for better readability */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Subtle shadow for better focus */
}

.welcome-content {
    text-align: center;
}

.welcome-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.welcome-content p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
    margin: 5px 0;
}

.highlight {
    color: #178252;
}

.email-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #178252;
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.email-link:hover {
    background-color: #178252; /* Slightly darker shade on hover */
}

.slideshow-container {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
}

.slideshow-caption-container {
    position: relative;
    margin: 50px auto;
    max-width: 800px;
}

.slideshow-caption-container a {
    color:yellow;
    
}

.slideshow-caption {
    color: white;
    font-size: 2rem;
    text-align: center;
    
}

.slideshow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
}

.slideshow img {
    scroll-snap-align: center;
    max-width: 100%; /* Set the maximum width of the images to fit the container */
    height: auto; /* Maintain the aspect ratio of the images */
}

button.prev,
button.next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, 0.5);
    color: black;
    border: none;
    padding: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

button.prev:hover,
button.next:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Position the previous arrow on the left */
button.prev {
    left: 0;
}

/* Position the next arrow on the right */
button.next {
    right: 0;
}


.shop-link {
    text-align: center;
    margin: 20px auto;
}

.shop-link p {
    margin-bottom: 10px;
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.5);
}

.shop-link a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #178252;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.shop-link a:hover {
    background-color: #126539;
}






/* Footer styles */
.footer {
    background-color: rgba(0,0,0,0.3);
    color: white;
    padding: 20px;
    text-align: center;
}

.address-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-top: -10px;
}

.address-block {
    width: 45%; /* Adjust this percentage as needed */
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 8px;
    margin: 10px 0;
}

.address-block h3 {
    margin-top: 0;
}

.address-block p {
    margin: 5px 0;
}

.copyright {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #ccc;
}

@media (max-width: 768px) {
    .address-block {
        width: 100%;
    }

}
