.logo {
  position: fixed;
  top: 20px;
  left: 30px; /* Center over the main navigation area (160px - 100px logo = 60px, divided by 2 = 30px) */
  width: 100px;
  height: auto;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
  transition: transform 0.3s ease;
  z-index: 1001;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  position: relative;
  z-index: 2;
  top: 0;
  left: 0;
  transform: none;
}

.container h1 {
  font-family: "Pacifico", cursive;
  font-size: 3rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.coming-soon-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(300px, 1fr));
  gap: 4rem;
  max-width: 1400px;
  margin: 4rem auto;
  padding: 0 4rem;
}

.coming-soon-button {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 3rem;
  color: #fff;
  font-family: "Comfortaa", cursive;
  font-size: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  height: 100%;
  word-wrap: break-word;
  white-space: normal;
  line-height: 1.4;
  box-sizing: border-box;
  width: 100%;
  gap: 1rem;
}

.coming-soon-button i {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.coming-soon-button:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.info-coming-soon {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 15px;
  padding: 3rem;
  color: #fff;
  font-family: "Comfortaa", cursive;
  font-size: 2rem;
  text-align: center;
  max-width: 600px;
  margin: 2rem auto;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.section-title {
  font-family: "Pacifico", cursive;
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  text-align: left;
  margin: 3rem 0 2rem;
  padding: 1rem;
  position: relative;
  z-index: 2;
  margin-left: 170px;
}

.art-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto 4rem;
}

.art-piece {
  position: relative;
  width: 300px;
  height: 300px;
  margin: 20px;
  border-radius: 15px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.art-piece img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.art-piece:hover img {
  transform: scale(1.05);
}

.art-piece .story-title {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 10px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  font-family: "Quicksand", sans-serif;
  font-size: 1.1em;
}

.art-piece:hover .story-title {
  transform: translateY(0);
}

.art-piece .placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  font-family: "Quicksand", sans-serif;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
  transition: opacity 0.3s ease;
  gap: 10px;
}

.art-piece .placeholder i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.art-piece:hover .placeholder {
  opacity: 0;
}

.art-piece .story-link {
  display: none; /* Hide the link placeholders */
}

.art-story-popup {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  padding: 1.5rem;
  color: white;
  font-family: "Quicksand", sans-serif;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.art-piece:hover .art-story-popup {
  opacity: 1;
}

.art-story-popup h2 {
  font-family: "Pacifico", cursive;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: white;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.7);
  text-align: center;
}

.art-story-popup p {
  font-size: 1rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
}

.popup-overlay {
  display: none;
}

.nav-sidebar {
  position: fixed;
  top: 140px;
  left: 0;
  height: calc(100vh - 140px);
  width: 160px;
  background: none;
  backdrop-filter: none;
  border-right: none;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease;
  z-index: 1000;
}

.nav-sidebar a {
  color: white;
  text-decoration: none;
  padding: 0.8rem 1.5rem;
  font-family: "Quicksand", sans-serif;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-sidebar a i {
  width: 20px;
  text-align: center;
  font-size: 1.1em;
}

.nav-sidebar a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.collapse-button {
  position: absolute;
  top: 1rem;
  right: -2.5rem;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  line-height: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}

.nav-sidebar.collapsed .collapse-button {
  opacity: 0;
  pointer-events: none;
}

.sidebar-toggle {
  position: fixed;
  top: 140px;
  left: 1rem;
  color: white;
  cursor: pointer;
  font-size: 1.5rem;
  padding: 0.5rem;
  z-index: 1002;
  display: none;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-sidebar.collapsed ~ .sidebar-toggle {
  display: flex;
}

/* Remove all other styles */
