html {
    scroll-behavior: smooth;
  }

body {
    background-color: #121212;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 800px;
    margin: auto;
    padding: 2rem;
  }
  
  header {
    text-align: center;
    margin-bottom: 2rem;
  }
  
  h1, h2, h3 {
    font-family: "ff-cocon-pro", sans-serif;
  }
  
  h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #FFB95C;
    margin-bottom: 0.5rem;
  }
  
  h2 {
    text-align: center;
    font-size: 1.8rem;
    color: #FFB95C;
  }
  
  h3 {
    text-align: center;
    font-size: 1.4rem;
    color: #FFB95C;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #444;
    padding-bottom: 0.25rem;
  }
  
  
  section {
    margin-bottom: 2.5rem;
  }
  
  p {
    font-size: 1rem;
    line-height: 1.6;
    color: #ffffff;
  }
  
  /* Gallery Section */
  .gallery {
    text-align: center;
    background-color: #1d1d1d;
    padding: 2rem;
    border-radius: 12px;
    border: 2px dashed #444;
  }
  
  .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
  }
  
  .gallery-grid img {
    width: 100%; 
    border-radius: 8px;
    transition: transform 0.3s, opacity 0.3s;
  }
  
  .gallery-grid img:hover {
    transform: scale(1.05);
    opacity: 0.85;
  }
  
  /* Navbar */
.navbar {
    position: sticky;
    top: 0;
    background-color: #1d1d1d;
    padding: 0.8rem 2rem;
    z-index: 1000;
    border-bottom: 1px solid #444;
  }
  
  .nav-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
  }
  
  .nav-container a {
    color: #FFB95C;
    text-decoration: none;
    font-family: "ff-cocon-pro", sans-serif;
    font-size: 1.1rem;
    transition: color 0.3s;
  }
  
  .nav-container a:hover {
    color: #ffd278;
  }

  /* Footer */
.footer {
    background-color: #1d1d1d;
    color: #777;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    border-top: 1px solid #444;
  }

  /* Lightbox Styles */
  .lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    justify-content: center;
    align-items: center;
  }
  
  .lightbox img {
    max-width: 90%;
    max-height: 80%;
    width: auto;
    height: auto;
    object-fit: contain;
    border: 3px solid #ffcc00;
    border-radius: 10px;
    box-shadow: 0 0 20px #ff9900;
  }
  
  