/* 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;
}
.ea-list {
  max-height: 600px;
  overflow-y: auto;
  padding: 10px;
  border: 1px solid #ccc;
}
.ea-list ul {
  list-style-type: none;
  padding: 0;
}
.ea-list li {
  padding: 4px 0;
  border-bottom: 1px solid #eee;
  font-family: monospace;
}

/* === Subscribe + Download Section === */
.subscribe-download {
  text-align: center;
  margin: 30px 0;
  font-family: Arial, sans-serif;
}

.info-message {
  font-size: 18px;
  margin-bottom: 15px;
  color: #333;
}

.subscribe-btn,
.download-btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 16px;
  text-decoration: none;
  transition: opacity 0.5s, background-color 0.5s;
}

.subscribe-btn {
  background-color: #FF0000;
  color: white;
}

.download-btn {
  display: none;
  background-color: gray;
  color: white;
  pointer-events: none;
  opacity: 0;
}

/* 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;
}
#scrollBtn {
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 1000;
  background-color: #444;
  color: white;
  border: none;
  outline: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0,0,0,0.3);
  transition: background-color 0.3s, transform 0.3s;
}

#scrollBtn:hover {
  background-color: #ccc;
  transform: translateY(-3px);
}

/* 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: 12px;
}
.ea-list li {
  font-size: 8px;
}
.info-message {
  font-size: 14px;
}
.subscribe-btn,
.download-btn {
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: bold;
  font-size: 12px;
  text-decoration: none;
  transition: opacity 0.5s, background-color 0.5s;
}
#scrollBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;

  width: 30px;
  height: 30px;
  font-size: 10px;

}
}

