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

body {
  font-family: "Futura PT Medium", sans-serif;
  background: white;
  color: black;
  line-height: 1.6;
}

header {
  background: white;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 2px solid #d6235b;
}

.logo {
  height: 50px;
}

nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #d6235b;
  font-weight: bold;
}

.hero {
  padding: 4rem 2rem;
  text-align: center;
}

.tagline {
  font-family: "Futura PT Bold", sans-serif;
  color: #d6235b;
  font-size: 1.5rem;
}

section {
  padding: 2rem;
}

h2 {
  margin-bottom: 1rem;
  font-family: "Futura PT Bold", sans-serif;
  color: #d6235b;
}

ul li {
  margin-bottom: 0.5rem;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.project {
  background: #f5f5f5;
  padding: 1rem;
  border: 1px solid #ccc;
  text-align: center;
}

footer {
  background: #000;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-footer {
  height: 40px;
  margin-bottom: 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
}

.contact-form input,
.contact-form textarea {
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  border: none;
  font-family: inherit;
}

.contact-form button {
  background: #d6235b;
  color: white;
  padding: 0.75rem;
  border: none;
  cursor: pointer;
  font-weight: bold;
}


/* Responsive enhancements */
@media (max-width: 768px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .menu-toggle {
    display: block;
    background: none;
    border: none;
    font-size: 2rem;
    color: #d6235b;
    padding: 0.5rem 0;
    cursor: pointer;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links.active {
    display: flex;
  }

  .grid {
    grid-template-columns: 1fr;
  }

  .contact-form {
    width: 100%;
    padding: 1rem;
  }
}

/* Default hide toggle on desktop */
.menu-toggle {
  display: none;
}
