@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

* {
  box-sizing: border-box;
  font-family: 'Montserrat', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
}

body {
  background-color: #fff8f3;
  color: #222;
  line-height: 1.6;
}

header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}
.logo {
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 1px;
}
nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}
nav ul li a {
  text-decoration: none;
  color: #b85c38;
  font-weight: 600;
  transition: color 0.2s;
}
nav ul li a:hover {
  color: #222;
}

.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  background: linear-gradient(120deg, #f7c59f 0%, #fff8f3 100%);
  text-align: center;
  padding: 4rem 2rem 2rem 2rem;
}
.hero h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.subtitle {
  font-size: 1.2rem;
  color: #b85c38;
  margin-bottom: 2rem;
}
.cta-btn {
  display: inline-block;
  background: #b85c38;
  color: #fff;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-btn:hover {
  background: #222;
}

.about, .portfolio, .contact {
  max-width: 900px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(184,92,56,0.07);
}
.about h2, .portfolio h2, .contact h2 {
  font-size: 2rem;
  color: #b85c38;
  margin-bottom: 1rem;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 1.5rem;
}
.portfolio-item {
  background: #f7c59f;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  font-weight: 600;
  color: #b85c38;
  box-shadow: 0 1px 6px rgba(184,92,56,0.05);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
.contact-form input, .contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #f7c59f;
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
}
.contact-form button {
  background: #b85c38;
  color: #fff;
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button:hover {
  background: #222;
}

footer {
  background: #fff;
  text-align: center;
  padding: 1.5rem 0;
  color: #b85c38;
  font-size: 1rem;
  margin-top: 2rem;
  box-shadow: 0 -2px 8px rgba(0,0,0,0.04);
}

@media (max-width: 700px) {
  nav {
    flex-direction: column;
    gap: 1rem;
  }
  .about, .portfolio, .contact {
    padding: 1rem;
  }
  .hero h1 {
    font-size: 2rem;
  }
}