﻿/* RESET */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #000;
  color: #fff;
}

/* HERO VIDEO */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.hero video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* LOGO + COPYRIGHT OVERLAY */
.hero-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  z-index: 30; /* stays above menu */
}

.hero-overlay img {
  max-width: 600px;
  width: 30vw;
  height: auto;
}

.hero-overlay .copyright {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #fff;
}

/* HAMBURGER BUTTON */
.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 20;
}

.hamburger span {
  display: block;
  height: 3px;
  border-radius: 999px;
  background: #fff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* HAMBURGER ANIMATION */
.hamburger.open span:nth-child(1) {
  transform: translateY(10.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-10.5px) rotate(-45deg);
}

/* FULLSCREEN MENU OVERLAY
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 15;
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.menu-overlay nav {
  text-align: center;
}

.menu-overlay a {
  display: block;
  font-size: 1.8rem;
  text-decoration: none;
  color: #f5f5f5;
  margin: 0.5rem 0;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu-overlay a:hover {
  color: #f5c15c;
  transform: translateY(-2px);
}
*/

/* MOBILE TWEAKS */
@media (max-width: 600px) {
  .hero-overlay img {
    width: 80vw;
  }
}

/* HAMBURGER BUTTON — stays top-right */
.hamburger {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 32px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 30; /* above menu */
}

/* FLOATING TRANSLUCENT MENU PANEL
.menu-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  /* No blackout */
  /*background: transparent;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 20; /* below logo
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
*/
/* The actual floating panel */
/*.menu-overlay nav {
  background: rgba(0, 0, 0, 0.55);
  padding: 40px 60px;
  border-radius: 14px;
  backdrop-filter: blur(6px);
  box-shadow: 0 0 40px rgba(0,0,0,0.4);
  text-align: center;
}*/

/* Menu links */
.menu-overlay a {
  display: block;
  font-size: 1.6rem;
  text-decoration: none;
  color: #fff;
  margin: 0.75rem 0;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.2s ease, transform 0.2s ease;
}

.menu-overlay a:hover {
  color: #f5c15c;
  transform: translateY(-2px);
}
/* FULLSCREEN VIDEO PAGE */
html, body {
  height: 100%;
  background: #000;
}

.video-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* full-screen crop */
  background: #000;
}

/* FULLSCREEN VIDEO PAGE */
html, body {
  height: 100%;
  background: #000;
}

.video-wrapper {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #000;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}

/* BACK BUTTON */
.back-button {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 10px 18px;
  font-size: 1rem;
  background: rgba(0,0,0,0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.4);
  border-radius: 6px;
  cursor: pointer;
  z-index: 50;

  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; /* prevents blocking video controls */
}

.back-button.visible {
  opacity: 1;
  pointer-events: auto;
}

.back-button:hover {
  background: rgba(0,0,0,0.75);
}


/* MENU STRUCTURE */
.menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* MAIN MENU BUTTONS */
.menu-title {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease;
}

.menu-title:hover {
  color: #f5c15c;
}

/* SUBMENU */
.submenu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  padding-left: 10px;
  gap: 8px;
}

.submenu a {
  font-size: 1.3rem;
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.submenu a:hover {
  color: #f5c15c;
  transform: translateX(4px);
}

/* OPEN STATE */
.menu-item.open .submenu {
  display: flex;
}





/* MENU STRUCTURE */
.menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start; /* left justify main items */
}

/* MAIN MENU BUTTONS */
.menu-title {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: color 0.2s ease;
  text-align: left;        /* ensure left alignment */
  padding: 0;              /* remove default button padding */
}

.menu-title:hover {
  color: #f5c15c;
}

/* SUBMENU */
.submenu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  padding-left: 24px;      /* indent submenu items */
  gap: 8px;
}

.submenu a {
  font-size: 1.3rem;
  color: #ddd;
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
  text-align: left;        /* left align submenu links */
}

.submenu a:hover {
  color: #f5c15c;
  transform: translateX(4px);
}

/* OPEN STATE */
.menu-item.open .submenu {
  display: flex;
}
/* Prevent any centering when submenu opens */
.menu-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start; /* force left alignment */
}

/* Ensure the button itself never centers */
.menu-title {
  width: 100%;
  text-align: left;
  justify-content: flex-start;
}

/* Submenu stays indented and left-aligned */
.submenu {
  padding-left: 24px;
  align-items: flex-start;
}


/* RIGHT-SIDE SLIDE-OUT MENU */
/* RIGHT-SIDE SLIDE-OUT MENU — anchored to the right edge */
/* RIGHT-SIDE SLIDE-OUT MENU — FINAL VERSION */
.menu-overlay {
  position: fixed;
  top: 0;
  right: 0;                   /* anchor to right edge */
  width: 320px;               /* drawer width */
  height: 100vh;

  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  box-shadow: -4px 0 20px rgba(0,0,0,0.4);

  transform: translateX(100%); /* fully off-screen to the right */
  transition: transform 0.35s ease;

  z-index: 20;
  pointer-events: none;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 40px 30px;
}

.menu-overlay.open {
  transform: translateX(0);    /* slide into view */
  pointer-events: auto;
}


/* MENU STRUCTURE */
.menu {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  align-items: flex-start;
}

