/public_html/
    index.html
    gallery.html
    about.html
    contact.html
    style.css

<style>
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body, html {
      height: 100%;
       font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; 
	  /* font-family: "Cinzel", serif; */
      background: #f5f5f5;
    }

    /* Top centered menu bar */
    .navbar {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0 20px;
      height: 60px;
      background-color: #111;
      color: #fff;
      gap: 30px;
    }

    .navbar a {
      color: #fff;
      text-decoration: none;
      font-size: 0.95rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .navbar a:hover {
      text-decoration: underline;
    }
	
	.navbar {
  overflow-x: auto;      /* allow horizontal scrolling */
  white-space: nowrap;   /* keep items on one line */
  -webkit-overflow-scrolling: touch; /* smooth scrolling on iPhone */
}

.navbar::-webkit-scrollbar {
  display: none;
}

css
.navbar {
  scroll-snap-type: x mandatory;
}

.navbar a {
  scroll-snap-align: center;
}

@media (max-width: 600px) {
  .navbar {
    justify-content: flex-start; /* align items to the left on phones */
    padding-left: 20px;          /* keeps it looking clean */
  }
}

    /* Main layout */
    .about-container {
      display: flex;
      max-width: 1200px;
      margin: 40px auto;
      padding: 0 20px;
      gap: 40px;
    }

    /* Left photo */
    .about-photo {
      flex: 1;
    }

    .about-photo img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    /* Right text */
    .about-text {
      flex: 1;
      background: #fff;
      padding: 30px;
      border-radius: 8px;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .about-text h2 {
      margin-bottom: 15px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
    }

    .about-text p {
      margin-bottom: 15px;
      font-size: 1rem;
      line-height: 1.6;
      color: #444;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .about-container {
        flex-direction: column;
      }

      .about-photo img {
        height: 300px;
        object-fit: cover;
      }
    }
  </style>