  /* --- General Reset --- */

/* Align all main headings to same vertical position */
.headline,
.history h2,
.contact-container h2 {
  display: block;
  margin-top: 8rem; /* adjust if you need more/less space */
  text-align: center;
}


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

    body {
      font-family: 'Arial', sans-serif;
      color: #fff;
      overflow-x: hidden;
    }

    /* --- Background Video --- */
    .video-bg {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: -1;
    }

    /* --- Navbar --- */
    nav {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      background: rgba(255, 255, 255, 0.2);
      backdrop-filter: blur(20px);
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1em 2em;
      z-index: 10;
    }

    .logo {
      font-weight: 700;
      font-size: 1.2em;
        font-family: "Times new roman", serif;
    }

    .menu {
      display: flex;
      gap: 1.5em;
    }

    .menu a {
      text-decoration: none;
      color: #fff;
      font-weight: 500;
      transition: color 0.3s;
    }

    .menu a:hover {
      color: #eb5a32;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
    }

    .menu-toggle span {
      height: 3px;
      width: 25px;
      background: #000;
      margin: 4px 0;
    }

    @media (max-width: 768px) {
      .menu {
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(0, 0, 0, 0.95);
        flex-direction: column;
        width: 200px;
        display: none;
        padding: 1em;
      }

      .menu.active {
        display: flex;
          
      }

      .menu-toggle {
        display: flex;
      }
    }

    /* --- Main Content --- */
    .content {
      padding: 8em 2em 2em;
      text-align: center;
      max-width: 900px;
        min-Height: 44em;
      margin: auto;
    }

    .headline {
      font-size: 2.5em;
      margin-bottom: 1em;
        color: #fff;
         font-family: "Times new roman", serif;
    }

    .subtext {
      line-height: 1.6em;
      font-size: 1.05em;
      padding: 1.5em;
      border-radius: 10px;
    }

    /* --- History Section --- */
    .history {
      padding: 10em 2em;
     
      text-align: center;
    }

    .history h2 {
      font-size: 2em;
      margin-bottom: 1em;
    }

    .history p {
      max-width: 900px;
      margin: auto;
      font-size: 1.05em;
      line-height: 1.6em;
      padding: 1.5em;
      border-radius: 10px;
    }

    /* --- Blocks Section --- */
    .blocks {
      display: flex;
      flex-direction: column;
      gap: 2em;
      padding: 2em;
      max-width: 1100px;
      margin: auto;
    }

    .block {
      display: flex;
      align-items: center;
      gap: 2em;
      flex-wrap: wrap;
    }

    .block.reverse {
      flex-direction: row-reverse;
    }

    .block-image {
      flex: 1;
      min-height: 300px;
      background-size: cover;
      background-position: center;
      border-radius: 10px;
    }

    .block-text {
      flex: 1;
      padding: 1.5em;
      border-radius: 10px;
    }

    /* --- Gallery Section --- */
    .gallery {
      padding: 4em 2em;
      text-align: center;
    }

    .gallery h2 {
      font-size: 2em;
      margin-bottom: 1em;
    }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1em;
      max-width: 1100px;
      margin: auto;
    }

    .gallery-grid img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      border-radius: 10px;
      transition: transform 0.3s;
    }

    .gallery-grid img:hover {
      transform: scale(1.05);
    }

    /* --- Footer --- */
    footer {
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      text-align: center;
      padding: 1.5em;
      margin-top: 3em;
    }
      
    /* --- Contact Section --- */
    .contact-section {
      
      min-height: 100vh;
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 4em 2em;
    }

    .contact-container {
      max-width: 800px;
      text-align: center;
      padding: 4em 3em;
      border-radius: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .contact-container h2 {
      font-size: 2.2em;
      margin-bottom: 0.8em;
      color: #fff;
    }

    .contact-container .intro {
      font-size: 1.1em;
      line-height: 1.6em;
      margin-bottom: 2em;
    }

    .contact-details p {
      margin: 0.5em 0;
      font-size: 1.1em;
    }

    .contact-details b {
      color: #fff;
    }

    .copyright {
      margin-top: 3em;
      font-size: 0.9em;
      color: #fff;
    }

    @media (max-width: 768px) {
      .contact-container {
        padding: 3em 1.5em;
      }

      .contact-container h2 {
        font-size: 1.8em;
      }
    }
