  body {
    background-color: #ff559d;
    font-family: "Lovers Quarrel", cursive;
    font-weight: 400;
    font-style: normal;
  }
  
  /* Navbar styles */
  .navbar {
    position: sticky;
    top: 0;
    background: #ffffff;
    color: #ff4081;
    font-size:xx-large;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
  }
  
  .navbar.shrink {
    padding: 10px 30px;
    background: #111;
  }
  
  .logo {
    font-size: 1.5em;
    font-weight: bold;
  }
  
  .logo img {
    width: 50px;
    height: auto;
    margin-right: 10px;
  }
  
  .nav-links a {
    color: #ff4081;
    text-decoration: none;
    margin-left: 25px;
    font-size: 1em;
    transition: color 0.3s ease;
  }
  
  section {
    color: white;
    padding: 60px 30px;
    background: #222;
    border-top: 1px solid #444;
  }
  
  
  #main_heading{
      color: white;
      font-size: 60px;
      text-align: center;
  }
  
  #main_video{
      width: 100%;
  }
  
  #main {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding:20px;
    width: 80%;
    height: 9000px !important;
    margin: 50px auto;
    background: #fdf5e6; /* Light paper-like color */
    border: 1px solid #ccc;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    font-family: "Lovers Quarrel", cursive;
    font-size: 30px;
    line-height:1.9;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 100% 40px;
  }
  
  #main p {
    color: #D2042D;
    margin: 0;
    padding: 0;
    width: 100%;
    text-align: left;
  }
  
  .gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    padding: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 1s forwards ease-in-out;
  }
  
  .photo {
    width: 90%;
    height: auto;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .photo img {
    width: 100%;
    height: auto;
    margin: auto 0;
    vertical-align: middle;
    transition: transform 0.5s ease;
  }
  
  .photo:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 20px rgba(0,0,0,0.5);
  }
  
  .photo:hover img {
    transform: scale(1.1);
  }
  
  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

