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

html {
  font-size: 62.5%;
}

.tangerine-regular {
  font-family: "Tangerine", cursive;
  font-weight: 400;
  font-style: normal;
}

.tangerine-bold {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

body {
  background-color: #f4e9ec;
}

.italic-header {
  font-style: italic;
  font-size: 6rem;
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
}

.second-italic-header {
  font-family: "Tangerine", cursive;
  font-weight: 700;
  font-style: normal;
  font-size: 5.5rem;
}

.italic-text {
  font-style: italic;
  font-family: inherit;
  font-size: 1.8rem;
  padding: 1rem 0;
}

.text-secondary {
  font-family: inherit;
  font-size: 3.2rem;
  padding: 1rem 0;
}

.p-one {
  font-family: inherit;
  font-size: 2.5rem;
  line-height: 3.5rem;
  padding: 2rem 0;
}

.p-two {
  font-family: inherit;
  font-size: 1.8rem;
  line-height: 3rem;
  padding: 2rem 0;
}

.line-separator {
  height: 1px;
  width: 80%;
  background-color: black;
  border: none;
  margin: 0 auto;
}

.btn {
  padding: 1.5rem 3rem;
  background-color: #1ab8b8;
  color: white;
  border: none;
  font-size: 1.8rem;
}

.btn__container {
  text-align: center;
}

.balloon__art-container {
  text-align: center;
  padding: 5rem 0rem;
}

.footer__logo img {
  width: 100%;
  width: 200px;
  height: auto;
}

@media (min-width: 768px) {
  .p-two {
    font-size: 2.5rem;
    line-height: 3.2rem;
  }
  .italic-header {
    font-size: 12rem;
  }
  .p-one {
    font-size: 3rem;
    line-height: 4.5rem;
  }
}
@media (max-width: 767px) {
  .mobile__links-a {
    text-decoration: none;
    color: #1ab8b8;
    font-family: inherit;
    font-size: 2.8rem;
    line-height: 3.5rem;
    padding: 2rem 0;
  }
  .mobile__nav-container {
    position: relative;
    background-color: transparent;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 2rem;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
  }
  .hamburger {
    padding: 1rem;
    width: 35px;
    height: 25px;
    position: absolute;
    left: 25px;
    cursor: pointer;
    display: inline-block;
  }
  .hamburger span {
    background: #333;
    position: absolute;
    height: 4px;
    width: 100%;
    left: 0;
    transition: 0.4s ease;
    border-radius: 2px;
  }
  .hamburger span:nth-child(1) {
    top: 0;
  }
  .hamburger span:nth-child(2) {
    top: 10;
  }
  .hamburger span:nth-child(3) {
    top: 20;
  }
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 10px;
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 10px;
  }
  .mobile__nav-open {
    height: 0;
    background-color: white;
    text-align: center;
    transition: background 0.4s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5rem;
  }
  .mobile__nav-open a {
    display: block;
    animation: fadeInUp 0.5s ease-out forwards;
  }
  .hidden {
    display: none;
  }
  .nav-open {
    position: fixed;
    width: 100%;
    overflow: hidden;
  }
  .mobile__nav-links {
    padding-top: 15vh;
  }
  .nav-opened {
    height: 100vh;
    animation: fadeIn 0.4s ease-out forwards;
  }
  .nav-closed {
    animation: fadeOut 0.4s ease-out forwards;
  }
}
.nav__logo img {
  width: 100px;
  height: auto;
}

.navbar__footer {
  animation: fadeInUp 0.5s ease-out forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.white-background {
  background-color: white;
  transition: background-color 0.4s ease-out;
}

@media (min-width: 768px) {
  .mobile__links-a {
    text-decoration: none;
    color: black;
    font-family: inherit;
    font-size: 2.6rem;
    line-height: 3.5rem;
    font-weight: 300;
    margin: 0rem 1rem;
    padding-bottom: 1rem;
  }
  .mobile__links-a.active {
    border-bottom: 1px solid black;
  }
  .navbar {
    background-image: linear-gradient(rgb(255, 255, 255) 0%, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0) 100%);
    padding: 4rem 0 4rem 0;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
  }
  .nav__logo img {
    content: url("../imgs/logo-desktop.webp");
    max-height: 8vw;
    width: auto;
  }
  .mobile__nav-open {
    display: flex;
    align-items: center;
    gap: 6rem;
  }
}
.first__section {
  margin-top: calc(100vh + 141.35px);
  padding: 5rem 2rem;
  text-align: center;
}
.first__section .line-separator {
  margin-top: 3rem;
}

