/* ===== BASE TYPOGRAPHY ===== */
body, h1, h2, h3, h4, h5, h6 {
  font-family: "Montserrat", sans-serif;
}

body, html {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #111;
  line-height: 1.8;
  background-color: #fff;
}

/* --- Page frame: lets content fill the screen and footer sit at the bottom --- */
body {
  min-height: 100svh;          /* mobile-safe full height */
  display: flex;
  flex-direction: column;
}

.content {
  flex: 0 0 auto;            /* grow and push footer down (was 0 0 auto) */
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 0px;                 /* your requested inline padding */
}

/* Modeling/mobile fix: stop flexing the page wrapper BUT keep it growing */
@media (max-width: 767px) {
  .content {
    display: block;      /* fixes the modeling layout */
    flex: 0 0 auto;      /* keep growth so footer stays at bottom */
    min-width: 0;
    min-height: 0;
    padding: 0;
  }
}

footer {
  flex: 0 0 auto;               /* footer never shrinks */
  margin-top: auto;             /* stick to bottom when content is short */
  width: 100%;
}

/* Navigation hover */
.w3-hover-opacity {
  cursor: pointer;
}

/* Tooltip styling for footer icons */
.tooltip {
  position: relative;
  display: inline-block;
}

.tooltip .tooltiptext {
  visibility: hidden;
  width: 144px;
  background-color: black;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 10px;
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -72px;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}
/* ===== GENERAL END ===== */

/* ===== HERO SECTION (i.e. home page landing) ===== */
/* ===== Desktop / default (unchanged) ===== */
.hero-container {
  position: relative;
  width: 100%;
  height: 100vh;
  background: url('https://d1bsqia9hrbr6u.cloudfront.net/Lalo+Torres+2022/Dara_stetts6523_v1a.jpg') no-repeat center top / cover;
  display: flex;
  align-items: flex-end;   /* bottom-aligned */
  padding: 2rem;
  box-sizing: border-box;
}

.hero-text {
  color: #fff;
  font-family: 'Montserrat', 'Helvetica Neue', sans-serif;
  text-align: left;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  line-height: 1.3;
  animation: fadeIn 1.2s ease;
  margin-bottom: 5rem;   /* desktop height breathing room */
  margin-left: 3rem;     /* <-- new: adds spacing from left */
  max-width: 600px;      /* optional: prevent super-wide text on big screens */
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  margin: 0;
}

.hero-text p {
  font-size: 1.05rem;
  font-weight: 300;
  opacity: 0.9;
  margin-top: 0.5rem;
}
/* ===== Phones (<768px): full height, left-justified, snug to bottom ===== */
@media screen and (max-width: 767px) {
  .hero-container {
    min-height: 100svh;
    height: 100dvh;
    padding: 1rem;
    align-items: flex-end;
    justify-content: flex-start;
    background-position: center center;
  }

  .hero-text {
    margin-left: 1rem;     /* tight to edge on phones */
    margin-bottom: 2rem;   /* <-- lifted a bit from bottom */
  }
}

/* ===== Tablets (768px–1024px): raise slightly so it doesn't feel too low ===== */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .hero-container {
    padding: 2rem;            /* keep your desktop padding */
    align-items: flex-end;    /* still bottom-aligned */
  }

  .hero-text {
    margin-left: 2rem;   /* comfortable spacing on tablets */
    margin-bottom: 3rem;
  }
}
/* ===== HERO SECTION END ===== */

/* Section spacing */
.w3-container {
  padding: 64px 16px;
}

.w3-content {
  max-width: 1200px;
  margin: auto;
}

.w3-image {
  border-radius: 12px;
}

.broadway-section h2 {
  margin-top: 0;
  margin-bottom: 0;
}

.broadway-section .broadway-subtitle {
  margin-top: 0;
}

/* About two-column layout for larger screens */
@media screen and (min-width: 768px) {
  .w3-row-padding {
    display: flex;
    align-items: flex-start;
    gap: 32px;
  }

  .w3-half {
    flex: 1;
  }
}

/* ===== ABOUT SECTION ===== */

/* Desktop / large: side by side split */
#about .w3-row-padding {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 24px;
}

#about .bio-col {
  flex: 1;
  padding: 0 24px 12px 24px;
}

#about .photo-col {
  flex: 1;
}

#about .photo-col img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;  /* optional style */
}

