
    * {
      margin: 0; padding: 0; box-sizing: border-box;
    }
    body {
      font-family: 'Playfair Display', serif;
      background-color: #000;
      color: #000;
      overflow-x: hidden;
    }

    header {
      position: fixed;
      top: 0;
      width: 100%;
      height: 50px;
      background: rgba(0, 0, 0, 0.9);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 20;
    }
    header a {
      color: #fff;
      text-decoration: none;
      margin: 0 20px;
      font-size: 16px;
      text-transform: uppercase;
      transition: color 0.3s;
    }
    header a:hover {
      color: #e6c157;
    }
#fileInput {
  display: none;
}
    .fullscreen-slideshow {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100vh;
      overflow: hidden;
      transition: height 0.8s ease;
      z-index: 1;
    }
    .fullscreen-slideshow.shrinked {
      height: 400px;
      box-shadow: 0 8px 20px rgba(0,0,0,0.6);
      border-bottom-left-radius: 30px;
      border-bottom-right-radius: 30px;
    }
    .fullscreen-slideshow img {
      position: absolute;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 2s ease-in-out;
    }
    .fullscreen-slideshow img.active {
      opacity: 1;
    }

    main {
      position: relative;
      padding-top: 100vh;
      transition: padding-top 0.8s ease;
      z-index: 10;
    }
    main.shrinked-padding {
      padding-top: 400px;
    }

    .double-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      padding: 60px 10%;
      align-items: stretch;
      position: relative;
      z-index: 10;
      gap: 30px;
    }

    .text-box, .img-box {
      flex: 1 1 45%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      border-radius: 20px;
      overflow: hidden;
    }

    .text-box {
      font-size: 20px;
      line-height: 1.6;
      background: rgba(255, 255, 255, 0.25);
      color: #918052;
      padding: 30px;
      backdrop-filter: blur(5px);
      -webkit-backdrop-filter: blur(5px);
      box-shadow: 0 0 15px rgba(255,255,255,0.2);
    }

.img-box {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: auto;
  display: block;
  max-width: 100%;
  border-radius: 16px;
	

  /* Animation */
  transform: translateY(60px) scale(1.1);
  opacity: 0;
  filter: blur(8px);
  transition: transform 1s ease, opacity 1s ease, filter 1s ease;
}
.img-box img.animate-in {
  transform: translateY(0) scale(1);
  opacity: 1;
  filter: blur(0);
}

.img-box:hover img {
  transform: scale(1.03);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
  filter: brightness(1.05);
}



    @media (max-width: 768px) {
      .double-section {
        flex-direction: column;
      }
      .text-box, .img-box {
        flex: 1 1 100%;
      }
    }

    .popFlyer {
      position: fixed;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      background: #fff;
      border-radius: 20px;
      box-shadow: 
        0 0 10px 5px rgba(212, 175, 55, 0.8),
        0 0 60px 20px rgba(212, 175, 55, 0.4),
        0 0 30px rgba(0,0,0,0.8);
      z-index: 30;
      display: none;
      overflow: hidden;
    }
    .popFlyer img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px 20px 0 0;
      display: block;
      cursor: pointer;
    }
    .close-btn {
      position: absolute;
      top: 10px;
      right: 20px;
      background: #fff;
      font-size: 22px;
      line-height: 1;
      cursor: pointer;
      z-index: 31;
      user-select: none;
      border-radius: 50%;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      box-shadow: 0 0 6px rgba(0,0,0,0.2);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .close-btn:hover {
      transform: scale(1.1);
      box-shadow: 0 0 10px rgba(255, 0, 0, 0.4);
    }
  