
/* Reset and base styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #ffffff;
  max-width: 1600px;
  margin: 0 auto;
}

/* Sidebar styles */
.sidebar {
  position: fixed;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 300px;
  height: 800px;
  max-height: 95vh;
  background-color: #ffffff;
  z-index: 3;
  padding-top: 20px;
  padding-bottom: 20px;
  text-align: center;
  font-weight: bold;
  overflow-y: auto;
  transition: left 0.3s ease;
  animation: sidebarSlideIn 0.7s ease-out forwards;
}

.sidebar h3 {
  padding: 64px 16px;
  margin: 0;
  color: #f58986;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 2px;
}

.sidebar a {
  display: block;
  padding: 16px;
  text-decoration: none;
  color: #666;
  border-bottom: 0px solid #f1f1f1;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.sidebar a:hover {
  background-color: transparent;
  color: #000;
}

.sidebar .close-btn {
  display: none;
   color: #678d3c;
  font-family: 'Arial', sans-serif;
  font-weight: bold;
  font-size: 15px;
}

/* Top menu for small screens */
.top-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: white;
  padding: 16px;
  z-index: 4;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.top-menu .menu-title {
  font-size: 18px;
  font-weight: bold;
  font-family: 'Arial', sans-serif;
  color: #f58986;
}

.top-menu .menu-toggle {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #333;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger icon */
.hamburger-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 24px;
  height: 18px;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Overlay for mobile */
.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.5);
  z-index: 2;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.overlay.active {
  opacity: 1;
}

/* Main content */
.main-content {
  margin-left: 300px;
  transition: margin-left 0.3s ease;
}

/* Responsive styles */
@media screen and (max-width: 992px) {
  .sidebar {
    left: -300px;
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .sidebar .close-btn {
    display: block;
  }
  
  .top-menu {
    display: block;
  }
  
  .main-content {
    margin-left: 0;
    margin-top: 60px;
  }
  
  .overlay {
    display: block;
  }
}

/* Photo grid styles */
.photo-grid {
  display: flex;
  flex-wrap: wrap;
}

.photo-third {
  width: 33.333%;
  padding: 0;
}

.photo-third img {
  width: 100%;
  margin-bottom: -6px;
  opacity: 0.8;
  cursor: pointer;
  display: block;
  transition: opacity 0.3s ease;
}

.photo-third img:hover {
  opacity: 1;
}

@media screen and (max-width: 992px) {
  .photo-third {
    width: 50%;
  }
}

@media screen and (max-width: 600px) {
  .photo-third {
    width: 100%;
  }
}

/* Main image container */
.main-image-container {
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

/* Modal styles */
.modal {
  display: none;
  position: fixed;
  z-index: 5;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  padding-top: 0;
  cursor: pointer;
}

.modal-content {
  position: relative;
  margin: auto;
  padding: 64px;
  width: 90%;
  max-width: 1200px;
  text-align: center;
  animation: zoom 0.6s;
}

@keyframes zoom {
  from {transform: scale(0)}
  to {transform: scale(1)}
}

.modal-content img {
  width: 100%;
  max-width: 1000px;
}

.modal-content p {
  color: white;
  margin-top: 20px;
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  z-index: 6;
}

.modal-close:hover {
  color: #999;
}

/* Additional utility classes */
.text-center {
  text-align: center;
}

.padding-32 {
  padding: 32px;
}

.dark-grey {
  background-color: #616161;
  color: #f1f1f1;
}

.light-grey {
  background-color: #f1f1f1;
}

* {
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.slideshow-container {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.mySlides {
  display: none;
  width: 100%;
}

.mySlides img {
  width: 100%;
  vertical-align: middle;
}

/* Navigation arrows */
.prev, .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  width: auto;
  padding: 16px;
  margin-top: -22px;
  color: white;
  font-weight: bold;
  font-size: 18px;
  transition: 0.6s ease;
  border-radius: 0 3px 3px 0;
  user-select: none;
}

.prev {
  left: 0;
}

.next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.prev:hover, .next:hover {
  background-color: transparent(0,0,0,0.3);
}

/* Indicators container */
.indicators-container {
  position: absolute;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.indicators-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

/* Badge indicators */
.badge {
  cursor: pointer;
  height: 13px;
  width: 13px;
  padding: 0;
  background-color: transparent;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: inline-block;
  transition: background-color 0.3s ease, border-color 0.3s ease;
}

.badge:hover {
  background-color: white;
  border-color: white;
}

.badge.active {
  background-color: white;
  border-color: white;
}

/* Fade animation */
.fade {
  animation-name: fade;
  animation-duration: 1.5s;
}

@keyframes fade {
  from {opacity: .4}
  to {opacity: 1}
}

@keyframes sidebarSlideIn {
  from {
    transform: translate(-320px, -50%);
    opacity: 0;
  }
  to {
    transform: translateY(-50%);
    opacity: 1;
  }
}

.main-image-container {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
}
