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

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  background: #fefefe;
  color: #333;
}

.container {
  width: 90%;
  max-width: 900px;
  margin: auto;
  padding: 2rem 0;
}

header {
  background: #111;
  color: white;
  text-align: center;
  padding: 4rem 1rem;
}

header h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

header .tagline {
  font-size: 1.2rem;
  font-weight: 300;
}

section {
  margin: 2rem 0;
}

.about p {
  max-width: 700px;
  margin-top: 1rem;
}

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

.gallery img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.05);
}

.contact a {
  color: #333;
  text-decoration: underline;
}

footer {
  text-align: center;
  padding: 2rem;
  font-size: 0.9rem;
  color: #777;
}

.about-flex {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .about-flex {
    flex-direction: row;
    align-items: flex-start;
  }
}

.portrait-image img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}



.full-portrait-header {
  background-image: url('images/pia_5_comp.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.4);
  padding: 2rem;
  border-radius: 8px;
}

.contact {
  background-color: #f8f8f8;
  padding: 3rem 1rem;
  text-align: center;
}

.contact-box h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.1rem;
  margin: 1rem 0;
}

.contact-info a {
  color: #111;
  text-decoration: none;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
}

.instagram-link img {
  width: 50px;
  height: 50px;
  display: inline-block;
  vertical-align: middle;
  filter: grayscale(1);
  transition: filter 0.3s;
}

.instagram-link:hover img {
  filter: none;
}


