/*  The body Section */
body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

#section-title {
    color: #E43D30;
    font-size: 2rem;
    margin-bottom: 5px;
}

/* The Header */
header {
    background-color: #ffffff;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    max-height: 50px;
    margin-left: 10vh;
}

.navbar {
    display: flex;
    align-items: center;
    font-size: 0.8em;
}

.navbar ul {
    list-style: none;
    padding: 0;
    margin-right: 10vh;
    display: flex;
}

.navbar li {
    margin-right: 25px; /* Adjust the spacing between navigation items */
}

.navbar a {
    text-decoration: none;
    color: #828282; 
    transition: color 0.3s ease; /* Smooth transition for color change */
}

.navbar a:hover {
    color: #000000; 
}

/* Hero Section */
.hero {
    background: url('../res/DSC_0020.JPG');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center; /* Center the background image */
    color: #ffffff; /* White text color for paragraphs */
    padding: 30px 20px 300px 20px;
    text-align: center;
}

.hero-content {
    display: flex;
    justify-content: space-between;
    max-width: 100%;
    margin: 0 auto;
}

/* .image-container img {
    max-width: 100%;
    margin: 30px 10px;
} */

.text-container {
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.4); /* Adjust the alpha value as needed */
    color: #000000;
    border-radius: 25px;
    max-width: 60%;
    margin: 0 auto;
}

.text-container p{
    text-align: center;
}
h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #E43D30;
}

.slogan {
    font-size: 0.9rem;
    font-weight: lighter;
    text-align: center;
    color: #000000;
}

.description {
    font-size: 1rem;
    margin-bottom: 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #000000; /* Black text color for the button */
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 10px;
    font-size: 0.8rem;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover{
    background-color: #E43D30;
    color: white;
}

/* About Section */
#about {
    background-color: #ffffff;
    padding: 50px 0px;
}

#about-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: auto;
}

#about-image {
    max-width: 70%;
}
#about-image img {
    width: 90%;
    padding: 20px;
}

#about-text {
    max-width: 600px;
    text-align: left;
}

#about-text h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

#about-text p {
    font-size: 1rem;
    margin-bottom: 20px;
}

#about-button{
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #00A7FF;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.8rem;
}
#additional-text {
    display: none;
}
#details-product1{
    display: none;
}
#details-product2{
    display: none;
}
#details-product3{
    display: none;
}
#about-button:hover {
    background-color: #00A7FF;
    color: #ffffff;
}

#less-button {
    display: none;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #00A7FF;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 0.8rem;
}

#less-button:hover {
    background-color: #00A7FF;
    color: #ffffff;
}

#less-button-p {
    display: none;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #00A7FF;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 0.8rem;
}

#about-button-p{
    display: inline-block;
    background-color: #ffffff;
    color: #000000;
    border: 2px solid #00A7FF;
    border-radius: 10px;
    padding: 10px 20px;
    margin-bottom: 30px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 0.8rem;
}

#less-button-p:hover, #about-button-p:hover {
    background-color: #00A7FF;
    color: #ffffff;
}


/* Floating Div Section */

#floating-div {
    background-color: #00A7FF;
    text-align: center;
    border-radius: 30px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    width: 80%;
    margin: 20px auto -40px auto;
}

.floating-item {
    flex: 1;
    display: flex;
    flex-direction: row;
    width: 25%; /* Adjust the width as needed */
    margin: 0 10px;
    text-align: center;
}

.floating-item img {
    flex: 1;
    width: 40px; /* Adjust the image size as needed */
    display: block;
}

.floating-item p {
    flex: 4;
    text-align: center;
    color: #ffffff;
    font-size: 0.9rem;
    text-align: start;
    padding-left: 10px;
} 

/* Our Products Section */
#Products {
    background-color: rgba(0, 167, 255, 0.25); /* Background color with opacity */
    padding: 35px 20px;
    text-align: center;
}

#products-paragraph {
    color: #000000;
    font-size: 1rem;
    margin-bottom: 30px;
}

.product-card {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light drop shadow */
    border-radius: 20px;
    padding: 10px;
    margin: 0 10px 20px 0;
    display: inline-block;
    width: 25%; /* Adjust the width as needed */
    text-align: center;
}

.product-card img {
    width: 50%;
}

.product-card h3 {
    color: #333333;
    font-size: 1.1rem;
    margin-top: 10px;
}

.product-card p {
    color: #666666;
    font-size: 0.7rem;
    margin-top: 5px;
}

/* Composition Section */
#composition-section {
    background-image: url(../res/DSC_0078.JPG);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-color: #ffffff;
    text-align: center;
    padding: 25px 20px;
}

#composition-text {
    color: #000000;
    font-weight: bold;
    font-size: 1rem;
    margin-bottom: 10px;
}

.composition-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light drop shadow */
    border-radius: 20px;
    padding: 20px;
    margin: 0 auto;
    max-width: 600px; /* Adjust the max-width as needed */
    background-color: rgb(255,255,255,0.4);
}

.composition-images {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}

.composition-images img {
    width: 35%; /* Adjust the width as needed */
}

.composition-text {
    font-size: 0.9rem;
    margin-top: 10px;
    font-weight: bold;
}


/* Video Section */
#video-section {
    background-color: #00A7FF;
    text-align: center;
    padding: 50px 20px;
}

