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

body {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 700;
  font-style: normal;
  background-color: #f9f8f2;
  color: #111;
  line-height: 1.4;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  font-size: 16px; 
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 700;
  font-style: normal;
  position: relative;
  z-index: 1000;
}

header .logo {
  font-weight: 600;
}

header .menu-btn {
  border: none;
  background: #f9f8f2;
  box-shadow: 0px 2px 2px rgba(0,0,0,0.1);
  padding: 8px 16px; 
  border-radius: 20px;
  cursor: pointer;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 14px; 
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: #f9f8f2;
  overflow: hidden;
  transition: height 0.4s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.menu-overlay.open {
  height: 100%;
}

.menu-overlay ul {
  list-style: none;
  text-align: center;
}

.menu-overlay ul li {
  margin: 24px 0; 
}

.menu-overlay ul li a {
  text-decoration: none;
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 96px; 
  color: #111;
  transition: color 0.3s;
}

.menu-overlay ul li a:hover {
  color: #777;
}

.close-btn {
  position: absolute;
  top: 24px; 
  right: 32px; 
  font-size: 32px; 
  font-weight: bold;
  background: none;
  border: none;
  cursor: pointer;
  color: #111;
}

.hero {
  text-align: left;
  padding: 48px 32px; 
  font-size: 48px; 
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  font-family: "neue-haas-grotesk-text", sans-serif;
  position: relative;
}

.hero span {
  font-style: italic;
}

.side-text {
  position: fixed;
  top: 50%;
  right: -32px; 
  transform: rotate(90deg) translateY(-50%);
  transform-origin: right top;
  font-size: 16px; 
  color: #333;
  letter-spacing: 1px;
  font-family: 'Playfair Display', serif;
}

img {
  width: 102vw; 
  height: 106vh; 
  object-fit: cover; 
  position: fixed; 
  top: 0;
  left: 0;
  z-index: -1; 
}

.contact-section {
    padding: 50px 20px;
    text-align: center;
}

.contact-section h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #555;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 600px;
    margin: 0 auto;
    background-color: #f9f8f2;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 20px;
    width: 100%;
}

.contact-form .form-group label {
    font-size: 16px;
    margin-bottom: 8px;
    display: block;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    border-color: #333;
    outline: none;
}

.contact-form .submit-btn {
    background-color: #333;
    color: #f9f8f2;
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
}

.contact-form .submit-btn:hover {
    background-color: #555;
}

footer {
    background-color: #333;
    color: white;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin-bottom: 10px;
}

footer .social-links {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
}

footer .social-links li {
    margin: 0 10px;
}

footer .social-links li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
}

footer .social-links li a:hover {
    color: #ddd;
}

.projects-section {
  text-align: center;
  padding: 40px 20px;
}

.projects-section embed {
  display: block;
  margin: 40px auto;
  border: none;
}

canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none; /* Important: So it doesn't block clicks */
}

h1 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #111;
  background: #f9f8f2;
  font-size: 96px;
  text-align: center;
}

h2 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #111;
  font-size: 15px;
  text-align: center;
}

h3 {
  font-family: "neue-haas-grotesk-text", sans-serif;
  font-weight: 300;
  font-style: normal;
  color: #111;
  font-size: 96px;
  text-align: center;
}

a:link {
 color: #111; /* Or any other color, hex code, RGB, HSL value */
}

a:hover {
  color: #777
}

@media(max-width: 768px) {
  .hero {
    font-size: 32px; 
    padding: 32px 16px; 
  }

    .image-gallery {
    flex-direction: column;
  }

  .image-column {
    margin-bottom: 16px;
  }
}
