/* ================================
   RESET & GLOBAL
================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, sans-serif;
  color: #111;
  background: #ffffff;
  line-height: 1.6;
  padding-top: 70px; /* navbar height */
}


/* ================================
   NAVBAR
================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  height: 70px;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(8px);
  z-index: 1000;
}



.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 15px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.logo img {
  height: 32px;
}

nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

nav a {
  color: #111;
  background: #e9edf5;
  padding: 8px 14px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.25s ease;
}

nav a:hover {
  background: #d9def0;
}

.nav-btn {
  background: #111;
  color: #fff !important;
  border-radius: 999px;
  padding: 8px 16px;
}

.nav-btn:hover {
  background: #000;
}


.nav-btn {
  border: 1px solid #ffffff;
  padding: 6px 12px;
  border-radius: 4px;
}

.brand-name {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  letter-spacing: 0.3px;
}


/* ================================
   FOOTER
================================ */
footer {
  background: #000;
  color: #aaa;
  text-align: center;
  padding: 20px;
  font-size: 13px;
}
header + section {
  margin-top: 0;
}
