/* Global Styles */
body {
  font-family: 'Open Sans', Helvetica, Arial, sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #fff8f0;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Playfair Display', serif;
}

header {
  text-align: center;
  padding: 4rem 1rem 2rem;
  background-color: #fce4ec;
  position: relative;
}

/* Header Container */
.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.header-logo img {
  height: 60px;
  object-fit: contain;
}

.header-icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}

.instagram-icon {
  font-size: 2rem;
  color: #d81b60;
  transition: color 0.3s ease;
}

.instagram-icon:hover {
  color: #880e4f;
}

header h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  /*margin: 0.5rem 0;*/
}

header p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-family: 'Great Vibes', cursive;
}

.btn {
  display: inline-block;
  background: #b62057; /*#d81b60;*/
  color: #fff;
  padding: 0.75rem 1.5rem;
  border-radius: 30px;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #880e4f;
}

section {
  padding: 3rem 1rem;
  max-width: 900px;
  margin: auto;
}

section h2 {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2rem;
}

.about {
  background-color: #fff8f0;
  /* You can change this */
  padding: 3rem 1rem;
}

.about h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.profile-pic {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  /* Makes it a circle */
  object-fit: cover;
  flex-shrink: 0;
}

.about-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.6;
}

.portfolio {
  padding: 2rem 1rem;
  background-color: #fce4ec;
  text-align: center;
}

.portfolio h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  max-width: 800px;
  margin: 0 auto 1rem;
}

.insta-grid img {
  width: 100%;
  border-radius: 1rem;
  object-fit: cover;
}

.insta-link a {
  font-size: 1rem;
  color: #d81b60;
  text-decoration: none;
  transition: color 0.3s ease;
}

.insta-link a:hover {
  color: #880e4f;
}

.contact iframe {
  max-width: 100%;
  border: none;
  border-radius: 10px;
}

/* Footer */
footer {
  text-align: center;
  padding: 2rem 1rem;
  /*background: #fce4ec;*/
  font-size: 0.9rem;
  color: #777;
}

.footer-logo img {
  height: 75px;
  object-fit: contain;
}

footer p {
  font-family: 'Great Vibes', cursive;
}

/* Responsive */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .btn {
    padding: 0.5rem 1.25rem;
  }

  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .profile-pic {
    width: 150px;
    height: 150px;
  }

  .contact iframe {
    height: 700px;
  }
}