@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;700&family=Inter:wght@400;600&display=swap');
body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  overflow-x: hidden;
}
.under-construction .hero-section {
  height: 100vh;
  background: url('../images/container4.jpg') center center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  animation: zoomIn 20s ease-in-out infinite alternate;
}
.overlay {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  padding: 3em 4em;
  border-radius: 15px;
  text-align: center;
  animation: fadeIn 2s ease forwards;
  opacity: 0;
}
.fancy-title {
  font-family: 'Playfair Display', serif;
  font-size: 3em;
  letter-spacing: 0.05em;
  color: #fff;
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8em 2em;
  z-index: 1000;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 0.8em;
}
.logo {
  height: 32px;
  width: auto;
}
.name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1em;
  text-transform: uppercase;
  color: #fff;
}
.main-nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 1.2em;
  font-size: 0.9em;
  transition: color 0.3s ease;
  text-transform: uppercase;
}
.main-nav a:hover {
  color: #ffcc00;
}
#modeToggle {
  margin-left: 1.2em;
  font-size: 1em;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
@keyframes fadeIn {
  to { opacity: 1; }
}
@keyframes zoomIn {
  0% { transform: scale(1); }
  100% { transform: scale(1.03); }
}
@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .main-nav {
    margin-top: 0.5em;
    flex-wrap: wrap;
  }
}