.background-video-container {
  position: fixed; /* fixed so it stays in place */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -10; /* behind content, matches your old z-index */
}

.background-video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* fill container, maintain aspect ratio */
}

.white-background {
  background-color: white;
}

@media (min-width: 768px) {
  .first__section__container {
    width: 45%;
  }
  .first__section {
    display: flex;
    justify-content: center;
  }
}
.second__section {
  padding: 1rem;
}
.second__section > h1 {
  text-align: center;
}
.second__section img {
  width: 100%;
  max-width: 600px;
  height: auto;
}

.about__me {
  padding: 3rem 2rem;
}

@media (min-width: 768px) {
  .second__section {
    padding: 8rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  }
  .section__picture {
    justify-self: center;
    grid-column: 1/span 2;
    grid-row: 1/span 3;
  }
  h1 {
    grid-column: 3/span 2;
    grid-row: 1/span 1;
    align-self: center;
  }
  .about__me {
    grid-column: 3/span 2;
    grid-row: 2/span 1;
    align-self: center;
  }
  .btn__container {
    grid-column: 3/span 2;
    grid-row: 3/span 1;
    align-self: center;
  }
}
.grid__img {
  width: 100%; /* Make image fill the grid cell */
  -o-object-fit: cover;
     object-fit: cover; /* Optional: crop to fill space if needed */
  border-radius: 15px;
  height: 100%;
}

.splash-green {
  background-color: #1ab8b8;
  height: auto;
  clip-path: polygon(57% 14%, 82% 15%, 98% 42%, 90% 78%, 67% 96%, 34% 95%, 25% 76%, 31% 48%, 38% 24%);
}

.splash-pink {
  background-color: #f58bb5;
  height: auto;
  clip-path: polygon(70% 36%, 84% 35%, 93% 51%, 71% 72%, 52% 83%, 31% 77%, 29% 66%, 36% 54%, 55% 44%);
}

.splash-yellow {
  background-color: #e4c863;
  height: auto;
  clip-path: polygon(44% 59%, 56% 54%, 66% 60%, 66% 72%, 61% 80%, 48% 88%, 29% 88%, 18% 80%, 19% 65%, 26% 57%);
}

@media (max-width: 767px) {
  .gallery__grid {
    display: grid;
    grid-template: repeat(29, 10vw)/repeat(5, 1fr);
    grid-gap: 0.5rem;
    padding: 2rem;
    max-width: 600px;
  }
  .grid-1 {
    grid-column: 1/4;
    grid-row: 1/6;
  }
  .splash-green {
    grid-column: 3/6;
    grid-row: 2/6;
  }
  .grid-2 {
    grid-column: 3/6;
    grid-row: 9/span 4;
  }
  .splash-pink {
    background-color: #f58bb5;
    height: auto;
    clip-path: polygon(70% 36%, 84% 35%, 93% 51%, 71% 72%, 52% 83%, 31% 77%, 29% 66%, 36% 54%, 55% 44%);
    grid-column: 2/span 2;
    grid-row: 14/span 4;
  }
  .grid-3 {
    grid-column: 1/span 3;
    grid-row: 17/span 4;
  }
  .grid-4 {
    grid-column: 3/span 3;
    grid-row: 24/span 4;
  }
  .splash-yellow {
    grid-column: 3/span 2;
    grid-row: 21/span 4;
  }
}
@media (min-width: 768px) {
  .gallery__grid__container {
    padding: 5vh 0;
    display: flex;
    justify-content: center;
  }
  .gallery__grid {
    display: grid;
    padding: 0 8rem;
    gap: 2rem;
    grid-template-columns: repeat(4, minmax(200px, 250px));
    grid-template-rows: repeat(2, 1fr);
  }
  .grid-2 {
    grid-column: 2/2;
    grid-row: 1/2;
  }
  .grid-3 {
    grid-column: 4;
    grid-row: 2;
  }
  .grid-4 {
    grid-column: 3;
    grid-row: 2;
  }
}
.footer {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  padding: 1rem;
  align-items: center;
}

.footer__links {
  text-align: center;
}
.footer__links a {
  display: block;
  padding: 0.4rem;
  font-family: inherit;
  color: #1ab8b8;
  font-size: 1.8rem;
}

.footer__icons img {
  width: 30px;
  height: auto;
}

.info__container {
  text-align: center;
}
.info__container p {
  font-family: inherit;
  font-size: 2rem;
  line-height: 3rem;
}

