* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Bodoni Moda', serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: white;
  color: black;
  font-family: 'Helvetica Neue', sans-serif;
}
/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  z-index: 1000;
}

.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.nav-left .nav-links,
.nav-right .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: opacity 0.3s ease;
}

.nav-links li a:hover {
  opacity: 0.6;
}

.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  color: black;
  font-family: 'Bodoni Moda', serif;
  transition: opacity 0.3s ease;
}
.logo:hover {
  opacity: 0.6;
}
/* Main content */
.main-content {
  flex: 1;
  padding: 120px 20px 100px;
  text-align: center;
}
.main-content h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.main-content p {
  font-size: 1.2rem;
  color: #666;
}

/* Footer*/










/* Responsive */
@media (max-width: 768px) {

}

/* --- Standard Footer --- */
.fog-footer {
  background: #080c16 !important;
  padding: 30px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  font-family: 'Bodoni Moda', serif;
  font-size: 14px;
  margin-top: auto;
  color: #f0ebd8;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
