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;
}
/* ----------------- */


.workshop-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.workshop-banner {
    background-color: #f8f8f8;
    text-align: center;
    padding: 60px 20px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.workshop-banner h1 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 10px;
}

.workshop-banner p {
    font-size: 1.2rem;
    color: #666;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

.service-card {
    background-color: lightgray;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    width: 100%;
}

.service-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    width: 100%;
    height: 300px;
    padding: 10px;
    box-sizing: border-box;
}

.service-images img {
    flex: 0 0 auto;
    height: 100%;
    width: auto;
    object-fit: contain;
    scroll-snap-align: start;
    margin-right: 10px;
}

.service-images::after {
    content: '';
    flex: 0 0 10px;
}

.service-content {
    padding: 20px;
}

.service-content h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.workshop-description {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.workshop-description h2 {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.workshop-description p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.cta-section {
    text-align: center;
    padding: 60px 20px;
    background-color: #333;
    color: #fff;
    border-radius: 10px;
}

.cta-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #f0f0f0;
}

@media (max-width: 768px) {
    .workshop-banner h1 {
        font-size: 2rem;
    }

    .workshop-banner p {
        font-size: 1rem;
    }

    .service-images img {
        height: 200px;
    }

    .service-content h2 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .workshop-description h2 {
        font-size: 1.8rem;
    }

    .workshop-description p {
        font-size: 1rem;
    }

    .cta-section h2 {
        font-size: 1.8rem;
    }
}



/* ----------------- */
/* 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;
    }
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}


/*main styles*/

.about-section {
    padding: 50px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 800px;
    margin: 20px 0;
    background: rgba(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.section-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}


.text-content h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.6);
}

.text-content p {
    font-size: 1rem;
    color: #888;
    line-height: 1.6;
    margin-bottom: 10px;
}



/* 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%;
    }

}
