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

body {
  font-family: 'Outfit', sans-serif;
  background-color: var(--primary-bg, #0d1321);
  color: var(--text-main, #f0ebd8);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  background-color: rgba(13, 19, 33, 0.8);
  backdrop-filter: blur(10px);
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 19, 33, 0.98);
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

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

/* Hero Section */
.hero {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/banner1.jpg') no-repeat center center / cover;
  text-align: center;
  padding: 0 1rem;
  position: relative;
  box-shadow: inset 0 0 100px rgba(0,0,0,0.8);
}

.hero::after {
  content: '';
  position: absolute;
  top:0; left:0; width:100%; height:100%;
  background: linear-gradient(180deg, rgba(13,19,33,0.7) 0%, rgba(13,19,33,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-content h1 {
  font-size: 3.5rem;
  font-weight: 600;
  letter-spacing: 5px;
  color: var(--gold-accent, #c5a059);
  text-transform: uppercase;
  text-shadow: 0 0 20px rgba(197, 160, 89, 0.3);
}

/* Intro Section */
.intro-section {
  max-width: 900px;
  margin: 5rem auto 3rem;
  text-align: center;
  padding: 0 1rem;
}

.intro-section h2 {
  font-size: 2.8rem;
  margin-bottom: 1.5rem;
  color: var(--gold-accent);
  letter-spacing: 2px;
}

.intro-section p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--text-muted);
}

/* Discover Section */
.discover-section {
  max-width: 1100px;
  margin: 0 auto 6rem;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.discover-item {
  display: flex;
  align-items: center;
  gap: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.discover-item.left-photo img { order: 1; }
.discover-item.left-photo .text-content { order: 2; }
.discover-item.right-photo img { order: 2; }
.discover-item.right-photo .text-content { order: 1; }

.discover-item img {
  width: 55%;
  height: 600px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
  transition: transform 0.4s ease;
}

.discover-item img:hover {
  transform: scale(1.02);
}

/* Text content */
.text-content {
  width: 45%;
}

.text-content h3 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--gold-accent);
  font-family: 'Outfit', sans-serif;
}

.text-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
}

/* Responsive */
@media (max-width: 900px) {
  .discover-item {
    flex-direction: column;
    gap: 2rem;
  }

  .discover-item img,
  .text-content {
    width: 100%;
    height: auto;
    text-align: center;
  }

  .discover-item.right-photo .text-content,
  .discover-item.left-photo .text-content {
    order: 2 !important;
  }
  .discover-item.right-photo img,
  .discover-item.left-photo img {
    order: 1 !important;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
  }
}


/* Footer */










/* Responsive */
@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 2.2rem;
  }

}

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