/* ===== Mobile: stack into one column ===== */
@media (max-width: 767px) {
  /* override W3’s floats + our flex */
  #about .w3-row-padding {
    display: block !important;
    gap: 0 !important;
  }

  /* PHOTO column first */
  #about .photo-col {
    margin: 0 auto !important;     /* center the image block itself */
    max-width: 420px;              /* limit width on small screens */
    width: 100% !important;
    text-align: center;
  }

  #about .photo-col img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  /* BIO column second */
  #about .bio-col {
    max-width: 720px;
    margin: 16px auto 0 !important;  /* centers block but keeps it below photo */
    padding: 16px 12px 0 12px !important;
    text-align: left !important;     /* keep text left aligned */
  }
}
/* ===== ABOUT SECTION END ===== */

.acting-section {
  background-color: #fafafa;
  padding: 4rem 2rem;
}

.acting-tagline {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto 3rem;
  opacity: 0.9;
}

.video-row {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.video-card {
  width: 450px;
  text-align: center;
}

.video-card iframe {
  width: 100%;
  height: 280px;
  border-radius: 8px;
  box-shadow: 0 6px 12px rgba(0,0,0,0.1);
}

.video-label {
  margin-top: 0.75rem;
  font-size: 1rem;
  font-weight: 400;
}

.selftape-heading {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 500;
  margin: 4rem 0 2rem;
}

.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0 1rem;
}

.closing-line {
  text-align: center;
  margin-top: 3rem;
  font-weight: 300;
  font-size: 1rem;
  opacity: 0.8;
}

/* Hero Section */
.hero-acting {
  background-image: url('https://example.com/your-hero-image.jpg');
  background-size: cover;
  background-position: center;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  color: white;
}

.hero-overlay {
  background-color: rgba(0, 0, 0, 0.55);
  padding: 2rem;
  border-radius: 12px;
  max-width: 90%;
}

.hero-overlay h1 {
  font-size: 3.5rem;
  margin: 0;
  letter-spacing: 0.04em;
}

.hero-overlay p {
  font-size: 1.2rem;
  font-style: italic;
  margin-top: 0.5rem;
}

/* Red Carpet & Playbill Section */
.acting-section-image, .playbill-feature {
  margin: 1rem auto;
  max-width: 960px;
  text-align: center;
}

/* ===== MOBILE (≤ 767px) ===== */
@media (max-width: 767px) {
  /* Red Carpet & Playbill Section */
  .acting-section-image, .playbill-feature {
    margin: 0px 20px 0px 20px;
    max-width: 960px;
    text-align: center;
  }
}

