/* RESET */

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f7f6f3;
  color: #1b1b1b;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}


/* LAYOUT */

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}


/* HEADER */

.site-header {
  position: fixed;
  top: 0;
  background: white;
  border-bottom: 1px solid #e3e3e3;
  z-index: 1000;
}

.site-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.branding h1 {
  margin: 0;
  font-size: 32px;
}

.tagline {
  margin: 4px 0 0;
  color: #666;
  font-size: 14px;
}

.main-nav {
  display: flex;
 margin-right: 20px;
}

.main-nav a {
  font-weight: bold;
  position: relative;
}

.main-nav a:hover {
  color: #e4007c;
}


/* HERO */

.hero {
  padding: 80px 0;
  background: linear-gradient(#ffffff, #f7f6f3);
  border-top: 6px solid #e4007c;
}

.hero .container {
  display: flex;
  margin-right: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-copy {
  flex: 1 1 500px;
}

.hero-copy h2 {
  font-size: 56px;
  margin: 0 0 20px;
  line-height: 1;
}

.hero-copy p {
  font-size: 18px;
  color: #666;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  margin-right: 14px;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: bold;
  transition: 0.2s ease;
}

.button.primary {
  background: #e4007c;
  color: white;
}

.button.primary:hover {
  background: #b30061;
}

.button.secondary {
  border: 1px solid #ddd;
  background: white;
}


/* HERO CARD */

.hero-card {
  flex: 1 1 320px;
  background: white;
  border: 1px solid #e3e3e3;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.08);
}

.hero-card-image {
  height: 240px;
  background: #ddd;
  background-image: url("../images/hero/hero-placeholder.jpg");
  background-size: cover;
  background-position: center;
}

.hero-card-content {
  padding: 20px;
}

.hero-card-content h3 {
  margin: 0 0 6px;
}

.hero-card-content p {
  margin: 0;
  color: #666;
}


/* SECTION */

.section {
  padding: 70px 0;
}

.section-heading  {
  font-size: 40px;
  margin: 0 0 10px;
}

.section-heading p {
  color: #666;
}


/* PORTFOLIO GRID */

.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
 margin-right: 24px;
}

.project-card {
  width: calc(33.333% - 16px);
  background: white;
  border: 1px solid #e3e3e3;
  border-radius: 16px;
  overflow: hidden;
  transition: 0.2s ease;
}

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 26px rgba(0,0,0,0.1);
}

.project-thumb {
  height: 220px;
  overflow: hidden;
}

.project-thumb img {
  width: 100%;
  height: 220px;
  }

.project-content {
  padding: 18px;
}

.project-content  {
  margin: 0 0 6px;
}

.project-content p {
  margin: 0;
  color: #666;
}


/* RESPONSIVE */

@media (max-width: 1000px) {

  .project-card {
    width: calc(50% - 12px);
  }

  .hero-copy  {
    font-size: 44px;
  }

}

@media (max-width: 700px) {

  .hero {
    padding: 60px 0;
  }

  .hero-copy  {
    font-size: 34px;
  }

  .project-card {
    width: 100%;
  }

}