/* MAIN MENU BUTTONS */
.menu-title {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

/* SUBMENU */
.submenu {
  display: none;
  flex-direction: column;
  margin-top: 10px;
  padding-left: 24px;
  gap: 8px;
  width: 100%;
}

.menu-item.open .submenu {
  display: flex;
}


/* EMAIL CONTACT FORM */
.email-form, .email-success {
    width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Segoe UI, Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.email-form h2, .email-success h2 {
    margin-top: 0;
    color: #333;
}

.input, .textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 5px;
}

.btn {
    margin-top: 20px;
    padding: 12px 24px;
    font-size: 1rem;
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.btn:hover {
    background: #005a9e;
}

.error {
    color: #b00020;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}
.email-success {
    width: 600px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: Segoe UI, Arial, sans-serif;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    opacity: 0; /* start invisible */
}


/* SOCIAL MEDIA STUFF */
.social-icons {
    display: flex;
    gap: 18px;
    margin-top: 25px;
}

.social-icons .icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    background: rgba(0,0,0,0.55);
    transition: background 0.2s, transform 0.2s;
}

.social-icons .icon:hover {
    background: rgba(0,0,0,0.85);
    transform: translateY(-2px);
}

.social-icons svg {
    width: 18px;
    height: 18px;
    fill: #fff;
}


/*  BIO PAGE  */
    
    /* Full‑page photographic background */
body.bio_page {
    margin: 0;
    padding: 0;
    background: url('/images/IMG_1119sm.JPG') no-repeat center center fixed;
    background-size: cover;
    font-family: Segoe UI, Arial, sans-serif;
    color: #222;
}

/* Back button (matches your video pages) */
.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}
.back-btn:hover {
    background: rgba(0,0,0,0.8);
}

/* Centered container */
.bio-container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 100vh;
    padding: 80px 20px;
}

/* Bio card */
.bio-card {
    display: flex;
    gap: 40px;
    background: rgba(255,255,255,0.92);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    max-width: 1000px;
    width: 100%;
}

/* Headshot container */
.bio-photo img {
    height: 25vh; /* never larger than 1/4 of page height */
    aspect-ratio: 2 / 3; /* portrait 3:2 */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}

/* Text section */
.bio-text {
    flex: 1;
}

.bio-text h1 {
    margin-top: 0;
    font-size: 2rem;
    color: #111;
}

.bio-text h2 {
    margin-top: 5px;
    font-size: 1.2rem;
    font-weight: 400;
    color: #444;
}

.bio-text p {
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Mobile layout */
@media (max-width: 768px) {
    .bio-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .bio-photo img {
        margin: 0 auto;
        height: 30vh;
    }
}


/* VIDEO RESPONSIVENESS CHANGES */

body.video_page {
    margin: 0;
    padding: 0;
    background: url('/images/MovieCams.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Segoe UI, Arial, sans-serif;
}


.video-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 0px;
    background: transparent;
}

.video-wrapper video {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    background: #000;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

video::-webkit-media-controls-fullscreen-button {
    display: block !important;
}

@media (orientation: landscape) and (max-width: 900px) {
    .video-wrapper video {
        max-height: 100vh;
        max-width: 100vw;
    }
}

.back-btn {
    position: fixed;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.55);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 1rem;
    z-index: 9999;
    transition: background 0.2s, transform 0.2s;
}

.back-btn:hover {
    background: rgba(0,0,0,0.85);
}

/* Larger on phones */
@media (max-width: 600px) {
    .back-btn {
        padding: 14px 22px;
        font-size: 1.2rem;
        border-radius: 8px;
        top: 16px;
        left: 16px;
    }
}

/* CONTACT PAGE RESPONSIVENESS */
body.contact-page {
    margin: 0;
    padding: 0;
    background: url('../images/cameras.jpg') no-repeat center center fixed;
    background-size: cover;
    font-family: Segoe UI, Arial, sans-serif;
}

background: url('/images/cameras.jpg');

.email-form,
.email-success {
    /*max-width: 600px;
    width: 90%;
    margin: 80px auto;
    padding: 40px 50px 40px 40px;
    background: rgba(255,255,255,0.92);
    border-radius: 10px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    position: relative;*/
    display: flex;
    gap: 40px;
    background: rgba(255,255,255,0.92);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
    max-width: 1000px;
    width: 100%;

}


/* Mobile responsiveness */
@media (max-width: 600px) {
    .email-form,
    .email-success {
        /*margin: 40px 20px;
        padding: 30px;*/
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }
}

.email-form label {
    font-weight: bold;
    display: block;
    margin-top: 15px;
}

.email-form input[type="text"],
.email-form input[type="email"],
.email-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 4px;
    font-size: 1rem;
    margin-top: 5px;
}

.email-form textarea {
    height: 200px;
    resize: vertical;
}

.email-form button {
    margin-top: 20px;
    padding: 10px 20px;
    font-size: 1rem;
    background: #0078d4;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.email-form button:hover {
    background: #005a9e;
}

.fade-in {
    opacity: 1;
    transition: opacity 0.5s ease;
}

.hidden {
    display: none;
}

.slide-down {
    animation: slideDown 0.6s ease forwards;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-40px); }
    to   { opacity: 1; transform: translateY(0); }
}

.back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0,0,0,0.5);
    color: #fff;
    padding: 8px 14px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.back-btn:hover {
    background: rgba(0,0,0,0.75);
}

/* Larger on phones */
@media (max-width: 600px) {
    .back-btn {
        padding: 12px 20px;
        font-size: 1.1rem;
        border-radius: 6px;
    }
}