@media (max-width: 767px) {
  .footer__grid {
    padding-top: 5rem;
    display: grid;
    grid-template: repeat(3, 23vh)/repeat(2, 1fr);
    grid-gap: 2rem;
    padding: 2rem;
    max-width: 600px;
  }
  .footer__img {
    width: 100%; /* Make image fill the grid cell */
    height: 100%; /* Maintain aspect ratio */
    -o-object-fit: cover;
       object-fit: cover; /* Optional: crop to fill space if needed */
  }
}
@media (min-width: 768px) {
  .footer__grid__container {
    padding: 5rem 0;
  }
  .footer__grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .footer__img {
    max-width: 300px; /* optional: max width */
    width: 100%; /* fill container if smaller */
    height: 350px; /* maintain aspect ratio */
    -o-object-fit: cover;
       object-fit: cover; /* Optional: crop to fill space if needed */
  }
}
.intro__container {
  text-align: center;
  padding: 1rem 0rem;
  margin-bottom: 50%;
}
.intro__container * {
  padding: 2.2rem;
}
.intro__container img {
  border-radius: 50%;
  height: 380px;
  width: 380px;
  -o-object-fit: cover;
     object-fit: cover;
}
.intro__container p {
  text-align: left;
  line-height: 1.6;
}

.gallery__container {
  text-align: center;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.gallery__container * {
  padding: 2rem;
}

.page__gallery-grid {
  width: 100%;
  display: grid;
  grid-template: repeat(23, 10vw)/repeat(9, 1fr);
  grid-gap: 2rem;
  padding: 2rem;
  margin-bottom: 5vh;
}

.gallery__img-grid {
  width: 100%; /* Make image fill the grid cell */
  height: 100%; /* Maintain aspect ratio */
  -o-object-fit: cover;
     object-fit: cover; /* Optional: crop to fill space if needed */
}

.gallery__text-container {
  width: 100%;
  max-width: 700px;
}

.gallery-1 {
  grid-column: 1/span 3;
  grid-row: 1/span 2;
}

.gallery-2 {
  grid-column: 4/span 3;
  grid-row: 1/span 3;
}

.gallery-3 {
  grid-column: 7/span 3;
  grid-row: 1/span 2;
}

.gallery-4 {
  grid-column: 1/span 3;
  grid-row: 3/span 3;
}

.gallery-5 {
  grid-column: 4/span 3;
  grid-row: 4/span 2;
}

.gallery-6 {
  grid-column: 7/span 3;
  grid-row: 3/span 3;
}

.gallery-7 {
  grid-column: 1/span 3;
  grid-row: 6/span 2;
}

.gallery-8 {
  grid-column: 4/span 3;
  grid-row: 6/span 3;
}

.gallery-9 {
  grid-column: 7/span 3;
  grid-row: 6/span 2;
}

.gallery-10 {
  grid-column: 1/span 3;
  grid-row: 8/span 3;
}

.gallery-11 {
  grid-column: 4/span 3;
  grid-row: 9/span 2;
}

.gallery-12 {
  grid-column: 7/span 3;
  grid-row: 8/span 3;
}

.gallery-13 {
  grid-column: 1/span 3;
  grid-row: 11/span 2;
}

.gallery-14 {
  grid-column: 4/span 3;
  grid-row: 11/span 3;
}

.gallery-15 {
  grid-column: 7/span 3;
  grid-row: 11/span 2;
}

.gallery-16 {
  grid-column: 1/span 3;
  grid-row: 13/span 3;
}

.gallery-17 {
  grid-column: 4/span 3;
  grid-row: 14/span 2;
}

.gallery-18 {
  grid-column: 7/span 3;
  grid-row: 13/span 3;
}

.gallery-19 {
  grid-column: 1/span 3;
  grid-row: 16/span 2;
}

.gallery-20 {
  grid-column: 4/span 3;
  grid-row: 16/span 3;
}

.gallery-21 {
  grid-column: 7/span 3;
  grid-row: 16/span 2;
}

.gallery-22 {
  grid-column: 1/span 3;
  grid-row: 18/span 3;
}

.gallery-23 {
  grid-column: 4/span 3;
  grid-row: 19/span 2;
}

.gallery-24 {
  grid-column: 7/span 3;
  grid-row: 18/span 3;
}

.gallery-25 {
  grid-column: 1/span 3;
  grid-row: 21/span 2;
}

.gallery-26 {
  grid-column: 4/span 3;
  grid-row: 21/span 3;
}

.gallery-27 {
  grid-column: 7/span 3;
  grid-row: 21/span 2;
}

.img__fade-in {
  opacity: 0;
  transform: translateY(30px); /* optional subtle lift */
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.img__fade-in.show {
  opacity: 1;
  transform: translateY(0);
}/*# sourceMappingURL=main.css.map */