/* =========================
   GLOBAL RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

/* =========================
   NAVIGATION (FULL WIDTH)
========================= */

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #eee;
}


.logo {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  text-decoration: none;
  color: #000;
}

.logo span {
  color: #FF5733;
}

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-links a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  color: #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: 0.3s ease;
}

.nav-links a:hover {
  color: #FF5733;
}

/* =========================
   MOBILE MENU
========================= */

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {

  nav {
    padding: 16px 20px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 65px;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }

  .nav-links.active {
    display: flex;
  }
}

/* =========================
   BASIC FOOTER
========================= */

footer {
  padding: 40px 20px;
  text-align: center;
}
