:root {
  --accent: #ff5c39;
  --dark: #0f0f0f;
  --light: #ffffff;
  --gray: #f5f5f5;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background-color: var(--light);
  color: var(--dark);
}

/* NAVIGATION */

.navbar {
  position: fixed;
  width: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(8px);
  padding: 15px 0;
  z-index: 1000;
}

.nav-container {
  width: 90%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 55px;
  width: auto;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
  color: var(--accent);
}

/* HERO SECTION */

.hero {
  height: 100vh;
  background: url("assets/hero.png") center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

.hero-content {
  position: relative;
  color: white;
  max-width: 700px;
}

.hero h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
}

.btn-primary {
  background-color: var(--accent);
  color: white;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.btn-primary:hover {
  opacity: 0.85;
}

/* CONTENT SECTIONS */

.section {
  padding: 100px 20px;
  text-align: center;
}

.page {
  padding-top: 150px;
}

.section h2 {
  margin-bottom: 20px;
}

.contact-email {
  font-size: 20px;
  color: var(--accent);
}

/* FOOTER */

footer {
  padding: 30px;
  background-color: var(--gray);
  text-align: center;
  font-size: 14px;
}