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

body {
    font-family: 'Apple Garamond' , serif;
    background-color: rgb(255, 108, 181);
    color: black;
    text-align: center;
    overflow: hidden;
    position: relative;
    height: auto;
    overflow-y: auto;
    min-height: 100vh;
  }

@font-face {
  font-family: 'Apple Garamond';
  src: url('fonts/AppleGaramond.ttf') format('truetype');
}


  
.bg {
  background-image: url("home/bg.png"); /* no need to escape space */
  background-attachment: fixed; /* key for parallax effect */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 50%;
  z-index: -1; /* push behind everything */
}
  
  .logo-left, .logo-right {
    position: absolute;
    top: 0;
z-index: 9999; 
  }

  .logo-left img,
  .logo-right img {
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .logo-left img:hover,
  .logo-right img:hover {
    transform: scale(1.1);
  }
  

  .logo-left img {
      width: 300px;
      height: auto;
      margin-top: -20px;
  }

  .logo-right {
    right: 50px;
    top: 32px;
    margin-top: 20px;
  }

  .logo-right img {
    width: 80px;
    height: auto;

  }
  
  .photo-section {
    position: relative;
    width: 100%;
    height: 100vh;
  }
  
  .ellipse {
    position: absolute;
    top: 39%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    z-index: 0;
  }
  
  .girl {
    position: absolute;
    top: 64%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 700px;
    z-index: 2;
  }
  
.star {
  position: absolute;
  width: 10vw; /* scalable width */
  transform: translateY(-50%);
  z-index: 1;
}

/* Positions based on percentage of screen */
.star.left {
  top: 60%;
  left: 15%;
}

.star.right {
  top: 35%;
  right: 15%;
}

.star.bottom {
  top: 85%;
  right: 15%;
}

  .button {
    position: absolute;
    top: 70%;
    left: 52%;
    width: 330px;
    z-index: 999;
  }

.button {
  transition: transform 0.3s ease;
}

.button:hover {
  transform: scale(1.1);
}


  
  
  /* folder row aligned to the right, but to the left of logo-right */
  .folder-row {
    position: absolute;
    top: 55px;
    right: 180px; /* enough space before .logo-right */
    display: flex;
    gap: 95px;
    z-index: 999;
  }
  
  .folder {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .folder img {
    width: 70px;
  }

  .folder img {
  transition: transform 0.3s ease;
}

.folder img:hover {
  transform: scale(1.1);
}

  
  .footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: white;
    padding: 10px 0;
    font-size: 14px;
    color: blue;
    text-align: center;
    z-index: 1000;
    box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.1); /* optional for better visibility */
  }

  @media only screen and (max-width: 1080px) {

    .folder-row {
      top: 8%;
      left: 60%;
      gap: 50px;
    }
    .folder img {
      width: 50px;
    }

    }

  
  @media (max-width: 768px) {

html, body {
  overflow: hidden;
    margin: 0;
    padding: 0;
    height: 100%;
    }

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 100%;
  background-image: url("home/bg.png");
  background-repeat: repeat-y;
  background-size: 100% 1000px;
  z-index: -1;
}
  
    
    .logo-left img {
margin-top: -10px;
      width: 225px;
      left: -15px;

    }

.logo-right img {
  width: 60px;
}

.photo-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
        

  .folder-row {
    position: absolute;
    margin-top: 70px;
    gap: 50px;
    z-index: 999;
    left: 16%;
  }
  
.folder {
  display: flex;
  flex-direction: column;
  align-items: center;
}

  
.folder img {
  width: 60px;
  transition: transform 0.3s ease;
}

.folder img:hover {
  transform: scale(1.1);
}

  .photo-section {
    position: absolute;
    width: 100%;
    height: 100vh;
  }
  
  .ellipse {
    position: absolute;
    top: 45%;
    left: 52%;
    transform: translate(-50%, -50%);
    width: 300px;
    z-index: 0;
  }
  
  .girl {
    position: absolute;
    top: 66%;
    left: 49%;
    transform: translate(-50%, -50%);
    width: 550px;
    z-index: 2;
  }
  
  .star {
    position: absolute;
    width: 120px;
    transform: translateY(-50%);         
    z-index: 1;
  }
  
  .star.left {
    top: 55%;
    left: 240px;
  }
  
  .star.right {
    top: 35%;
    right: 230px;
  }

  .star.bottom {
    top: 700px;
    right: 290px;
  }

  .button {
    position: absolute;
    top: 70%;
    left: 10%;
    width: 300px;
    z-index: 3;
  }

    .footer {
      margin-bottom: 0px;
      font-size: 12px;
    }
  }
