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

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

.navbar:hover .logo,
.navbar:hover .nav-links li a {
  color: black;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  max-width: 1200px;
  margin: auto;
  position: relative;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.logo {
  font-size: 1.5rem;
  letter-spacing: 2px;
  font-family: 'Bodoni Moda', serif;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
;
}
.logo:hover {
  opacity: 0.6;
}
.nav-right .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-left .nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.nav-links li a {
  text-decoration: none;
  color: white;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease, opacity 0.3s ease;
  
}
.nav-links li a:hover {
  opacity: 0.6;
}
.navbar.scrolled {
  background-color: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .logo,
.navbar.scrolled .nav-links li a {
  color: black;
}
.navbar.scrolled .logo-img {
  filter: brightness(0);
}
.discover-btn {
  display: inline-block;
  margin-top: 2rem;
  padding: 0.6rem 2rem;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  font-family: 'Bodoni Moda', serif;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.discover-btn:hover {
  background-color: white;
  color: black;
}
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/banner1.jpg') no-repeat center center / cover;
  text-align: center;
  padding: 0 1rem;
  flex-direction: column;
}
.hero-content h1 {
  font-size: 4rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-top: 150px;
}
.zero {
  padding: 60px 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.zero-container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  padding: 0;
}
.zero-big {
  max-width: 50%;
}
.zero-big img {
  width: 100%;
  height: 800px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.zero-big img:hover {
  transform: scale(1.05);
}
.zero-right {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.right-images {
  display: flex;
  gap: 20px;
}
.right-images img {
  width: 60%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.right-images img:hover {
  transform: scale(1.05);
}
.right-text h3 {
  font-weight: 400;
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: #111;
}
.right-text p {
  font-weight: 300;
  font-size: 1rem;
  color: #555;
  line-height: 1.5;
  margin-bottom: 8px;
}
/* Responsive */
@media (max-width: 900px) {
  .zero-container {
    flex-direction: column;
    align-items: center;
  }
  .zero-big, .zero-right {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .zero-big img {
    height: 600px;
  }
  .right-images img {
    width: 100%;
    height: 500px;
  }
  .right-images {
    flex-direction: column;
  }
}
/* Landscape Banner Section */
.landscape-banner {
  position: relative;
  width: 100%;
  height: 700px;
  background: url('images/banner2.jpg') no-repeat center center / cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.landscape-overlay {
  color: white;
  text-align: center;
  padding: 2rem;
  border-radius: 8px;
}

.landscape-overlay h2 {
  font-size: 4rem;
  margin-bottom: 1rem;
  font-family: 'Bodoni Moda', serif;
  letter-spacing: 1px;
  margin-top: 200px;
}

.shop-btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  border: 1px solid white;
  background-color: transparent;
  color: white;
  font-family: 'Bodoni Moda', serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.shop-btn:hover {
  background-color: white;
  color: black;
}

/* Footer */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content, .zero-container, .landscape-overlay {
  animation: fadeInUp 1s ease both;
}
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .hero-content p {
    font-size: 1rem;
  }
}

/* --- 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%;
}
