@font-face {
  font-family: "MyFont";
  src: url("../fonts/StarryTypeLA.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

/* -------- RESET -------- */
* {
  box-sizing: border-box;
}

img {
  width: 100%;
  height: auto;
  display: block;
}

body {
  margin: 0;
  background-color: #fff;
  font-family: "MyFont", sans-serif;
  overflow-x: hidden;
}

/* -------- CONTAINER -------- */
.container {
  margin: 0 auto;
  background: white;
}

/* -------- HEADER -------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 25px;
  border-bottom: 1px solid #2C9AB7;
  background: white;
}

.site-title {
  text-align: left;
}

.logo {
  margin: 0;
  font-size: 18px;
  letter-spacing: 4px;
}

.logo a {
  color: #454636;
  text-decoration: none;
}

.subtitle {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 4px;
}

.subtitle a {
  color: inherit;
  text-decoration: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 25px;
  margin: 0;
  padding: 0;
}

nav a {
  color: #454636;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

/* -------- HERO -------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
  background-image: url("portrait pictures/portrait-pics18.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-links {
  position: absolute;
  top: 50%;
  left: 6%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-links a {
  color: white;
  text-decoration: none;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.hero-links a:hover {
  opacity: 0.7;
  transform: translateX(4px);
}

/* -------- MOBILE FIXES -------- */
@media (max-width: 700px) {
  header {
    flex-direction: column;
    gap: 12px;
  }

  nav ul {
    flex-wrap: wrap;
    gap: 14px;
  }

  nav a {
    font-size: 12px;
  }

  .logo {
    font-size: 16px;
  }

  .subtitle {
    font-size: 10px;
  }
}

@media (max-width: 600px) {
  .hero-links {
    left: 8%;
  }

  .hero-links a {
    font-size: 1.05rem;
  }
}

.video-section {
  max-width: 900px;
  margin: 80px auto;
  padding: 0 20px;   /* ← IMPORTANT */
  text-align: center;
}

video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 600px;
  border-radius: 8px;
}

.about-section {
  padding: 80px 25px;
}

/* FORCE ABOUT LAYOUT */

/* DESKTOP */
.about-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}

/* IMAGE sizing */
.about-image {
  flex: 0 0 380px;   /* fixed column on desktop */
}

/* MOBILE */
@media (max-width: 800px) {
  .about-flex {
    flex-direction: column;
  }

  .about-image {
    flex: none;
    width: 100%;
  }
}

/* -------- GALLERY -------- */ .gallery-section { padding: 10px; } .gallery-grid { column-count: 3; column-gap: 0; } .gallery-card { break-inside: avoid; padding: 4px; } /* Responsive gallery */ @media (max-width: 900px) { .gallery-grid { column-count: 2; } } @media (max-width: 500px) { .gallery-grid { column-count: 1; } }

.project { padding: 40px 25px; border-bottom: 1px solid #000; } .project-title { font-size: 24px; margin: 0; } .project-desc { margin: 8px 0 20px; opacity: 0.7; } /* scroll container */ .scroll-gallery { display: flex; gap: 16px; overflow-x: auto; overflow-y: hidden; height: 300px; /* SET HEIGHT HERE */ padding-bottom: 10px; scroll-behavior: smooth; } /* hide scrollbar but keep scroll */ .scroll-gallery::-webkit-scrollbar { height: 0; } .scroll-gallery { scrollbar-width: none; } /* images */ .scroll-gallery img { height: 100%; width: auto; flex-shrink: 0; object-fit: contain; cursor: pointer; transition: outline 0.15s ease, transform 0.15s ease; }
