/* 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;
}

/* 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;
}

/*Intro Section*/
.grid-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; /* Optional spacing between columns */
  }

  #about-section, #gallery-section, #video-section, #blog-section {
    margin-bottom: 100px;
  }
  
  .image-column, .text-column {
    background-size: cover;
  }
  
  .left-image-column {
    background-color: #33333300; /* Darken the background for video thumbnails */
    color: #fff; /* Lighten the text color */
  }
  
  .right-text-column {
    padding-right: 10px;
  }
  
  .video-thumbnails-column, .blog-poster-column {
    height: 100px;
    background-size: cover; /* Cover the entire background with an image */
  }
  
  .description-column {
    display: none;
  }
  
  @media (max-width: 768px) { /* Adjust for mobile devices */
    .grid-container {
      grid-template-columns: repeat(1, 100%);
    }
  }

