body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  scroll-behavior: smooth;
}

/* Navigation */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(0,0,0,0.7);
  padding: 10px 20px;
  z-index: 1000;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: auto;
}

nav .logo {
  color: #FFD700;
  font-size: 1.5rem;
  font-weight: bold;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

nav ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

nav ul li a:hover {
  color: #FFD700;
}

/* Hero Banner */
.hero {
  height: 100vh;
  background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.3)),
              url('https://upload.wikimedia.org/wikipedia/commons/3/3d/Mount_Rainier_from_above_Myrtle_Falls.jpg') no-repeat center center/cover;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-direction: column;
  padding: 0 20px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
  font-weight: bold;
}

.hero p {
  font-size: 1.2rem;
  margin: 15px 0 25px;
}

.hero .btn {
  background: #FFD700;
  padding: 15px 30px;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  border-radius: 5px;
  text-decoration: none;
  transition: 0.3s;
}

.hero .btn:hover {
  background: #e6c200;
}

/* Sections */
section {
  padding: 80px 20px;
  text-align: center;
}

section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #222;
}

section p {
  max-width: 800px;
  margin: auto;
  font-size: 1.1rem;
  line-height: 1.6;
  color: #444;
}

/* Services */
.services {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.service-card {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 1 1 250px;
  max-width: 300px;
}

.service-card h3 {
  margin-bottom: 10px;
  color: #222;
}

.service-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Contact */
.contact a {
  display: inline-block;
  margin: 10px;
  padding: 12px 25px;
  background: #0073e6;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  transition: 0.3s;
}

.contact a:hover {
  background: #005bb5;
}

/* Footer */
footer {
  background: #111;
  color: #fff;
  padding: 15px;
  text-align: center;
}
