/* Base Layout */
body {
  margin: 0;
  font-family: 'Helvetica Neue', sans-serif;
  background-color: #fffaf2;
  color: #2e2e2e;
  text-align: center;
}

.container {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 1em;
}

/* Header Styling */
header {
  background-color: #fffaf2;
  border-bottom: 2px solid #f0e6d2;
  padding: 1em 0;
}

.header-layout {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8em;
  font-weight: bold;
  color: #2e2e2e;
  margin: 0;
}

.nav-social-group {
  display: flex;
  align-items: center;
  gap: 1.2em;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5em;
  padding: 0;
  margin: 0;
}

nav ul li a {
  text-decoration: none;
  color: #2e2e2e;
  font-weight: 500;
}

.insta-icon img {
  width: 28px;
  height: 28px;
  transition: opacity 0.2s ease;
}

.insta-icon img:hover {
  opacity: 0.7;
}

/* Hero Section */
.hero {
  padding: 2em 1em;
}

.hero img {
  max-width: 250px;
  margin-bottom: 1em;
}

.hero h2 {
  font-size: 2em;
  color: #2e2e2e;
}

.hero h3 {
  font-size: 1.5em;
  color: #3c3c3c;
  margin-top: 0.3em;
}

.tagline {
  font-weight: bold;
  margin-top: 0.5em;
  color: #5a3e2b;
  font-size: 1.1em;
}

.description {
  max-width: 500px;
  margin: 1em auto;
  color: #4d4d4d;
}

.cta-button {
  display: inline-block;
  background-color: #f6c89f;
  color: #2e2e2e;
  padding: 0.8em 1.5em;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  margin-top: 1em;
  transition: background-color 0.2s ease;
}

.cta-button:hover {
  background-color: #f2b682;
}

/* Pitch Section */
.pitch {
  background-color: #fff7ed;
  padding: 3em 1em;
  text-align: left;
  color: #3c2f2f;
}

.pitch h2 {
  text-align: center;
  font-size: 1.8em;
  margin-bottom: 1em;
}

.pitch p {
  max-width: 700px;
  margin: 0 auto 1em auto;
  font-size: 1.1em;
  line-height: 1.6;
}

/* Services Section */
.services {
  background-color: #fff2e0;
  padding: 3em 1em;
}

.services h2 {
  font-size: 1.8em;
  margin-bottom: 1em;
}
