/* Base Styles */
  body {
    font-family: 'Lora', serif;
    margin: 0;
    background-color: #F6F3EB;
    color: #6C757D;
    line-height: 1.6;
  }
  
  h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #1A374D;
  }

  img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
  /* Font upload */ 
    @font-face {
        font-family: 'Buttershine Serif';
        src: url('../fonts/BUTTERSHINESERIF.otf') format('opentype');
        font-weight: normal;
        font-style: normal;
    }

    @font-face {
        font-family: 'Cabin';
        src: url('../fonts/Cabin-Regular.ttf') format('truetype');
        font-weight: normal;
        font-style: normal;
    }
  

  /* HERO SECTION */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    display: flex;
    justify-content: center;
    text-align: center;
    color: white;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.1s ease-out;
  }
  
  .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #1a374d90; /* #1A374D with transparency */
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    padding: 3rem;
  }
  
  .hero-content h1 {
    font-size: 4.5rem;
    color: white;
    margin-top: 1rem;
    font-family: 'Buttershine Serif', Georgia, serif;
  }
  
  .hero-content h2 {
    font-size: 2rem;
    color: white;
    transform: translateY(-60px); 
    font-family: 'Buttershine Serif', Georgia, serif;
  }  

  .hero-icon {
    margin-top: 20px;
    width: 150px;
    height: auto;
  }

  .scroll-arrow {
    font-size: 32px;
    color: white;
    margin-top: 20px;
    animation: bounce 1.8s infinite;
    cursor: pointer;
  }
  
  @keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
      transform: translateY(0); 
    }
    40% {
      transform: translateY(10px); 
    }
    60% {
      transform: translateY(5px); 
    }
  }
  
  
  /* INTRO SECTION */
  .intro{
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }

  .intro h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .intro p{
    font-family: 'Cabin', Arial, sans-serif;
    font-weight: 100;
  }

  /* VIDEO SECTION */
  .video{
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }

  .video h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-top: 20px;
  }
  
  .video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .video-caption {
    text-align: center;
    margin-top: 15px;
    font-family: 'Cabin', Arial, sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  /* STORY DETAILS */
  .story{
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }

  .section-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
  }
  
  .story h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .story p{
    font-family: 'Cabin', Arial, sans-serif;
    font-weight: 100;
  }

  .section-block.reverse {
    flex-direction: row-reverse;
  }
  
  .section-block img {
    flex: 1 1 40%;
    max-width: 300px;
    margin-right: 5rem;
  }
  
  .section-block div {
    flex: 1 1 55%;
  }
  
  .full-text {
    background-color: #ffffff;
    padding: 30px;
    margin: 40px 0;
    border-radius: 8px;
  }
  
  .full-text blockquote {
    font-size: 25px;
    font-style: italic;
    margin: 20px 0;
    color: #1A374D;
    text-align: center;
  }
  
  .full-text cite {
    display: block;
    margin-top: 5px;
    font-size: 16px;
    color: #B85742;
    text-align: center;
  }
  
  .photo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .photo-grid img {
    width: calc(33% - 10px);
    height: auto;
  }
  
  /* GRAPHICS */
  .graphics {
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }

  .graphics h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .graphics .graphic-item {
    margin-bottom: 40px;
  }
  
  .graphics img {
    border: 1px solid #ccc;
    border-radius: 8px;
    max-width: 400px;
    height: auto;
    box-shadow: 8px 8px 0 #6c757d;
  }
  
  /* GALLERY */
  .gallery{
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }

  .gallery h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .photo-scroll {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding-bottom: 10px;
  }
  
  .photo-scroll img {
    flex: 0 0 auto;
    width: 300px;
    height: auto;
    border-radius: 8px;
    aspect-ratio: 4 / 3; 
    object-fit: cover;
  }
  
  /* CONCLUSION */
  .conclusion {
    background: url('closing_bg.jpg') center/cover no-repeat;
    color: #1A374D;
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }
  .conclusion h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .conclusion p{
    font-family: 'Cabin', Arial, sans-serif;
    font-weight: 100;
    color: #6C757D;
  }
  
  /* SOURCES */
  .sources{
    padding: 60px 20px;
    max-width: 1000px;
    margin: auto;
  }

  .sources a {
    color: inherit;
    text-decoration: none;
  }  

  .sources a:hover {
    text-decoration: underline;
  }

  .sources h2{
    font-family: 'Buttershine Serif', Georgia, serif;
  }

  .sources ul {
    list-style-type: disc;
    padding-left: 20px;
  }
  

  