@import url('https://fonts.googleapis.com/css2?family=Indie+Flower&display=swap');


body {
  height: 100%;      /* garante altura total */
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;      /* ocupa toda a altura da tela */
  scroll-behavior: smooth;
}

h1 {
  font-family: "Indie Flower", cursive;
  font-weight: 100px;
  font-style: normal;
  text-align: center;
}


/* =====  Header ===== */
.header {
  display: flex;
  flex-direction: column; /* coloca logo em cima e nav embaixo */
  align-items: center;    /* centraliza tudo */
  padding: 20px;
}

.logo img {
  height: 110px;
  display: block;
  margin: 0 auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 20px 0 0 0; /* espaço entre logo e nav */
  padding: 0;
  width: 10 10px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 1.3rem;
  position: relative;
}

.nav a:hover,
.nav a:focus {
  border-bottom: 2px solid #333;
}

/*  ===== About Section  ===== */
.about {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  gap: 50px;
  flex-wrap: wrap; /* permite reorganizar no celular */
  text-align: center;
}

.about-image img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #333;
}

.about-h1 img {
  width: 400px;
}


.contact-text h1 {
  margin: 0;
  font-size: 30px;
}
.rayssa-text {
  font-family: "Indie Flower", cursive;
font-size: 20px}

.about-text p {
  max-width: 500px;
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0 auto;
}

.about-text img {
  width: 80px;
}

/*  ===== Storyboard Section  ===== */
.storyboard-text h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
}

.storyboard-text p {
  max-width: 500px;
  line-height: 1.6;
  font-size: 1.1rem;
  margin: 0 auto;
}


/*  ===== Characters Section  ===== */

/*  ===== Personal Section  ===== */














/*  ===== Contacts Section  ===== */

.contact-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.contact-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-nav ul li {
  margin: 15px 0; /* espaçamento entre os itens */
}

.contact-nav img {
  width: 20px; /* tamanho do ícone */
  height: auto;
  display: flex ;
  flex-direction: column;
  align-items: center
}

.contact-nav a {
  gap: 1rem;
  align-items: center;    
  display: flex;     
  margin-left: 1rem;
  text-decoration: none;      
  color: #333;     
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  transition: color 0.2s ease;
}

.contact-nav a:hover {
  color: #ff0095; /* cor ao passar o mouse */
}


/* =====  Footer ===== */
.footer {
  text-align: center;
  padding: 20px;
  font-size: 0.9rem;
  color: #555;
  margin-top: auto;
}

/* ===== estado inicial: invisível ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.reveal.show {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsivo para celulares ===== */
@media screen and (max-width: 768px) {
  
  /* Header */
  .header {
    padding: 15px;
  }

  .logo img {
    height: 80px;
  }

  .nav ul {
    gap: 12px;
    margin-top: 15px;
  }

  .nav a {
    font-size: 1rem;
  }

  /* About Section */
  .about {
    flex-direction: column;
    padding: 40px 15px;
    gap: 30px;
  }

  .about-image img {
    width: 150px;
    height: 150px;
  }

  .about-h1 img {
    width: 250px;
  }

  .contact-text h1 {
    font-size: 24px;
  }

  .rayssa-text {
    font-size: 18px;
  }

  .about-text p {
    font-size: 1rem;
    max-width: 90%;
  }

  .about-text img {
    width: 60px;
  }

  /* Storyboard Section */
  .storyboard-text h1 {
    font-size: 2rem;
  }

  .storyboard-text p {
    font-size: 1rem;
    max-width: 90%;
  }

  /* Contacts Section */
  .contact-nav a {
    font-size: 14px;
    gap: 0.5rem;
    margin-left: 0.5rem;
  }

  .contact-nav img {
    width: 18px;
  }

  /* Footer */
  .footer {
    font-size: 0.8rem;
    padding: 15px;
  }
}
