@font-face {
    font-family: 'Solare';
    src: url('/fonts/solare/solare/SolareItalic-Black.otf') format('opentype');
  }

  body {
    margin: 0;
    font-family: 'Georgia', serif;
    background: url('/pics/background.png') no-repeat center center fixed;
    background-size: cover;
    color: #333;
  }

  .page {
    max-width: 900px;
    margin: 2rem auto;
    padding: 2rem;
   
  }

  h1 {
    text-align: center;
    font-size: 2.8rem;
    color: #b45c7a;
    font-family: 'Solare';
    margin-bottom: 1.5rem;
  }

  h2 {
    text-align: center;
    color: #9e4f6c;
    margin-top: 2rem;
  }

  h3{
    text-align: left;
    color: #9e4f6c;
    margin-top: 2rem;
  }

  p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
    line-height: 1.7;
  }

  ul {
    padding-left: 1.2rem;
    list-style-type: disc;
  }

  ul li {
    margin-bottom: 0.5rem;
  }

  .inline-img {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 1.5rem 0;
  }

  .inline-img img {
    max-width: 100%;
    width: 400px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .inline-img img:hover {
    transform: scale(1.03);
  }

  .inline-img1 img {
    max-width: 100%;
    width: 200px;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
  }

  .inline-img1 img:hover {
    transform: scale(1.03);
  }


  /* Modal Styles */
  .modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 5%;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.8);
  }

  .modal-content {
    margin: auto;
    display: block;
    max-width: 80%;
    max-height: 80%;
  }

  .modal-content, .modal {
    animation: zoom 0.3s;
  }

  @keyframes zoom {
    from {transform: scale(0)}
    to {transform: scale(1)}
  }

  .close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
  }

  @media (max-width: 768px) {
    .inline-img {
      flex-direction: column;
      align-items: center;
    }

    .inline-img img {
      width: 90%;
    }
  }

  .bottom-right-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #a54caf;
    color: white;
    padding: 10px 18px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    z-index: 1000;
    font-size: 14px;
    text-decoration: none;
  }
  
  .bottom-right-button:hover {
    background-color: #cc6eb1;
  }




  /*---  filter design--*/

#proof-filter {
  padding: 10px 14px;
  font-size: 1rem;
  border: 2px solid #b45c7a;
  border-radius: 8px;
  background: #fff0f5;
  color: #b45c7a;
  font-family: 'Georgia', serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(180, 92, 122, 0.2);
}

#proof-filter:hover {
  background-color: #fce4ec;
  border-color: #9e4f6c;
}

#proof-filter:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(180, 92, 122, 0.3);
}

label[for="proof-filter"] {
  font-family:Georgia, serif;
  font-size: 1.5rem;
  color: #b45c7a;
  margin-right: 0.5rem;
}


.media-section {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}

.media-section video {
  width: 100%;
  max-width: 450px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}


/* Fade-in Animation */
.container {
  animation: fadeIn 1.2s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}