
    * { box-sizing: border-box; margin: 0; padding: 0; }
    body, html {
      font-family: Arial, sans-serif;
      background: url('../images/manhattan/20201128_144813.jpg') no-repeat center center fixed;
      background-size: cover;
    }
    header {
      background-color: #fff;
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    a.menu_link {
      color: white;
      text-decoration: none;
    }
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1em;
      position: relative;
    }

    p.text {
      padding: 0.8em;
    }
    .logo {
      display: flex;
      align-items: center;
    }
    .logo img {
      height: 40px;
      margin-right: 10px;
    }
    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      z-index: 1001;
    }
    .menu-toggle div {
      width: 25px;
      height: 3px;
      background-color: black;
      margin: 4px 0;
    }
    ul.menu {
      list-style: none;
      display: flex;
      gap: 1em;
    }
    ul.menu li a {
      text-decoration: none;
      color: black;

    }

    a {
      text-decoration: none;
      color: black;
    }

    ul {
      padding-left: 1.5em;
    }
    .content-section {
      width: 100%;
      background-color: white;
      display: flex;
      justify-content: center;
      padding: 5em 1em;
      margin-top: 5em;
    }
    .content-wrapper {
      max-width: 60%;
    }

    .text-section {
      width: 100%;
      display: flex;
      justify-content: center;
      padding: 5em 1em;
      margin-top: 5em;
    }
    .text-wrapper {
      max-width: 60%;
      background-color: white;
      padding: 1em;
    }

    .contact-wrapper {
      max-width: 40%;
      width: 40%;
      margin: 0 auto;
    }
    .spacer5 { height: 5em; }

    .spacer10 { height: 10em; }

    .gallery-title {
      font-size: 1.5em;
      font-weight: bold;
      margin-top: 2em;
      margin-bottom: 1em;
    }
    .gallery {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1em;
      margin-top: 2em;
    }
    .gallery-item {
      position: relative;
      overflow: hidden;
      cursor: zoom-in;
    }
    .gallery-item img {
      width: 100%;
      display: block;
      transition: transform 0.3s ease;
    }
    .gallery-item:hover img {
      transform: scale(1.05);
    }
    .hover-text {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      background-color: rgba(0, 0, 0, 0.6);
      color: white;
      padding: 0.5em;
      opacity: 0;
      transition: opacity 0.3s;
      font-size: 0.9em;
    }
    .gallery-item:hover .hover-text {
      opacity: 1;
    }
    form {
      display: flex;
      flex-direction: column;
      gap: 1em;
    }
    input, textarea {
      padding: 0.5em;
      font-size: 1em;
      border: 1px solid #ccc;
      border-radius: 4px;
    }
    button {
      background-color: #444;
      color: white;
      border: none;
      padding: 0.75em;
      cursor: pointer;
      border-radius: 4px;
    }
    .lightbox {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0,0,0,0.8);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }
    .lightbox img {
      max-width: 90%;
      max-height: 90%;
    }
    footer {
      background: #333;
      color: #fff;
      font-size: 0.8em;
      padding: 2em;
    }
    .footer-columns {
      display: flex;
      flex-wrap: wrap;
      gap: 1em;
    }
    .footer-column {
      flex: 1;
      min-width: 150px;
    }
    @media (max-width: 768px) {
      ul.menu {
        display: none;
        flex-direction: column;
        background-color: white;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        z-index: 1000;
        align-items: center;
      }
      ul.menu.active {
        display: flex;
      }
      .menu-toggle {
        display: flex;
      }
      .footer-columns {
        flex-direction: column;
      }
      .content-wrapper {
        max-width: 100%;
      }
      .text-wrapper {
        max-width: 100%;
      }
      .gallery {
        grid-template-columns: 1fr;
      }
    }