﻿/* Global Styles */
body {
  font-family: "Times New Roman", Times, serif;
  margin: 10px;
  padding: 10px;
  background-color: #000000;
  color: #FFFFFF;
}

a {
  color: #FFFFFF;
  text-decoration: underline;
}

main {}

header {
  background-image: url('../images/bg_forest.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
}

h1 {
  text-align: center;
  font-family: "Times New Roman", Times, serif;
  color: #FFFFFF;
}

h3 {
  font-family: "Times New Roman", Times, serif;
  color: #FFFFFF;
}

img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-bottom: 20px;
}

/* Navigation Styles */
nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: space-between;
}

nav li {
  margin-right: 20px;
}

nav a {
  font-family: "Times New Roman", Times, serif;
  font-style: italic;
  font-weight: bold;
  font-size: 18pt;
}

nav a:hover {
  color: #ff7700;
  background-color: #333333;
  text-decoration: underline;
}

/* Hamburger Menu Styles */

/* Hide the checkbox completely */
#menu-toggle {
  display: none; /* Do not display the checkbox */
}

/* Style for the hamburger menu icon (the label) */
.menu-icon {
  display: none; /* Hide the icon initially, show it on mobile */
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1000;
  cursor: pointer;
}

/* The three lines in the hamburger icon */
.menu-icon span {
  display: block;
  width: 20px;
  height: 2px;
  background-color: #fff;
  margin-bottom: 5px;
}

/* On mobile devices, make the menu toggle visible */
@media (max-width: 768px) {
  .menu-icon {
    display: block; /* Show the hamburger icon on mobile */
  }

  nav ul {
    display: none; /* Hide the navigation menu by default */
    position: absolute;
    top: 60px;
    right: 0;
    background-color: #333;
    padding: 20px;
    border: 1px solid #ddd;
  }

  nav li {
    margin-bottom: 10px;
  }

  nav a {
    font-size: 14px;
  }

  /* When the checkbox is checked, show the navigation menu */
  #menu-toggle:checked + .menu-icon + ul {
    display: block;
  }
}

/* Grid Layout Styles */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.grid-item {
  width: 100%;
  height: 150px;
  overflow: hidden;
}

.grid-item img {
  width: 100px; 
  height: 100px; 
  object-fit: cover;
}

.thumbnail {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

/* Footer Styles */
footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 10px;
  text-align: center;
  clear: both;
  font-size: 8pt;
}

/* Responsive design for mobile screens */
@media (max-width: 768px) {
  .album-image {
  }
  .album-description {
  }
}
