/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #121217;
  color: #e0e0e0;
  line-height: 1.6;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

/* Sticky Header */
header {
  background: #1f1f2e;
  color: #fff;
  padding: 15px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.7);
  backdrop-filter: saturate(180%) blur(10px);
}

header h1 {
  margin-left: 20px;
  font-weight: 700;
  font-size: 2rem;
  display: inline-block;
}

nav {
  float: right;
  margin-right: 20px;
  margin-top: 6px;
}

nav a {
  color: #aaa;
  text-decoration: none;
  margin-left: 22px;
  font-weight: 500;
  transition: color 0.3s ease;
}

nav a:hover,
nav a:focus {
  color: #ffb347;
}

/* Hero */
.hero {
  background: linear-gradient(rgba(18,18,23,0.85), rgba(18,18,23,0.85)),
    url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=1350&q=80') no-repeat center center/cover;
  color: #ffd97d;
  padding: 120px 20px;
  text-align: center;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.9);
}

.hero h2 {
  font-size: 3.2rem;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.6rem;
  font-weight: 400;
}

/* Sections */
section {
  background: #1e1e2f;
  margin-top: 0px;
  padding: 30px 25px;
  border-radius: 0px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.6);
}

h2 {
  margin-bottom: 22px;
  color: #ffd97d;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* bullet list */
.values-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.values-list li {
  position: relative;
  padding-left: 38px;
  margin-bottom: 14px;
  font-size: 1.1rem;
  color: #ddd;
}

.values-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 10px;
  height: 10px;
  background: #ffb347;
  border-radius: 50%;
}

/* Projects */
.project-list {
  display: grid;
  gap: 20px;
}

.project {
  padding: 20px;
  border-left: 5px solid #ffb347;
  background: #29294b;
  border-radius: 8px;
  color: #ddd;
}

.project h3 {
  margin-bottom: 8px;
  color: #ffd97d;
}

/* Contact Form */
form label {
  font-weight: 600;
  color: #ddd;
}

input[type="text"],
input[type="email"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0 16px 0;
  border: 1px solid #444;
  border-radius: 5px;
  background: #22222f;
  color: #eee;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  outline: none;
  border-color: #ffb347;
}

button {
  background: #ffb347;
  border: none;
  color: #1f1f2e;
  padding: 12px 24px;
  font-size: 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s ease;
}

button:hover,
button:focus {
  background: #e69c1a;
  outline: none;
}

/* Footer */
footer {
  text-align: center;
  padding: 18px 20px;
  margin-top: 60px;
  font-size: 0.9rem;
  color: #777;
  background: #1f1f2e;
  box-shadow: inset 0 1px 4px rgba(255,255,255,0.05);
}