/* Responsive container & prevent horizontal overflow */
html {
  overflow-x: hidden; /* prevent horizontal scroll */
}
body {
  min-width: 320px; /* avoid layout collapse */
  max-width: 100vw; /* constrain to viewport width */
  overflow-x: hidden; /* prevent horizontal scroll */
}
.container {
  width: min(92%, 1100px);
  margin: 0 auto;
  max-width: 100%;
}
@media (max-width: 900px) {
  .container { width: 94%; }
}
@media (max-width: 600px) {
  .container { width: 96%; max-width: 100vw; }
}
/* Inline-style replacement for centered note container */
.centered-note {
  text-align: center;
  margin-top: 1rem;
}
/* Hide site header when scrolling down */
.site-header.site-header--hidden {
  transform: translateY(-100%);
  transition: transform 180ms ease;
}
.site-header {
  transition: transform 180ms ease;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Contact page styles have moved to css/contact.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ubuntu web font loaded via Google Fonts in HTML */

:root {
  --color-bg: #f2f0f8;          /* slightly darker background */
  --color-bg-alt: #e9e6f3;      /* slightly darker alt background */
  --color-surface: #ffffff;
  --color-surface-alt: #f5f1ff; /* adjusted for subtle contrast */
  --color-text: #1f2225;
  --color-text-muted: #5f6670;
  --color-accent: #66b8e4;      /* darker primary blue */
  --color-accent-alt: #7fcfae;  /* darker secondary green */
  --color-accent-warm: #ffd569;
  --color-accent-cool: #66b8e4; /* align cool variant with new blue */
  --color-border: #d0cae7;      /* adjust border for new palette */
  --gradient-hero: linear-gradient(135deg, #66b8e4 0%, #7fcfae 100%);
  --gradient-button: linear-gradient(135deg, #66b8e4 0%, #7fcfae 100%);
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 28px rgba(0,0,0,0.12);
}

body {
  font-family: 'Ubuntu', Arial, sans-serif;
  font-weight: bold;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  letter-spacing: 1.5px;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
}

p {
  font-size: 1.25rem;
}

.container {
  width: min(90%, 1100px);
  margin: 0 auto;
}

.site-header {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
  border-radius: 0 0 2rem 2rem;
  padding: 1.5rem 0 2rem;
  margin-bottom: 0;
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  color: var(--color-accent);
  font-weight: bold;
  font-size: 2rem;
  text-decoration: none;
  letter-spacing: 2px;
}

.nav-toggle {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-accent);
  display: none;
}

.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-menu a {
  text-decoration: none;
  color: var(--color-text);
  font-weight: 600;
  font-size: 1.25rem;
  transition: background 0.25s, color 0.25s;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
}

.nav-menu a:hover {
  color: #fff;
  background: var(--color-accent);
}

.hero {
  background: #000;
  color: var(--color-text);
  text-align: center;
  padding: 0;
  min-height: 80vh; /* slightly smaller demo reel */
  border-radius: 0; /* full-bleed for demo reel */
  position: relative;
  overflow: hidden;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero h1 {
  /* smaller demo reel title per request */
  font-size: clamp(2.6rem, 6.4vw, 4.8rem);
  margin-bottom: 0.5rem;
  color: #ffffff; /* white title */
  letter-spacing: 2px;
  font-weight: 900;
  /* blue glow shadow using main accent color (#66b8e4) */
  text-shadow: 0 6px 22px rgba(102,184,228,0.85), 0 2px 10px rgba(102,184,228,0.6);
  text-align: center;
}

/* Ensure the inner container centers content and uses full hero height */
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 10;
  text-align: center;
}
.hero .container {
  position: relative;
  z-index: 10;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
  z-index: 2;
}
.hero-vibe {
  font-size: 1.5rem;
  margin-bottom: 2.5rem;
  color: var(--color-text-muted);
  font-style: italic;
  letter-spacing: 1px;
}
.hero .btn {
  display: inline-block;
}
.btn {
  padding: 1rem 2rem;
  background: var(--gradient-button);
  color: var(--color-text);
  text-decoration: none;
  border-radius: 2rem;
  font-weight: bold;
  border: none;
  font-size: 1.25rem;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  box-shadow: var(--shadow-md);
}
.btn:hover {
  background: var(--color-accent-alt);
  color: #fff;
}
.btn:focus {
  outline: 3px solid var(--color-accent-alt);
  outline-offset: 3px;
}

h2, h3 {
  margin-bottom: 1rem;
  color: var(--color-accent);
  font-weight: 800;
  letter-spacing: 1px;
}
h2 {
  font-size: 2.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fill,minmax(300px,1fr));
  gap: 2rem;
}

.card,
.service-card,
.project-card {
  background: var(--color-surface);
  border-radius: 2rem;
  box-shadow: var(--shadow-md);
  padding: 2rem 1.5rem;
  transition: box-shadow 0.25s, transform 0.25s, background 0.25s;
  color: var(--color-text);
  margin-bottom: 2rem;
  position: relative;
  border: 1px solid var(--color-border);
}

.card:hover,
.service-card:hover,
.project-card:hover {
  box-shadow: var(--shadow-lg);
  background: var(--color-surface-alt);
  transform: scale(1.03) rotate(-1deg);
}

.card img,
.project-card img,
.project-card video,
.service-card img {
  width: 100%;
  border-radius: 1.5rem;
  margin-bottom: 1rem;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.project-card video {
  background: var(--color-bg-alt);
  border: 2px solid var(--color-accent);
}

.btn-outline {
  padding: 0.7rem 1.5rem;
  border: 2px solid var(--color-accent-alt);
  background: none;
  color: var(--color-accent-alt);
  text-decoration: none;
  border-radius: 2rem;
  font-weight: bold;
  font-size: 1.25rem;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
  display: inline-block;
  margin-top: 1.5rem;
}
.btn-outline:hover {
  background: var(--color-accent-alt);
  color: #fff;
}
.btn-outline:focus {
  outline: 3px solid var(--color-accent);
  outline-offset: 3px;
}

.about {
  padding: 4rem 0;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text .btn-outline {
  align-self: flex-start;
  width: auto;
}

.about-text p {
  margin-bottom: 2rem;
}

.about-headshot {
  float: left;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 0 2rem 1.5rem 0;
  shape-outside: margin-box;
}

@media (max-width: 600px) {
  .about-headshot {
    float: none;
    display: block;
    margin: 0 auto 1.5rem;
    max-width: 250px;
  }
}

.about-image img {
  width: 100%;
  border-radius: 2rem;
  box-shadow: 0 4px 24px rgba(127,216,255,0.15);
}

.services {
  padding: 0 0 1.5rem; /* add small bottom spacing */
  margin: 0;
}

/* Remove top and bottom spacing for Services when using section-spacing */
.services.section-spacing { margin-top: 0; margin-bottom: 0; }
.services h2 { margin-top: 0; margin-bottom: 0.5rem; }

/* Reduce vertical size of the Featured Projects section */
.portfolio {
  padding: 2rem 0; /* smaller vertical padding */
}
.portfolio.section-spacing { margin-top: 0.5rem; margin-bottom: 1.5rem; }
.about.section-spacing { margin-bottom: 0.5rem; }

/* Give the Featured Projects heading a little breathing room */
.portfolio h2 {
  margin-bottom: 1.75rem;
}
.portfolio .project-card {
  padding: 1.25rem 1rem; /* slightly tighter card padding */
}

.service-card {
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Remove spacing between service boxes specifically */
.services .grid-2 {
  gap: 1rem; /* modest gap between service cards */
}
.services .service-card {
  margin-bottom: 1rem; /* small per-card bottom margin inside services */
  padding-bottom: 1rem; /* inner padding for visual separation */
}

blockquote {
  min-width: 320px;
  background: var(--color-surface-alt);
  color: var(--color-text);
  padding: 2rem;
  border-left: 6px solid var(--color-accent-alt);
  border-radius: 2rem;
  box-shadow: var(--shadow-sm);
  font-size: 1.25rem;
  font-style: italic;
}

.contact {
  background: var(--color-surface);
  padding: 4rem 0;
  border-radius: 2rem;
  margin-top: 0;
  border: 1px solid var(--color-border);
}

.contact h2 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  padding: 0.75rem 0 1rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-form input,
.contact-form textarea {
  padding: 1rem;
  border: 2px solid var(--color-accent);
  border-radius: 1.5rem;
  background: var(--color-bg-alt);
  color: var(--color-text);
  font-size: 1.25rem;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--color-accent-alt);
  background: var(--color-surface-alt);
}

.site-footer {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  padding: 2rem 0;
  border-top: 1px solid var(--color-border);
  border-radius: 2rem 2rem 0 0;
}
.site-footer a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color 0.2s;
}
.site-footer a:hover {
  color: var(--color-accent-alt);
}
.flex-between {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

/* Responsive adjustments (do not change desktop rules above) */
@media (max-width: 1200px) {
  :root { --grid-gap: 2rem; }
  .container { width: min(94%, 980px); }
  h2 { font-size: 2.25rem; }
  .hero { min-height: 70vh; }
}

@media (max-width: 900px) {
  body { font-size: 15px; }
  .container { width: min(96%, 720px); }
  .grid-2 { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero { min-height: 56vh; padding: 1rem 0; margin-bottom: 1.5rem; }
  .hero h1 { font-size: clamp(2.2rem, 6.4vw, 3.2rem); }
  .card, .project-card, .service-card { padding: 1rem; }
  .btn, .btn-outline { font-size: 1rem; padding: 0.75rem 1.25rem; }
  .about { padding: 2rem 0; }
}

@media (max-width: 600px) {
  body { font-size: 14px; letter-spacing: 0.5px; }
  .container { width: 95%; }
  .logo { font-size: 1.6rem; }
  .hero { min-height: 48vh; margin-bottom: 1rem; }
  .hero h1 { font-size: clamp(1.8rem, 7.2vw, 2.6rem); }
  .grid-2 { grid-template-columns: 1fr; }
  .about-text p { font-size: 1rem; }
  .about { padding: 1.5rem 0; }
  .nav-toggle { display: inline-block; }
  /* Define a mobile header height for positioning the dropdown just below */
  .site-header { --header-height: 72px; }
  /* Mobile nav: hidden by default */
  .nav-menu { position: relative; }
  .nav-menu ul { display: none; }
  /* When open, show a styled dropdown */
  .nav-menu.nav-menu--open ul {
    display: flex;
    position: fixed; /* detach from header box and place under it */
    top: calc(var(--header-height) + 8px);
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0.5rem;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    border: 1px solid var(--color-border);
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: var(--shadow-lg);
    z-index: 1001;
    width: min(560px, 94vw);
    margin: 0 auto; /* center under header */
  }
  .nav-menu.nav-menu--open ul li a {
    display: block;
    padding: 0.6rem 0.8rem;
    border-radius: 0.8rem;
    font-size: 1.05rem;
    color: var(--color-text);
    background: transparent;
  }
  .nav-menu.nav-menu--open ul li a:hover {
    background: var(--color-surface-alt);
    color: var(--color-accent);
  }
}

.social a {
  margin-right: 1rem;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 1.2rem;
  display: inline-block;
}
.social a img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  vertical-align: middle;
}

.section-spacing {
  margin-top: 4rem;
  margin-bottom: 4rem;
}

/* Ensure the hero sits flush under the header even when using section-spacing */
.hero.section-spacing { margin-top: 0 !important; }

.preview-slider {
  background: var(--color-surface);
  padding: 5rem 0 4rem 0;
  /* slightly reduced height so the section is a bit smaller while still fitting portraits */
  min-height: 700px;
  /* approximate max visible photo width used to place controls near the photo */
  --photo-max: 440px;
  border-radius: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
}
/* Slider / preview styles */
.slider-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* expose a CSS variable for consistent sizing */
  --slider-height: 660px;
}
.slider-wrapper { perspective: 1200px; height: var(--slider-height); }
.slider-track {
  display: flex;
  gap: 1rem;
  align-items: center;
  transition: width 0.25s ease, height 0.25s ease;
  position: relative;
}
.slider-photo {
  display: block;
  /* base size (conservative) — landscape images will be enlarged via the .landscape selector */
  max-width: clamp(140px, 18vw, 440px);
  width: auto;
  height: auto;
  max-height: calc(var(--slider-height) - 60px); /* allow vertical photos to be fully visible */
  border-radius: 0.6rem;
  object-fit: cover;
  opacity: 0.9;
  filter: grayscale(70%) brightness(0.85);
  transform-origin: center center;
  transition: transform 420ms cubic-bezier(.2,.9,.2,1), opacity 240ms ease, filter 240ms ease;
  flex: 0 0 auto;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  will-change: transform, opacity, filter;
}
  .slider-track { justify-content: center; padding: 0 3rem; }
.slider-photo { opacity: 0.65; }
.slider-photo.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1.08);
  filter: none;
  box-shadow: 0 20px 44px rgba(0,0,0,0.30);
}
.slider-photo.prev,
.slider-photo.next {
  opacity: 0.85;
}

