/* Fonts */
@font-face {
    font-family: 'CACoronado';
    src: url('/fonts/CA Coronado W00 Regular.woff') format('woff');
}

@font-face {
    font-family: 'HelveticaBold';
    src: url('/fonts/Helvetica-Bold.woff') format('woff');
}

/* Global */
body {
    font-family: 'HelveticaBold', Helvetica, Arial, sans-serif;
    margin: 0;
    background-color: black;
    color: white;
    text-align: center;
}

header {
    padding-top: 2rem;
}

.name a:hover {
    color: red;
    transition: color 0.3s ease;
}

.navbar a:hover {
    color: red;
    transition: color 0.3s ease;
}

.name {
    font-family: 'CACoronado', serif;
    font-size: 4rem;
    margin: 2rem 0 0.5rem;
}

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

.subheading {
    font-size: 1.6rem;
    font-style: italic;
    color: grey;
    margin-top: -0.5rem;
    margin-bottom: 2rem;
}

.navbar {
    margin-bottom: 2rem;
}



.navbar a.active {
    color: red;
}


.navbar a {
    font-family: 'HelveticaBold', sans-serif;
    color: white;
    text-decoration: none;
    margin: 0 2rem;
    font-size: 2rem;
}



/* Reel Section */
.reel-wrapper {
    width: 90vw;
    max-width: 960px;
    margin: 2rem 0;
}

.reel-wrapper iframe {
    width: 100%;
    height: 54vw;
    max-height: 540px;
}

.video-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6rem;
    padding: 0 1rem;
    overflow-x: auto;
    max-width: 100%;
    margin: 0 auto;
}

.video-frame {
    width: 60vw;
    min-width: 300px;
    max-width: 960px;
    height: calc((9 / 16) * 60vw);
    max-height: 540px;
    flex-shrink: 1;
}

.side-image {
    width: 28vw;
    min-width: 140px;
    max-width: 220px;
    height: auto;
    flex-shrink: 0;
}

.mirrored {
    transform: scaleX(-1);
}

/* Social Icons */
.social-icons {
    text-align: center;
    margin-top: 1rem;
}

.social-icons a {
    margin: 0 1rem;
    display: inline-block;
}

.social-icons a img {
    transition: filter 0.3s ease;
}

.social-icons img {
    width: 40px;
    height: auto;
}

.icon-hover {
  position: relative;
  display: inline-block;
}

.icon-hover img {
  display: block;
  width: 40px;
  height: auto;
  transition: opacity 0.4s ease;
}

.hover-icon {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}


.icon-hover:hover .hover-icon {
  opacity: 1;
}

.icon-hover:hover .default-icon {
  opacity: 0;
}

.sundog-hover {
  position: relative;
  display: inline-block;
}

.sundog-hover img {
  display: block;
  width: 28vw;
  min-width: 140px;
  max-width: 220px;
  height: auto;
  transition: opacity 0.4s ease;
}

.hover-sundog {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
}

.sundog-hover:hover .hover-sundog {
  opacity: 1;
}

.sundog-hover:hover .default-sundog {
  opacity: 0;
}


.main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.contact-info h3, 
.contact-info p {
    font-size: 1.7rem; /* or 2rem, adjust as needed */
}


.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;  /* adjust gap if needed */
    margin-top: 3rem;
    width: 100%;
}



.contact-info {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 6rem;  /* increase this number to move down more */
}



.contact-info p {
    margin: 1rem 0 0 0;
    line-height: 1.6;
}

.contact-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-form form {
    width: 400px;  /* controls how wide the whole form + button is */
}

.contact-form input,
.contact-form textarea,
.contact-form button {
    width: 100%;  /* everything takes full width of the form */
    margin-bottom: 1rem;
    padding: 0.7rem;
    background: black;
    border: 1px solid white;
    color: white;
    font-family: Helvetica, Arial, sans-serif;
    box-sizing: border-box; /* avoids weird padding overflow */
}

.contact-form textarea {
    height: 250px;  /* taller message box */
}

.contact-form button {
    background: white;
    color: black;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.contact-form button:hover {
    background: black;
    color: white;
    border: 1px solid white;
}

.contact-footer {
    text-align: center;
    margin-top: 3rem;
    width: 100%;
}

.contact-footer p {
    font-size: 1.5rem;
    margin: 0;
}

.fade-content {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.fade-content.fade-in {
  opacity: 1;
}

.fade-content.fade-out {
  opacity: 0;
}


.about-content {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 60ch) 1fr;
    align-items: start;  /* <-- very important */
    gap: 0rem;
    margin-top: 3rem;
    box-sizing: border-box;     
}


.bio-left {
    align-self: center;
    margin-top: -7rem;
}

.bio-right {
    align-self: center;
    margin-top: -7rem;
}

.bio-left h1 {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 8rem;   /* was 6rem */
    color: white;
    margin: 0;         /* remove extra spacing if any */
    align-self: center;
}

.bio-center {
    display: flex;
    justify-content: center;
    margin-top: -1rem;
}

.bio-center p {
    font-size: 1rem;         /* smaller text */
    line-height: 1.6rem;     /* tighter line spacing */
    max-width: 60ch;         /* wider block */
    margin: 0 auto 1.2rem auto; 
    text-align: justify;
}

.bio-signoff p {
    font-size: 1.1rem;
    line-height: 1.8rem;
    text-align: left;
    margin: 0;
}

.bio-right img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%; /* makes it a circle */
    align-self: center;
}

.portfolio-section {
    display: grid;
    grid-template-columns: 1fr minmax(300px, 60ch) 1fr;
    align-items: start;  /* <-- very important */
    gap: 0rem;
    margin-top: 3rem;
    box-sizing: border-box;     
}

.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 3rem;
}

.poster-grid {
    display: grid;
    grid-template-columns: repeat(2, 300px);
    gap: 4rem 6rem;
    justify-content: center;
}

.poster {
    position: relative;
    width: 300px;
    height: 450px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.poster:hover {
    transform: scale(1.05);
}

.poster:hover img {
    opacity: 0.2;
}

.poster-text {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: white;
    box-sizing: border-box;
}

.poster:hover .poster-text {
    opacity: 1;
}

.poster-title {
    font-size: 1.5rem;
    font-style: italic;
    font-weight: bold;
    margin-bottom: 1rem;
    text-align: center;
}

.poster-blurb {
     font-size: 1rem;
    text-align: left;        /* Align text to the left */
    margin-left: 1rem;      /* Add spacing from left edge */
    margin-right: 1rem;     /* Optional: space from right edge too */
    font-weight: normal;  
}

.divider {
    height: 1px;
    background: white;
    max-width: 1000px;   /* Same as .portfolio-content */
    width: 100%;         /* Stretch within that */
    margin: 4rem auto;   /* Center it perfectly */
}


.portfolio-left {
    align-self: center;
    margin-top: -30rem;
    margin-left: -5rem;
}


.portfolio-left .section-title {
    font-size: 3rem;
    font-weight: bold;
    margin: 0;
}n

.portfolio-center {
    display: flex;
    justify-content: center;
}

.portfolio-right {
    align-self: center;
    margin-top: -28rem;
    margin-right: -5rem;
}

.scroll-indicator {
    font-size: 2rem;
    line-height: 2.2rem;
    text-align: center;
    white-space: nowrap;
}

.portfolio-footer {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 3rem;
}

.portfolio-footer p {
    font-size: 0.7rem;
    color: white;
    margin: 0;
    font-weight: 100;
}

