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

body {
  font-family: "Work Sans", sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b6b 0%, #4ecdc4 100%);
  padding: 2rem 0;
}

.hero-content h1 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.hero-content p {
  font-size: clamp(1.1rem, 3vw, 1.4rem);
  color: #ffffff;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.cta-button {
  padding: 1rem 2.5rem !important;
  background-color: #ffffff !important;
  color: #ff6b6b !important;
  font-family: "Oswald", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 50px !important;
  border: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  background-color: #1a1a1a !important;
  color: #ffffff !important;
}

.projects {
  background-color: #ffffff;
}

.section-title {
  font-family: "Oswald", sans-serif;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  font-weight: 700;
  color: #ff6b6b;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.project-text h3 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(1.5rem, 4vw, 2rem);
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-weight: 600;
  text-transform: uppercase;
}

.project-text p {
  font-size: 1.1rem;
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.project-highlights li {
  font-size: 1rem;
  color: #4ecdc4;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  font-weight: 500;
}

.project-highlights li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #ff6b6b;
  font-weight: 700;
}

footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  color: #ffffff;
}

.footer-brand h3 {
  font-family: "Oswald", sans-serif;
  font-size: 2rem;
  color: #4ecdc4;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-brand p {
  color: #b0b0b0;
  font-size: 1rem;
}

.footer-contact h4 {
  font-family: "Oswald", sans-serif;
  font-size: 1.3rem;
  color: #ff6b6b;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  color: #d0d0d0;
}

.footer-contact a {
  color: #4ecdc4;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: #ff6b6b;
}

.navbar-nav .nav-link:hover {
  color: #4ecdc4 !important;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link.active {
  color: #ff6b6b !important;
}

.sticky-top {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