/* Hide off-screen photos slightly to avoid visual clutter */
.slider-photo[style*="translateZ"] {
  backface-visibility: hidden;
}
.slider-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--color-accent);
  color: #fff;
  border: none;
  padding: 0.75rem 0.95rem;
  border-radius: 0.5rem;
  cursor: pointer;
  z-index: 1000; /* ensure arrows sit above photos */
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
  line-height: 1; /* normalize text arrow size */
}
.slider-btn:focus { outline: 2px solid var(--color-accent); }
.slider-btn--left { transform: translate(-50%, -50%) translateX(calc(-1 * (var(--photo-max) / 2) - 220px)); }
.slider-btn--right { transform: translate(-50%, -50%) translateX(calc((var(--photo-max) / 2) + 220px)); right: auto; }
.slider-indicators {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.slider-indicators span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--color-border);
  display: inline-block;
  cursor: pointer;
  transition: all 180ms ease;
}
.slider-indicators span.active {
  background: var(--color-accent);
  width: 12px;
  height: 12px;
}

@media (max-width: 640px) {
  .preview-slider { padding: 2.5rem 0 2rem; min-height: 440px; max-width: 100vw; overflow: hidden; }
  .slider-wrapper { --slider-height: 380px; max-width: 100vw; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
  .slider-wrapper::-webkit-scrollbar { display: none; }
  .slider-photo { max-width: clamp(120px, 42vw, 260px); max-height: calc(var(--slider-height) - 40px); }
  /* lock identical dimensions for left/right arrows */
  .slider-btn {
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 20px;
    line-height: 40px;
    border-radius: 6px;
    pointer-events: auto;
    text-align: center;
  }
}

/* iPad vertical: ensure arrows are visible and photos are larger */
@media (min-width: 641px) and (max-width: 1100px) {
  .preview-slider { min-height: 800px; } /* taller section for larger photos */
  .slider-wrapper { --slider-height: 720px; } /* increase slider height */
  .slider-photo {
    max-width: clamp(350px, 60vw, 750px) !important; /* much larger photos on iPad */
    max-height: calc(var(--slider-height) - 80px) !important;
  }
  .slider-photo.landscape {
    max-width: clamp(450px, 70vw, 900px) !important; /* much larger landscape photos */
  }
  .slider-wrapper { --photo-max: 750px; } /* update photo-max for arrow positioning */
  .slider-btn {
    width: 56px;
    height: 56px;
    padding: 0;
    font-size: 28px;
    line-height: 56px;
    border-radius: 10px;
    pointer-events: auto;
    text-align: center;
    background: var(--color-accent) !important;
    color: #fff !important;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3) !important;
    z-index: 1000 !important;
    display: block !important;
  }
  /* Position arrows aligned with slider-wrapper center (middle of photos) */
  .slider-btn { position: absolute !important; top: 50% !important; }
  .slider-btn--left { left: 20px !important; right: auto !important; transform: translateY(-50%) !important; }
  .slider-btn--right { right: 20px !important; left: auto !important; transform: translateY(-50%) !important; }
}

/* Improve visual spacing so neighbors peek and don't get fully clipped */
@media (min-width: 860px) {
  .slider-wrapper { padding: 0 6rem; }
  .slider-photo { max-width: clamp(180px, 20vw, 520px); }
  /* larger photos on big screens — update photo-max so controls sit near edge of image */
  .slider-wrapper { --photo-max: 720px; }
  .slider-btn--left { transform: translate(-50%, -50%) translateX(calc(-1 * (var(--photo-max) / 2) - 360px)); }
  .slider-btn--right { transform: translate(-50%, -50%) translateX(calc((var(--photo-max) / 2) + 360px)); right: auto; }
}

@media (max-width: 640px) {
  /* Position arrows over the photo on vertical screens - match edge distances */
  .slider-btn { position: absolute; top: 50%; transform: translateY(-50%); }
  .slider-btn--left { left: 12px; transform: translateY(-50%); }
  .slider-btn--right { right: 12px; left: auto; transform: translateY(-50%); }
}

/* Landscape images should be larger — target only images marked by JS */
.slider-photo.landscape {
  /* larger landscape sizing */
  max-width: clamp(260px, 28vw, 900px);
}
.slider-photo.landscape.active {
  transform: translate(-50%, -50%) scale(1.14);
  box-shadow: 0 26px 56px rgba(0,0,0,0.34);
}
.slider-photo.portrait {
  /* portraits are constrained by height to show full vertical image */
  max-height: calc(var(--slider-height) - 60px);
  width: auto;
}
/* (rest of file copied as-is) */

/* Featured Projects layout and sizing overrides */
.vibey-projects {
  display: grid;
  /* All 4 videos horizontal in a single row */
  grid-template-columns: repeat(4, auto);
  justify-content: center; /* center the grid itself */
  justify-items: center; /* center each box within its grid cell */
  gap: 3.5rem; /* more gap between boxes */
  align-items: center; /* center vertically for balanced look */
  padding: 0; /* no padding - reach beyond margins */
  margin: 0 -5%; /* pull boxes beyond container margins */
}
.vibey-projects .project-card {
  padding: 0 !important; /* absolutely no padding around videos */
  margin: 0; /* no margin */
  border-radius: 0.8rem;
  box-shadow: var(--shadow-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.vibey-projects .project-card img,
.vibey-projects .project-card video {
  width: 100%; /* fill box width */
  max-width: min(22vw, 380px); /* smaller boxes */
  height: auto; /* size according to media aspect ratio */
  max-height: min(60vh, 420px); /* smaller height cap */
  margin: 0 !important; /* absolutely no margin around videos */
  padding: 0 !important; /* absolutely no padding */
  object-fit: cover; /* fill entire box, no whitespace */
  background: #000;
  border: none;
  border-radius: 0;
  box-shadow: none;
  display: block;
}
@media (min-width: 1200px) {
  .vibey-projects {
    grid-template-columns: repeat(4, auto); /* 4 columns horizontal on desktop */
    justify-content: center;
    justify-items: center;
    gap: 3rem; /* more gap between boxes */
    padding: 0; /* no padding - reach beyond margins */
    margin: 0 -8%; /* pull boxes further beyond container margins */
  }
  .vibey-projects .project-card img,
  .vibey-projects .project-card video {
    width: 100%; /* fill box width */
    max-width: min(20vw, 420px); /* smaller on large screens */
    height: auto; /* size according to media aspect ratio */
    max-height: min(65vh, 480px); /* smaller height cap */
  }
}
.vibey-projects .project-card h3 {
  padding: 1rem 1.2rem 0 1.2rem; /* padding around heading, no bottom padding */
  margin-bottom: 0; /* remove spacing below heading */
}
.vibey-projects .project-card p {
  padding: 0.2rem 1.2rem 1rem 1.2rem; /* minimal top padding, no gap between heading and description */
  margin-top: 0; /* remove spacing above description */
}

/* Stack featured projects vertically on narrow/vertical screens */
@media (max-width: 1100px) {
  .vibey-projects {
    grid-template-columns: 1fr !important; /* single column stack - force override */
    margin: 0; /* no negative margins on small screens */
    gap: 1.25rem; /* tighter gap between stacked items */
    justify-content: center;
    justify-items: center;
    max-width: 100vw;
    overflow: hidden;
  }
  .vibey-projects .project-card {
    max-width: 70vw; /* narrower cards on mobile */
  }
  .vibey-projects .project-card img,
  .vibey-projects .project-card video {
    max-width: 100%; /* fill card width but no more */
    width: 100%;
    height: auto; /* maintain aspect ratio */
  }
}

/* iPad vertical: 4 projects stacked top to bottom */
@media (min-width: 601px) and (max-width: 1100px) {
  .vibey-projects {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }
  .vibey-projects .project-card {
    max-width: 60vw;
    min-height: 0; /* allow box to shrink/grow with video */
    height: auto;
  }
  .vibey-projects .project-card img,
  .vibey-projects .project-card video {
    max-height: none; /* remove height cap so video fills naturally */
  }
}