
/* Reset some default styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body, html {
  height: 100%;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
  cursor: url('images/cursors/PIXEL_CLICK_CUSTOM_CURSOR.png'),auto;
}

/* Fullscreen hero section */
.hero {
  position: relative;
  height: 100vh;
  background: url('images/header/background.jpg') no-repeat center center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.0);
}

h1 {
  position: relative;
  color: white;
  font-size: 4rem;
  z-index: 1;
}

/* Menu styles */
.menu {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.menu-item {
  margin: 0 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: white;
}

.arrow {
  margin-left: 5px;
  display: inline-block;
  transition: transform 0.3s ease; /* Smooth rotation */
}

/* Section styles */
.section {
  display: none;
  padding: 50px;
  background-color: #f4f4f4;
  min-height: 100vh;
  background-color: black; /* Black background */
}

.section .column {
  width: 22%;
  display: inline-block;
  vertical-align: top;
  margin-right: 2%;
}

.section .column img {
  width: 100%;
  margin-bottom: 20px;
  transition: transform 0.3s;
}

.section .column img:hover {
  transform: scale(1.05);
  cursor: pointer;
}

/* Fullscreen modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.modal.open {
  display: flex;
}

.modal-content img {
  max-width: 80vw;  /* 90% of the viewport width */
  max-height: 80vh; /* 90% of the viewport height */
  width: auto;      /* Maintain the aspect ratio */
  height: auto;     /* Maintain the aspect ratio */
  object-fit: contain; /* Ensure the image scales properly inside the modal */
  padding-bottom: 5vh;
}

/* Media Queries for Responsiveness */
@media (max-width: 1200px) {
  h1 {
    font-size: 3rem; /* Slightly smaller for larger tablets */
  }
  
  .menu-item {
    font-size: 1.3rem; /* Slightly smaller font size */
  }
  
  .section .column {
    width: 30%; /* Wider columns for medium screens */
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem; /* Further decrease for small screens */
  }
  
  .menu-item {
    font-size: 1.2rem; /* Adjust menu item size */
    margin: 0 10px;    /* Less margin */
  }

  .section .column {
    width: 30%; /* Two columns on small screens */
    margin-right: 2%; /* Add some space between columns */
    margin-bottom: 20px; /* Add space between rows */
  }

  .section {
    padding: 20px; /* Reduce padding in sections */
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem; /* Smaller for very small screens */
  }
  
  .close-btn {
    font-size: 1.5rem; /* Smaller close button */
    right: 20px; /* Adjust position */
    top: 15px;
  }
}