/* ========================================
   greggfuruoka.com — Global Styles
   ======================================== */

@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

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

html {
  font-size: 16px;
}

body {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-weight: 300;
  background: #F7F7F5;
  color: #1a1a1a;
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
}

/* ========================================
   HEADER
   ======================================== */

header {
  padding: 48px 48px 0;
  max-width: 960px;
  margin: 0 auto;
}

.site-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  line-height: 1;
}

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

.site-tagline {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  margin-top: 6px;
}

nav {
  margin-top: 20px;
  border-top: 1px solid #e0e0e0;
  padding-top: 16px;
  display: flex;
  gap: 32px;
}

nav a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.2s;
}

nav a:hover,
nav a.active {
  color: #1a1a1a;
}

/* ========================================
   MAIN CONTENT
   ======================================== */

main {
  max-width: 960px;
  margin: 0 auto;
  padding: 56px 48px 80px;
}

/* ========================================
   ABOUT PAGE
   ======================================== */

.about-layout {
  display: flex;
  gap: 56px;
  align-items: flex-start;
}

.about-photo {
  flex: 0 0 260px;
}

.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-content {
  flex: 1;
  max-width: 500px;
}

.about-content h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.about-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 16px;
}

.btn {
  display: inline-block;
  margin-top: 24px;
  padding: 10px 24px;
  border: 1px solid #1a1a1a;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1a1a1a;
  transition: background 0.2s, color 0.2s;
}

.btn:hover {
  background: #1a1a1a;
  color: #fff;
}

/* ========================================
   VIDEO PAGES (Films / Non-Narrative)
   ======================================== */

.video-section {
  margin-bottom: 72px;
}

.video-section:last-child {
  margin-bottom: 0;
}

.video-meta {
  margin-bottom: 14px;
}

.video-title {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.video-role {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
}

.video-description {
  margin-top: 12px;
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  max-width: 640px;
}

.video-embed {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
  overflow: hidden;
  background: #f0f0f0;
}

.video-embed iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-link-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 24px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: opacity 0.2s;
}

.video-link-btn:hover {
  opacity: 0.75;
}

/* ========================================
   FOOTER
   ======================================== */

footer {
  border-top: 1px solid #e0e0e0;
  padding: 32px 48px;
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-copy {
  font-size: 12px;
  color: #aaa;
  letter-spacing: 0.06em;
}

.footer-socials {
  display: flex;
  gap: 20px;
}

.footer-socials a {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #888;
  transition: color 0.2s;
}

.footer-socials a:hover {
  color: #1a1a1a;
}

/* ========================================
   HAMBURGER MENU (Mobile)
   ======================================== */

.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px 0;
  flex-direction: column;
  gap: 5px;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: #1a1a1a;
  transition: all 0.25s;
}

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid #e0e0e0;
  padding-top: 0;
  margin-top: 0;
}

.mobile-nav a {
  font-family: 'Lato', Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #555;
  padding: 14px 0;
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav a:hover {
  color: #1a1a1a;
}

.mobile-nav.open {
  display: flex;
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 768px) {
  header {
    padding: 32px 24px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .header-identity {
    flex: 1;
  }

  .hamburger {
    display: flex;
  }

  nav {
    display: none;
  }

  .mobile-nav-wrapper {
    width: 100%;
  }

  main {
    padding: 40px 24px 60px;
  }

  footer {
    padding: 28px 24px;
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .video-section {
    margin-bottom: 52px;
  }

  .about-layout {
    flex-direction: column;
    gap: 32px;
  }

  .about-photo {
    flex: none;
    width: 100%;
    max-width: 300px;
  }
}
