/* lowkey fat fingered the w so here we are with sylew  */

body{
    background-color: #375A77;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
}

.about {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
    margin: 20px;
    color: #EFF9FF;
}

.aboutbg{
  background-image: url('./images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%; /* Full width of the page no matter how you view it, this one simple line just changed the game */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.nav-links {
    background-color: #6FA9C8;
    padding: 0px;
    margin: 0px;
    overflow: hidden;
    list-style-type: none;
}

ul.nav-links li {
    float: left;
}

.topnav-right {
  float: right;
}

.navbar{
    position: static;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    justify-content: space-between;
}

.navbar-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    justify-content: space-between;
}

ul.nav-links li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

ul.nav-links li a:hover {
  background-color: #111111;
}

.content{
    background-color: rgba(0, 0, 0, 0.4);
    padding: 30px;
    border-radius: 15px;
}

.hero {
    background-image: url('./images/background1.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    min-height: 100vh;
    width: 100%; /* Full width of the page no matter how you view it, this one simple line just changed the game */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.content h1 {
    color: #EFF9FF;
    font-size: 48px;
    margin-bottom: 20px;
}

p1{
    color: #EFF9FF;
    font-size: 24px;
    margin-bottom: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
}

.gallery img {
    width: 100%;
    height: 200px;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.gallery img:hover {
    transform: scale(1.05);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 24px;
}

.lightbox.open { display: flex; }

.lightbox img {
  max-width: 95vw;
  max-height: 90vh;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,.6);
  cursor: zoom-out;
}

.lightbox .caption {
  margin-top: 10px;
  color: #eee;
  text-align: center;
  font-size: 14px;
}

.lightbox .prev,
.lightbox .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 50px;
  font-weight: bold;
  cursor: pointer;
  user-select: none;
  padding: 10px;
  z-index: 2001;
  opacity: 0.4;
  transition: opacity 0.3s ease, color 0.3s ease;
}

.lightbox .prev,
.lightbox .next {
  opacity: 1;
}

.lightbox .prev:hover,
.lightbox .next:hover {
  color: #6FA9C8;
}

.lightbox .prev {
  left: 20px;
}

.lightbox .next {
  right: 20px;
}

.lightbox .close {
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 40px;
  color: white;
  cursor: pointer;
  z-index: 2001;
  transition: color 0.3s ease;
}

.lightbox .close:hover {
  color: #6FA9C8;
}
