* {
  box-sizing: border-box;
}

body, html {
  margin: 0;
  padding: 0;
  font-family: Optima, sans-serif;
  background-color: #fefff1;
}

/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.hero picture,
.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 30% 50%; /* Foco deslocado mais para a esquerda */
}

.hero::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end; /* alinha conteúdo à direita */
  height: 100%;
  color: #fefff1;
  text-align: right;
  padding-right: 15%; /* recuo à direita */
}

/* Mantém a fonte padrão do h1 */
.hero-content h1 {
  font-family: Optima, sans-serif;
  font-size: 2rem;
}

/* Aplica a Give You Glory só na assinatura */
.hero-content .h1-signature {
  font-family: 'Annie Use Your Telescope', cursive;
  display: inline-block;
  font-size: 4rem;
}


.hero-content nav {
  position: absolute;
  top: 20px;
  right: 30px;
}

.hero-content nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.hero-content nav a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

/* ABOUT SECTION */
.about {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px;
  gap: 30px;
  background-color: #e2cfbe;
}

.about-text {
  flex: 1 1 50%;
  min-width: 300px;
}

.about-text p {
  font-size: 1.2rem;
  line-height: 1.6;
}

.about-text h2 {
  margin-bottom: 20px;
  font-family: 'Annie Use Your Telescope', cursive;
  font-size: 2rem;
}

.about-image {
  flex: 1 1 40%;
  min-width: 300px;
}

.about-image img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .about {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .about-text, .about-image {
    flex: 1 1 100%;
  }
}

/* GALLERY SECTION */
.gallery {
  padding: 50px;
  text-align: center;
}

.gallery h2 {
  margin-bottom: 20px;
  font-family: 'Annie Use Your Telescope', cursive;
  font-size: 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.painting img {
  width: 100%;
  height: auto;
  cursor: pointer;
}

.painting h3 {
  margin: 5px 0;
  text-align: center;
  font-family: 'Annie Use Your Telescope', cursive;
  font-size: 1.5rem;
}

.painting p {
  margin: 0;
}

/* POP-UP */
.popup {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
}

.popup-content {
  background: #fefff1;
  margin: 5% auto;
  padding: 20px;
  width: 80%;
  max-width: 800px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto; /* scroll dentro do pop-up */
}

.popup-content img {
  width: 100%;
  margin-bottom: 10px;
}

.close {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 2rem;
  cursor: pointer;
}

/* CONTACT SECTION */
.contact {
  padding: 50px;
  text-align: center;
}

.contact h2 {
  margin-bottom: 20px;
  font-family: 'Annie Use Your Telescope', cursive;
  font-size: 2rem;
}

.contact a.say-hi {
  display: inline-block;
  padding: 12px 25px;
  background: #000;
  color: #fff;
  text-decoration: none;
  margin-bottom: 20px;
}

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