/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
}

/* Header Styles */
header {
    background-image: url('../../IMAGES/header-background.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: left;
    padding: 4em 0;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1em;
    height: 0px;
}

.logo img {
    max-width: 100%;
    max-height: 100%;
}

/* Navigation Styles */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    background-color: #333;
}

nav ul li {
    margin: 0 1em;
    position: relative;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 1em;
    display: block;
}

nav ul li a:hover {
    color: #ffcc00;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: #333;
    min-width: 120px;
    z-index: 1;
}

.dropdown-content a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: #575757;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* Search Bar Styles */
nav form {
    display: inline;
}

nav input[type="text"] {
    padding: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
}

nav button {
    padding: 6px 10px;
    border-radius: 5px;
    border: none;
    background-color: #4CAF50; /* Green */
    color: white;
    cursor: pointer;
}

nav button:hover {
    background-color: #45a049; /* Darker green */
}

/* Main Content Styles */
main {
    padding: 20px;
    margin: 20px auto;
    background-color: white;
    border-radius: 8px;
    max-width: 1000px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

/* Product Grid Styles */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Responsive columns */
    gap: 20px; /* Gap between grid items */
    padding: 0;
}

.product {
    background-color: #fff;
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: left;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 10px;
}

.product p {
    margin: 10px 0;
    line-height: 1.6;
}

.product ul {
    padding-left: 20px;
    margin: 10px 0;
    list-style-type: disc;
}

.product ul li {
    margin-bottom: 5px;
}

.product a {
    color: white;
    text-decoration: none;
}

.product a:hover {
    text-decoration: underline;
}
/* Gallery Grid */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.image-gallery img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: transform 0.2s ease;
}
.image-gallery img:hover {
    transform: scale(1.05);
}

/* Modal Style */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}
.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}
.modal .close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: white;
    font-size: 2rem;
    text-decoration: none;
    cursor: pointer;
}


/* Download Button Styles */
.download-button {
    text-align: center;
    margin-top: 20px;
}

.download-button a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.download-button a:hover {
    background-color: #45a049;
}
.youtube-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #ff0000;
  color: white;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.2s ease-in-out;
}

.youtube-link:hover {
  background-color: #cc0000;
}

.youtube-icon {
  font-size: 14px;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    width: 100%;
}

/* Mobile Devices */
@media (max-width: 480px) {
    header {
        padding: 1em 0; /* Further reduce padding on smaller screens */
    }

    .logo img {
        max-width: 40%; /* Further reduce logo size for very small screens */
        max-height: 40%;
    }

    nav {
        padding: 0; /* Further reduce padding on very small screens */
    }

    nav ul {
        flex-direction: row; /* Align items horizontally */
        justify-content: center; /* Center items within the navigation */
        align-items: center; /* Align items vertically in the center */
        padding: 0;
        margin: 0;
        list-style: none; /* Remove bullet points */
    }

    nav ul li {
        margin: 0 0.5em; /* Space out menu items horizontally */
    }

    nav ul li a {
        padding: 0.8em; /* Adjust padding */
        font-size: 0.6em; /* Adjust font size for smaller screens */
        text-decoration: none;
    }
	.product {
	font-size: 10px;
}
h2 {
	font-size: 15px;
}
}