#video-container {
    max-width: 800px;
    margin: 0 auto;
}


/* Gallery Section */
#gallery-section {
    background-color: #ffffff;
    text-align: center;
    padding: 40px 20px;
}

.gallery-card {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Light drop shadow */
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
    max-width: 800px; /* Adjust the max-width as needed */
}

.gallery-images {
    display: flex;
    overflow-x: auto; /* Enable horizontal scrolling */
    margin-top: 15px;
}

.gallery-images img {
    width: 300px; /* Set a fixed width for each image */
    height: 200px;
    margin-right: 10px; /* Adjust spacing between images as needed */
    border-radius: 20px; /* Add border-radius for rounded corners */
}

.gallery-images img:last-child {
    margin-right: 0; /* Remove margin for the last image to prevent extra spacing */
}


/* The Footer Section */
i{
    margin-right: 10px;
}
footer {
    background-color: #00A7FF;
    color: #ffffff; /* White text color */
    padding: 30px 0;
    display: flex;
    flex-direction: column; /* Stack columns vertically */
    align-items: center; /* Align content horizontally centered */
    min-height: 10vh; /* Set minimum height to full viewport height */
}

footer a{
    text-decoration: none;
    color: white;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    width: 80%;
}

.footer-column {
    text-align: left;
    margin-bottom: 20px; /* Add space between columns */
}

.footer-column p {
    margin: 5px 0;
    padding: 4px 3px 5px 4px;

}

.contact{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin:20px;
}

.logo_footer img {
    width: 150px; /* Set your desired width */
    height: 120px; /* Set your desired height */
}

.info {
    display: inline-block;
    text-align: left;
}

.footer-column.social-media {
    max-width: 45%; /* Each column takes up to 45% width */
    text-align: center;
}

.social-icons a {
    display: inline-block;
    text-decoration: none;
    margin: 0 10px;
}

.social-icons img {
    max-width: 35px;
    height: auto;
}

.copyright {
    border-top: 0.8px solid white;
    width: 500px;
    text-align: center;
    margin-top: 0px auto; /* Push the copyright to the bottom of the container */
}

/* Small screens */
@media only screen and (max-width: 800px) {
    body {
        font-size: 0.65rem; /* Adjust font size for smaller screens */
    }

    header {
        padding: 5px;
    }

    .navbar {
        margin-right: 5%;
    }

    .navbar ul {
        flex-direction: row;
        justify-content: space-between;
    }

    .navbar li {
        margin-right: 0;
        margin-bottom: 10px;
        margin-right: 5px;
    }

    .hero {
        padding: 20px 10px 120px 10px;
    }

    .text-container {
        max-width: 80%;
        margin: 0 auto;
    }

    h1 {
        font-size: 1.4rem;
    }

    .slogan {
        font-size: 0.7rem;
    }

    .description {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    .cta-button {
        font-size: 0.6rem;
        padding: 8px 15px;
    }

    #about-content {
        flex-direction: column-reverse;
    }

    #about-image img {
        width: 100%;
    }

    #about-text {
        max-width: 100%;
        text-align: center;
    }

    #about-text h2 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    #about-text p {
        font-size: 0.7rem;
        margin-bottom: 15px;
    }

    #additional-text {
        display: none;
    }

    #about-button,
    #less-button {
        font-size: 0.7rem;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    #floating-div {
        flex-direction: row;
        padding: 8px;
        width: 80%;
        margin: 20px auto -30px auto;
    }

    .floating-item {
        width: 50%;
        margin-bottom: 10px;
    }

    .floating-item img {
        width: 35%;
    }

    .floating-item p {
        font-size: 0.6rem;
    }

    #Products {
        padding: 15px 10px;
    }

    .product-card {
        width: 50%;
        margin: 0 0 20px 0;
    }

    .product-card img {
        width: 70%;
    }

    .product-card h3 {
        font-size: 1rem;
        margin-top: 5px;
    }

    .product-card p {
        font-size: 0.7rem;
        margin-top: 5px;
    }

    #composition-section {
        padding: 20px 10px;
    }

    .composition-card {
        max-width: 80%;
    }

    .composition-images img {
        width: 45%;
    }

    .composition-text {
        font-size: 0.7rem;
        margin-top: 10px;
    }

    #video-section {
        padding: 30px 10px;
    }

    #gallery-section {
        padding: 30px 10px;
    }

    .gallery-card {
        max-width: 100%;
    }

    .gallery-images img {
        width: 50%;
    }

    footer {
        padding: 20px 0;
    }

    .footer-column.contact {
        margin-bottom: 10px;
    }

    .logo img {
        width: 60px;
        height: 40px;
    }

    .info {
        text-align: start;
    }

    .footer-column.social-media {
        max-width: 70%;
    }

    .social-icons a {
        margin: 0 8px;
    }

    .social-icons img {
        max-width: 20px;
    }

    .copyright {
        width: 80%;
    }
}


/* the events section */

#events_section{
    text-align: center;
    margin-bottom: 20px;
}
.event-container {
    max-width: 70%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
  }
  
  .event-details {
    width: 65%;
    padding: 20px;
  }
  
  .event-gallery {
    width: 35%;
    height: 380px;
    background-color: #f2f2f2;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  
  