.feature-img, .playbill-img {
  width: 100%;
  max-width: 800px;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.caption {
  margin-top: 0.75rem;
  font-size: 1rem;
  color: #666;
  font-style: italic;
}

/* Video Section */
.video-grid {
  padding: 4rem 1rem;
  text-align: center;
}

.section-heading {
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.video-pair {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.video-block {
  max-width: 460px;
  flex: 1 1 400px;
}

.video-block iframe {
  width: 100%;
  height: 260px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.video-caption {
  margin-top: 0.75rem;
  font-weight: 400;
  font-size: 1rem;
}

/* TikTok Embed Section */
.tiktok-section {
  padding: 4rem 1rem;
  background-color: #f9f9f9;
  text-align: center;
}

.tiktok-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  justify-items: center;
}

.broadway-section {
  text-align: center;
  margin-top: 6rem;
  margin-bottom: 2rem;
  padding: 0 2rem;
  animation: fadeIn 1.2s ease;
}

.broadway-title {
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.broadway-subtitle {
  font-size: 1.25rem;
  font-weight: 300;
  opacity: 0.85;
  line-height: 1.6;
}

/* Mobile tweak */
@media (max-width: 767px) {
  .broadway-section {
    margin-top: 4rem;    /* tighter top spacing */
    margin-bottom: 0rem;   /* less bottom spacing */
    padding: 0 1rem;       /* a little narrower */
  }

  .broadway-title {
    font-size: 2rem;       /* slightly smaller headline */
  }

  .broadway-subtitle {
    font-size: 1rem;       /* match smaller screens */
    line-height: 1.4;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-subtitle {
  text-align: center;
  font-size: 1rem;
  font-style: italic;
  color: #666;
  margin-top: -10px;
  margin-bottom: 30px;
}

.modeling-section-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem;
  margin: 60px auto;
  max-width: 1200px;
}

.modeling-section-row .feature-img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.modeling-section-image-half {
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.modeling-section-row .caption {
  width: 100%;
  text-align: center;
  font-style: italic;
  margin-top: 1rem;
  font-size: 1rem;
}

@media (max-width: 768px) {
  .modeling-section-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .modeling-section-image-half {
    flex: 1 1 100%;
  }
}

.modeling-section-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 40px 0;
}

.modeling-section-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.feature-img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

/* ===== MARTIAL ARTS SECTION ===== */
.martialarts-section {
  text-align: center;
  padding: 60px 20px 20px 20px;
}

.martialarts-section-row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
  padding: 0px 60px;
}

.martialarts-section-column {
  flex: 1;
  min-width: 300px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.martialarts-section-column img.feature-img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  object-fit: cover;
}

.martialarts-section-column .feature-text {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  font-family: "Helvetica Neue", sans-serif;
  margin: 0px 0px;
}

@media (max-width: 768px) {
  .martialarts-section-row {
    flex-direction: column;
    padding: 0px 20px;
  }
}
/* ===== MARTIAL ARTS SECTION END ===== */

/* ===== HEADSHOT & RESUME ===== */
/* ===== TITLE SWAP (desktop long, mobile short) ===== */
.broadway-title .full-title { display: inline; }
.broadway-title .short-title { display: none; }
@media (max-width: 600px) {
  .broadway-title .full-title { display: none; }
  .broadway-title .short-title { display: inline; }
}

/* ===== HEADSHOT & RESUME (Desktop / Tablet ≥ 768px) ===== */
.headshot-resume-split {
  display: flex;
  gap: 24px;
  height: clamp(560px, 85vh, 1000px);
  padding: 0 24px 40px;
  box-sizing: border-box;
  align-items: stretch;
}

.headshot-image,
.resume-col {
  flex: 1 1 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.media-box,
.resume-box {
  width: 100%;
  height: 100%;
  max-width: min(640px, 48vw);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Headshot: never crop */
.headshot-img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

/* Resume iframe */
.resume-inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;   /* center child vertically */
  justify-content: center;
}

.resume-embed {
  width: 100%;
  height: auto;                  /* don’t force full column height */
  aspect-ratio: 8.5 / 11;        /* Letter paper ratio */
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  display: block;
  max-height: 100%;              /* avoid overflowing column */
}

/* Button wrapper (hidden on desktop; shown on mobile) */
.resume-download-mobile { 
  display: none; 
  text-align: center; 
}
.resume-download-mobile .download-btn {
  display: inline-block;
  padding: 12px 20px;
  background: #111;
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s, transform .06s;
}
.resume-download-mobile .download-btn:hover { background:#333; }
.resume-download-mobile .download-btn:active { transform: translateY(1px); }

/* ===== Tablet mid-range fix (≤ 1199px) ===== */
@media (min-width: 768px) and (max-width: 1199px) {
  .resume-embed {
    width: min(640px, 46vw);
    height: auto;
    aspect-ratio: 8.5 / 11;
    max-height: 100%;
  }
}

/* ===== MOBILE (≤ 767px) ===== */
@media (max-width: 767px) {
  .headshot-resume-split {
    display: block !important;
    padding: 0 16px 0 !important;
    height: auto !important;
    min-height: 0 !important;
  }

  .headshot-image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .headshot-img {
    height: clamp(420px, calc(100svh - var(--footer-h, 0px) - 240px), 78svh) !important;
    width: auto !important;
    max-width: 92vw !important;
    object-fit: contain !important;
    object-position: center center !important;
    border-radius: 5px !important;
  }

  /* hide PDF viewer */
  .resume-col, .resume-embed { display: none !important; }

  /* button at bottom */
  .resume-download-mobile {
    display: block !important;
    margin-top: auto !important;
    padding: 12px 16px calc(16px + env(safe-area-inset-bottom)) !important;
  }
}
/* ===== HEADSHOT & RESUME END ===== */

/* ===== CONTACT SECTION ===== */
.contact-section {
  text-align: center;
  margin-top: 80px;
  margin-bottom: 40px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 60px;
  padding: 0 40px 80px;
}

.contact-block {
  max-width: 300px;
  text-align: center;
  margin-top: 40px;
}

.contact-block h2 {
  font-size: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-block h4 {
  font-weight: 600;
  margin-top: 24px;
  margin-bottom: 6px;
}

.contact-block p {
  font-size: 14px;
  line-height: 1.6;
}

.contact-block a {
  color: inherit;
  text-decoration: underline;
}
/* ===== CONTACT SECTION END ===== */
