/* General styles */
body {
    font-family: 'Arial', Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #000000;
    color: #aaaaaa;
}

header {
    background-color: #000000;
    color: #333;
    text-align: center;
    padding: 1em 0;
}

nav ul {
    list-style-type: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

a {
    text-decoration: none;
    color: #333;
}

main {
    padding: 20px;
}

.hero, .gallery, .video-gallery {
    text-align: center;
    margin-bottom: 40px;
}

img, iframe {
    max-width: 100%;
    height: auto;
}

/*Gallery Page
/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}

/* Modal Content (image) 
.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
}*/

#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc; /* Grey color */
    padding: 10px 0;
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Content area, pushes the footer down */
.main-container {
    flex: 1; /* Takes up remaining space */
    padding: 20px; /* Padding around content for better visual separation */
}

/* Footer Styling */
.page-footer {
    position: fixed; /* Fix it at the bottom */
    width: 100%; /* Full width */
    background-color: #747474; /* Optional: Background color for footer */
    color:#f1f1f1;
    text-align: center; /* Center align text */
    padding: 10px 0; /* Padding inside the footer */
    bottom: 0; /* Position it at the absolute bottom */
    left: 0;
    right: 0;
}

/* Video Page
/* Modal content styles */
.modal video {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    padding-top: 20px;
}

#fullScreenVideo {
    width: 90%;
    height: 90%;
    margin: auto;
    display: block;
}

/*.close {
    color: #fff;
    position: absolute;
    top: 15px; right: 35px;
    font-size: 40px;
    cursor: pointer;
}*/

/* Card styles */
.card { 
    cursor: pointer; 
    text-align: center; /* Center the content horizontally */
}
.card img { 
    width: 90%; 
    height: auto; 
}

/* Video Buttons*/
button {
    background-color: #4d4d4d00; /* Standard gray button background */
    border: none; /* Removes the default border */
    color: rgb(141, 141, 141); /* Text color */
    padding: 15px 20px; /* Some padding */
    text-align: center; /* Centering text */
    text-decoration: none; /* Removing underline from links (if any) */
    display: inline-block; /* Makes the button a block element, but still in line with others */
    font-size: 16px; /* Adjust font size as needed */
    margin: 4px 2px; /* Some space around buttons */
    transition: background-color 0.3s ease, transform 0.3s ease; /* Smooth transitions for hover effects and resizing on mobile */
    border-radius: 12px; /* Rounds the edges of the buttons */
}

button:hover {
    background-color: #555; /* Darker gray color when hovering over the button */
    color: rgb(255, 255, 255); /* Changes text color on hover to contrast with the darker background */
    transform: scale(1.05); /* Slightly enlarges the button when hovered for a more interactive feel */
}
/*buttons Mobile*/
.category-buttons {
    display: flex;
    justify-content: space-between; /* Keep the buttons spaced out horizontally */
  }
  
  .filter-button {
    padding: 8px;
    margin: 4px;
    border-radius: 4px;
    width: fit-content; /* Allow the button to take up its natural width and scale down as needed */
  }
  
  /* Mobile-friendly styles (max-width: 768px) */
  @media only screen and (max-width: 768px) {
    .category-buttons {
      flex-direction: column;
      align-items: center;
    }
  }