* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Bebas Neue', Arial, sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  display: flex;
  background-color: #fff;
  align-items: flex-start;
}

.main-content {
  position: relative;
  left: 0;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  min-height: 100vh;
}

.main-content.active {
  left: 50%;
}

/* Mobile Logo */
.mobile-logo {
  display: none;
  background-color: #fff;
  padding: 5px 0 10px 20px;
  width: 100%;
  z-index: 998;
}

.main-content.active .mobile-logo {
  display: none;
}

.mobile-logo h1 {
  color: teal;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
  margin: 0;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  font-size: 2rem;
  padding: 15px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 0;
  z-index: 1000;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: -50%;
  width: 50%;
  height: 100%;
  background: #fff;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  z-index: 999;
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding-top: 20px;
}

.mobile-menu.active {
  display: flex;
  left: 0;
}

.mobile-menu-logo {
  padding: 20px 0 20px 20px;
  width: 100%;
}

.mobile-menu-logo h1 {
  color: teal;
  font-weight: bold;
  font-size: 1.5rem;
  text-align: left;
  margin: 0;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.close-mobile-menu {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 2rem;
  cursor: pointer;
  color: #333;
  padding: 10px;
}

.mobile-menu ul {
  list-style: none;
  text-align: center;
  margin-top: 20px;
  width: 100%;
}

.mobile-menu ul li {
  margin: 15px 0;
  list-style-type: none;
}

.mobile-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.7rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.mobile-menu .social-icons {
  margin-top: 10px;
  width: 100%;
  text-align: center;
}

.mobile-menu .social-icons a {
  margin: 0 10px;
  color: #333;
  font-size: 1.4rem;
}

/* Sidebar Styles */
.sidebar {
  width: 250px;
  background-color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100vh;
  position: fixed;
  top: 20px;
}

.logo h1 {
  color: teal;
  font-weight: bold;
  font-size: 2.5rem;
  margin: 0;
  padding-bottom: 20px;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.nav-menu {
  margin-top: 5px;
  flex-grow: 1;
}

.nav-menu ul {
  list-style: none;
  padding: 10px 0;
}

.nav-menu ul li {
  margin: 8px 0;
}

.nav-menu ul li a {
  text-decoration: none;
  color: #333;
  font-size: 1.4rem;
  font-family: 'Bebas Neue', Arial, sans-serif;
}

.social-icons {
  margin-top: 30px;
  padding: 10px 0;
}

.social-icons a {
  margin: 0 10px;
  color: #333;
  font-size: 1.4rem;
}

/* Gallery Styles */
.gallery {
  flex-grow: 1;
  padding: 20px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  margin-left: 250px;
}

.section-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
  color: #333;
}

.section-content h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

.section-content p {
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.section-content ul {
  list-style: none;
  padding: 0;
  font-size: 20px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.section-content ul li {
  margin: 10px 0;
}

/* About Image Styles */
.about-image-wrapper {
  position: relative;
  max-width: 300px;
  margin: 0 auto 20px;
}

.about-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
  max-width: 1200px;
  width: 100%;
}

.gallery-row {
  display: grid;
  gap: 15px;
  margin-bottom: 15px;
}

.gallery-row.col-1 {
  grid-template-columns: 1fr;
}

.gallery-row.col-2 {
  grid-template-columns: repeat(2, 1fr);
}

.gallery-row.col-3 {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-row.col-4 {
  grid-template-columns: repeat(4, 1fr);
}

.image-wrapper {
  position: relative;
}

.gallery-grid img {
  width: 100%;
  height: auto;
  object-fit: cover;
  cursor: pointer;
}

.magnifier {
  display: none;
  position: absolute;
  top: 10px;
  right: 10px;
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 10px;
  border-radius: 50%;
}

.image-wrapper:hover .magnifier,
.about-image-wrapper:hover .magnifier {
  display: block;
}

/* Fullscreen Viewer */
.fullscreen-viewer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.fullscreen-image {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border: 10px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
}

.close-viewer,
.prev,
.next {
  position: absolute;
  color: #333;
  font-size: 2.5rem;
  cursor: pointer;
  user-select: none;
  padding: 20px;
  z-index: 1001;
}

.close-viewer {
  top: 20px;
  right: 20px;
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

.fullscreen-viewer:hover .prev,
.fullscreen-viewer:hover .next {
  opacity: 1;
  animation: none;
}

/* Section Styles */
.section {
  display: none;
}

.section.active {
  display: block;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding-top: 40px;
    align-items: stretch;
  }

  .sidebar {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .mobile-logo {
    display: block;
  }

  .main-content {
    left: 0;
    padding-top: 0;
    min-height: auto;
  }

  .gallery {
    margin-top: 0;
    padding: 20px;
    margin-left: 0;
  }

  .gallery-grid {
    display: block;
  }

  .about-image-wrapper {
    max-width: 100%;
  }
}

@media (min-width: 769px) {
  .container {
    flex-direction: row;
    padding-top: 0;
  }

  .gallery {
    margin-top: -20px;
  }

  .mobile-logo {
    display: none;
  }

  .hamburger {
    display: none;
  }

  .mobile-menu {
    display: none;
  }
}