* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', sans-serif;
  background-color: #f8f8f8;
  color: #000000;
  line-height: 1.6;
  padding: 0 2rem;
}

h1, h2, h3 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 1rem;
  text-align: center;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
  padding: 1.5rem 0;
  border-bottom: 1px solid #E0E0E0;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #808080;
}

/* Responsive Menu */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    gap: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transform: translateY(-40px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* Sections */
section {
  padding: 4rem 0;
  max-width: 900px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #000000, #808080);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.work-grid {
  text-align: center;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.card {
  padding: 1.5rem;
  border: 1px solid #E0E0E0;
  border-radius: 8px;
  transition: 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.bio-section p {
  margin-bottom: 1rem;
}

.bio-section a {
  color: #000000;
  text-decoration: underline;
  position: relative;
}

.bio-section a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #000000, #808080);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.bio-section a:hover::after {
  transform: scaleX(1);
}

.services ul {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.services li {
  margin: 1rem 0;
  position: relative;
  padding-left: 1.5rem;
  font-size: 1rem;
}

.services li::before {
  content: "✨";
  position: absolute;
  left: 0;
  top: 2px;
  font-size: 1rem;
}

.contact-section {
  text-align: center;
}

.contact-section form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.contact-section input,
.contact-section textarea {
  width: 100%;
  padding: 1rem;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
  background: #F5F5F5;
  transition: border 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
  border-color: #808080;
  outline: none;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(128, 128, 128, 0.2);
}

.contact-section button {
  width: auto;
}

.contact-info {
  margin-top: 2rem;
}

.contact-info a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #000000, #808080);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.contact-info a:hover::after {
  transform: scaleX(1);
}

.btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 2rem;
  background: #000000;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: 0.3s ease;
  width: auto;
  text-align: center;
}

.btn:hover {
  background: #808080;
}

footer {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid #E0E0E0;
  margin-top: 4rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero-content {
  max-width: 800px;
  margin: auto;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #000000, #373737);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #555;
}

.hero .btn {
  display: inline-block;
  margin: 0 auto;
}

/* Responsive Styles */
@media (max-width: 768px) {
  body {
    padding: 0 1rem;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .services li {
    font-size: 0.95rem;
  }

  .bio-section p {
    font-size: 0.95rem;
  }

  .contact-section input,
  .contact-section textarea {
    font-size: 1rem;
    padding: 0.75rem;
  }

  .btn {
    width: 100%;
  }

  .contact-section button {
    align-self: center;
  }
}

/* Optional: Hover support for touch devices */
@media (hover: hover) and (pointer: fine) {
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }

  .nav-links a:hover {
    color: #808080;
  }
}

/**/

/* RESULTS SHOWCASE */
.results-showcase {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f9f9f9;
}

.results-showcase h3 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 2rem;
  color: #222;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
}

.results-grid img {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}

/* Responsive Mobile */
@media (max-width: 768px) {
  .results-grid {
    flex-direction: column;
    align-items: center;
  }

  .results-grid img {
    max-width: 100%;
  }
}