/* 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;
}

#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;
}

/* 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 */
}

/*Page Container
.page-content {
    height: 100vh; /* or min-height: 100vh 
    cursor: default;
}*/

/*Grid Container*/
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    max-width: 100%;
}

@media only screen and (max-width: 768px) {
    .grid-container {
      grid-template-columns: 1fr;
    }
  }
  
.container-wrapper {
    width: 80%;
    margin: auto;
}
  
section {
    margin-top: 20px;
}
  
.content-scrollable {
    cursor: default;
    padding: 5px; /* add some spacing around the content */
    height: 600px; /* set a maximum height for the content */
    text-align: left;
    overflow-y: auto; /* enable vertical scrolling when content exceeds max height */
}
