body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: rgba(255, 255, 255, 0.8);
  overflow-x: hidden;

}

.background-wrapper {
  background-image: url("/photos/aidan.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;

}


.content-wrapper {
  background-color: black;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}



.content {
  width: 100%;
  margin: 40px 0;
  padding: 20px;
  background-color: rgb(0, 0, 62);
  border: 1px thin whitesmoke;
  border-radius: 12px;
  color: whitesmoke;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.content iframe {
  width: 100%;
  height: 360px;
  border: none;
  border-radius: 8px;
}

.navbar {
  background-image: url('photos/DSC00272.JPG');
  background-size: 125%;
  background-position: 70%;
  background-repeat: no-repeat;
  background-blend-mode: overlay;

}

.navbar-nav .nav-link {
  color: rgba(239, 13, 13, 0.8);
  font-weight: bold;
  font-size: 20px;
  transition: color 0.5s ease;
}

.navbar-nav .nav-link:hover {
  color: whitesmoke;
}

.navbar-nav .nav-item {
  margin-right: 40px;
}


.navbar-brand video {
  height: 120px;
  width: auto;
  margin-top: 0px;
  margin-bottom: 0px;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  background: no-repeat center center;
  background-size: 100% 100%;
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='rgba(239,13,13,0.8)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
  .navbar-collapse {
    text-align: right;
  }

  .navbar-nav {
    margin-left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    padding-right: 10px;
  }

  .navbar-nav .nav-item {
    margin-right: 0;

  }
}

.photo-grid img {
  width: 100%;
  max-height: 700px;
  object-fit: contain;
  object-position: center;
  background-color: #000;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
}