@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: white;
  }

  a {
    color: white;
    text-decoration: none;
  }

  /* ======= NAVBAR ======= */
  .navbar {
    width: 100%;
    padding: 15px 20px;
    background-color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    z-index: 999;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .logo img {
    height: 40px;
    width: 40px;
    border-radius: 50%;
  }

  .logo span {
    font-weight: bold;
    font-size: 28px;
  }

  .menu-toggle {
    font-size: 24px;
    cursor: pointer;
    display: block;
  }

  .nav-menu {
    position: fixed;
    font-family: 'Roboto', 'sans-serif';
    top: 0;
    right: -300px;
    width: 580px;
    height: 100vh;
    background-color: #000000;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transition: all 0.3s ease;
    text-align: center;
  }

  .nav-menu.active {
    right: 0;
    opacity: 1;
    animation: slideIn 0.4s ease forwards;
  }

  .nav-menu a {
    font-size: 18px;
    border-bottom: 1px solid #444;
    padding-bottom: 5px;
    font-size: 3rem;
    color: #868686;
  }

  .close-btn {
    text-align: right;
    font-size: 30px;
    cursor: pointer;
    margin-bottom: 10px;
  }

  .contact-info {
    margin-top: 30px;
    font-size: 14px;
    line-height: 1.6;
    color: #ccc;
    font-family: 'Roboto', 'sans-serif';
  }

  @keyframes slideIn {
    from {
      right: -300px;
      opacity: 0;
    }
    to {
      right: 0;
      opacity: 1;
    }
  }

  /* ======= PAGE SECTIONS ======= */
  .section {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    min-height: 100vh;
    align-items: center;
    margin-top: 80px;
  }

  .text-box {
    flex: 1;
    padding: 40px;
    min-width: 300px;
  }

  .image-box {
    flex: 1;
    min-width: 300px;
  }

  .image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .story {
    background: linear-gradient(to right, #a05c00, #cc8200);
    color: white;
  }

  .story h2,
  .events h2 {
    font-size: 2em;
    margin-bottom: 10px;
  }

  .story p,
  .events p {
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .btn {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
  }

  .btn:hover {
    background: rgb(255, 0, 0);
    color: #ffffff;
  }

  .events {
    background-color: #111;
  }

  #contact{
    padding: 40px; 
    text-align: center;
    color: #444;
  }

  @media (max-width: 768px) {
    .section {
      flex-direction: column;
    }

    .text-box {
      padding: 20px;
    }

    .story h2,
    .events h2 {
      font-size: 1.5em;
    }
    .navbar, span{
        font-size: 2rem;
    }
  }

  @media (max-width: 660px){
  .nav-menu {
    position: fixed;
    font-family: 'Roboto', 'sans-serif';
    top: 0;
    right: -300px;
    width: 100%;
    height: 100vh;
    text-align: center;
    background-color: #000000d6;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transition: all 0.3s ease;
  }
  .navbar span{
    font-size: 0.79rem;
    text-transform: uppercase;
  }
}
