/*
Theme Name: OwenWeber
Author: Owen Weber
Description: Custom single-page portfolio theme for Owen Weber, Creative Director and Executive Producer.
Version: 1.0
Text Domain: owenweber
*/

/* ============================================================
   RESET / BASE
   ============================================================ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
  font-family: helvetica, arial, sans-serif;
  color: #1a1a1a;
  -webkit-font-smoothing: antialiased;
}


img { max-width: 100%; }
a { color: inherit; }

/* Scrollbar */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: #2E2D55; }
::-webkit-scrollbar-thumb { background: #4a4875; }
html { scrollbar-width: thin; scrollbar-color: #4a4875 #2E2D55; }

/* ============================================================
   SECTIONS — no hard borders, no margins between
   ============================================================ */
.section {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 100vw;
  min-height: 100vh;
  padding: 80px 20px 100px;
  border: 0;
  margin: 0;
  box-shadow: none;
  overflow: hidden;
}

#section-home    { background: transparent; padding-bottom: 100px; }
#section-about   { background: transparent; }
#section-reel    { background: transparent; }
#section-work    { background: transparent; }
#section-contact { background: transparent; }

/* Grunge texture on sky sections */
.grunge {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='10' cy='15' r='1'/%3E%3Ccircle cx='40' cy='60' r='1.2'/%3E%3Ccircle cx='80' cy='30' r='0.8'/%3E%3Ccircle cx='100' cy='90' r='1'/%3E%3Ccircle cx='25' cy='100' r='0.9'/%3E%3Ccircle cx='65' cy='10' r='1'/%3E%3Ccircle cx='110' cy='50' r='0.7'/%3E%3Ccircle cx='55' cy='80' r='1.1'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.section-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  line-height: 1.05;
}
.section-label {
  color: #E05A20;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ============================================================
   PANELS
   ============================================================ */
.panel {
  position: relative;
  z-index: 5;
  max-width: 1100px;
  margin: 0 auto;
  border-radius: 22px;
  padding: clamp(24px, 5vw, 56px);
}
.panel-cream { background: rgba(245,241,224,0.95); color: #1a1a1a; backdrop-filter: blur(2px); }
.panel-night { background: rgba(12,10,38,0.86); color: #f5f1e0; backdrop-filter: blur(2px); }

@media (max-width: 768px) {
  .panel { max-width: calc(100vw - 32px); }
}

/* ============================================================
   HOME SECTION
   ============================================================ */
#section-home { display: flex; flex-direction: column; }

.home-hero {
  position: absolute;
  top: 14%;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  max-width: 760px;
  text-align: center;
  z-index: 10;
}
.ow-badge { width: 92px; height: 92px; margin: 0 auto 22px; display: block; object-fit: contain; }
.home-title {
  font-size: clamp(2.4rem, 8vw, 4.6rem);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 700;
  color: #ffffff;
}
.home-tagline {
  font-size: clamp(1rem, 3vw, 1.5rem);
  margin-top: 10px;
  color: rgba(255,255,255,0.9);
  letter-spacing: 1px;
}
.home-subtagline {
  font-size: clamp(0.85rem, 2.4vw, 1.15rem);
  margin-top: 6px;
  color: #E05A20;
  letter-spacing: 1px;
  font-weight: 600;
}
.home-buttons { margin-top: 28px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 40px;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.15s ease, opacity 0.15s ease;
  background: none;
}
.btn:hover { transform: translateY(-2px); }
.btn-orange { background: #E05A20; color: #fff; border-color: #E05A20; }
.btn-outline { background: transparent; color: #ffffff; border-color: rgba(255,255,255,0.8); }
.btn-outline-orange { background: transparent; color: #E05A20; border-color: #E05A20; }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-bio p { font-size: clamp(1rem, 2.4vw, 1.2rem); line-height: 1.7; margin-bottom: 16px; max-width: 760px; }

/* Bio + circular headshot placeholder */
.about-intro {
  display: flex;
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
  flex-wrap: wrap;
}
.about-intro .about-bio { flex: 1 1 320px; min-width: 0; }
.about-headshot {
  flex: 0 0 auto;
  width: clamp(140px, 22vw, 200px);
  height: clamp(140px, 22vw, 200px);
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  border: 2px dashed rgba(22,59,66,0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(22,59,66,0.5);
  text-align: center;
}
.about-headshot svg { width: 44%; height: 44%; }
.about-headshot-label {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
}

/* Photo strip — arrow navigation, no visible scrollbar */
.photo-strip-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 22px 0;
}
.strip-arrow {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(22,59,66,0.08);
  border: 1px solid rgba(22,59,66,0.25);
  color: #163b42;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, opacity 0.2s ease;
}
.strip-arrow:hover { background: rgba(22,59,66,0.18); }
.strip-arrow:disabled { opacity: 0.3; cursor: default; }
.photo-strip {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 14px 0;
  flex: 1 1 auto;
  scroll-behavior: smooth;
  scrollbar-width: none;            /* Firefox: hide scrollbar */
  -ms-overflow-style: none;         /* IE/Edge legacy */
}
.photo-strip::-webkit-scrollbar { display: none; }  /* WebKit: hide scrollbar */
.photo-strip img {
  height: 120px;
  width: auto;
  min-width: 160px;
  object-fit: cover;
  border-radius: 8px;
  flex: 0 0 auto;
  cursor: pointer;
  background: #cfd9d0;
  transition: transform 0.2s ease;
}
.photo-strip img:hover { transform: scale(1.03); }

.stats-row { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 24px; }
.stat-box {
  flex: 1 1 140px;
  background: rgba(255,255,255,0.45);
  border-radius: 14px;
  padding: 22px 18px;
  text-align: center;
}
.stat-number { font-size: clamp(1.8rem, 5vw, 2.6rem); font-weight: 700; color: #E05A20; }
.stat-label { font-size: 0.8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-top: 6px; }

/* ============================================================
   REEL SECTION
   ============================================================ */
.video-wrap-16x9 {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 14px;
  overflow: hidden;
  margin: 22px 0;
  background: #000;
}
.video-wrap-16x9 iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}

.cred-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
}
/* Reel credential boxes — 3 columns x 2 rows on desktop */
.reel-creds {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.cred-box {
  background: rgba(255,255,255,0.45);
  border-radius: 14px;
  padding: 22px;
}
.cred-box h3 { color: #E05A20; font-size: 1.05rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.cred-box p { font-size: 0.95rem; line-height: 1.5; }

/* ============================================================
   WORK SECTION
   ============================================================ */
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.project-card {
  background: #1a1a2e;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.project-card:hover { transform: translateY(-4px); }
.project-thumb {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #1a1a2e center/cover no-repeat;
}
.project-thumb .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  color: rgba(255,255,255,0.3);
}
.project-card-body { padding: 16px 18px 22px; }
.project-card-body h3 { color: #fff; font-size: 1.15rem; margin-bottom: 6px; }
.project-card-body .cat { color: #E05A20; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; }

.view-more-wrap { text-align: center; margin-top: 30px; }

/* Hidden projects expanding container */
.hidden-projects {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
}
.hidden-projects .work-grid { margin-top: 22px; }

/* Client logos */
.clients-block { margin-top: 50px; }
.clients-label { color: #E05A20; font-size: 10px; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; text-align: center; }
.logo-gallery { display: flex; align-items: center; gap: 12px; }
.logo-viewport { overflow: hidden; flex: 1; }
.logo-track { display: flex; gap: 16px; transition: transform 0.4s ease; }
.logo-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 52px;
}
.logo-item img { max-height: 52px; width: auto; object-fit: contain; }
.logo-placeholder {
  width: 120px;
  height: 52px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.75rem;
  text-align: center;
  padding: 4px;
}
.logo-arrow {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 38px; height: 38px;
  border-radius: 50%;
  cursor: pointer;
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1;
}
.logo-arrow:hover { background: rgba(255,255,255,0.2); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-form { margin-top: 24px; max-width: 600px; }
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  padding: 14px 16px;
  color: #f5f1e0;
  font-family: inherit;
  font-size: 1rem;
  margin-bottom: 14px;
}
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: rgba(245,241,224,0.5); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.form-message { margin-top: 10px; font-size: 0.95rem; }
.form-message.success { color: #8CC542; }
.form-message.error { color: #E05A20; }

.contact-availability { margin-top: 28px; line-height: 1.6; color: rgba(245,241,224,0.9); }
/* Home hero social buttons */
.home-socials { margin-top: 16px; display: flex; gap: 14px; justify-content: center; }
.home-social {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; border: 1px solid rgba(255,255,255,0.55);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.home-social:hover { background: #E05A20; border-color: #E05A20; color: #fff; }

/* Contact social icon buttons */
.contact-socials { margin-top: 18px; display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.contact-socials a {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #f5f1e0; border: 1px solid rgba(245,241,224,0.35); text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.contact-socials a:hover { background: #E05A20; border-color: #E05A20; color: #fff; }

/* Reduce the empty right side of the Contact panel: narrow the panel so it wraps the form */
#section-contact .panel { max-width: 680px; margin-left: auto; margin-right: auto; }

/* ============================================================
   FLOATING NAV
   ============================================================ */
.floating-nav {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 16px;
  z-index: 9999;
  background: none;
}
.nav-btn {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid currentColor;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
  transition: background 0.2s ease, color 0.2s ease;
  padding: 0;
}
.nav-btn svg { width: 22px; height: 22px; display: block; }
.nav-btn .nav-label {
  position: absolute;
  bottom: 56px;
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  opacity: 0;
  pointer-events: none;
}

/* color per button (inactive = white fill + colored border/icon) */
.nav-home    { color: #27ae60; }
.nav-about   { color: #f39c12; }
.nav-reel    { color: #e05a20; }
.nav-work    { color: #2980b9; }
.nav-contact { color: #8e44ad; }

/* active = filled circle */
.nav-btn.active { color: #fff; }
.nav-home.active    { background: #27ae60; border-color: #27ae60; }
.nav-about.active   { background: #f39c12; border-color: #f39c12; }
.nav-reel.active    { background: #e05a20; border-color: #e05a20; }
.nav-work.active    { background: #2980b9; border-color: #2980b9; }
.nav-contact.active { background: #8e44ad; border-color: #8e44ad; }

/* ============================================================
   STAR DOTS (work + contact)
   ============================================================ */
.star-dot {
  position: absolute;
  background: #fff;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* night cloud shapes */
.night-cloud { position: absolute; border-radius: 50%; pointer-events: none; z-index: 0; }

/* ============================================================
   LIGHTBOX (about photos + work videos)
   ============================================================ */
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.lightbox-overlay.open { display: flex; }

.lightbox-img { max-width: 90vw; max-height: 80vh; object-fit: contain; border-radius: 8px; }
.lb-close {
  position: absolute;
  top: 18px; right: 22px;
  background: none; border: none;
  color: #fff; font-size: 2.2rem;
  cursor: pointer; line-height: 1;
  z-index: 2;
}
.lb-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.12);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 54px; height: 54px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 2;
}
.lb-arrow.prev { left: 18px; }
.lb-arrow.next { right: 18px; }
.lb-caption { color: #fff; margin-top: 14px; font-size: 0.95rem; text-align: center; }
.lb-count { color: rgba(255,255,255,0.6); margin-top: 4px; font-size: 0.8rem; }

/* Work project lightbox */
.work-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 10000;
  display: none;
  overflow-y: auto;
  padding: 70px 24px 60px;
}
.work-lightbox.open { display: block; }
.wl-header { max-width: 1100px; margin: 0 auto 24px; }
.wl-header h2 { color: #fff; font-size: clamp(1.6rem, 5vw, 2.6rem); text-transform: uppercase; letter-spacing: 1px; }
.wl-header .cat { color: #E05A20; text-transform: uppercase; letter-spacing: 1px; font-size: 0.9rem; margin-top: 6px; }
.wl-overview { max-width: 1100px; margin: 0 auto 28px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.wl-close {
  position: fixed;
  top: 18px; right: 24px;
  background: none; border: none;
  color: #fff; font-size: 2.4rem;
  cursor: pointer; z-index: 3; line-height: 1;
}
.wl-videos { max-width: 1100px; margin: 0 auto; display: grid; gap: 26px; }
.wl-videos.count-1 { grid-template-columns: 1fr; }
.wl-videos.count-2 { grid-template-columns: repeat(2, 1fr); }
.wl-videos.count-many { grid-template-columns: repeat(2, 1fr); }
.wl-video h4 { color: #fff; margin-top: 10px; font-size: 1.05rem; }
.wl-video p { color: rgba(255,255,255,0.6); margin-top: 4px; font-size: 0.9rem; line-height: 1.5; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (min-width: 768px) and (max-width: 1024px) {
  .work-grid { grid-template-columns: repeat(2, 1fr); }
  .cred-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .work-grid { grid-template-columns: 1fr; }
  .cred-grid { grid-template-columns: 1fr; }
  .wl-videos.count-2, .wl-videos.count-many { grid-template-columns: 1fr; }
  .nav-btn { width: 44px; height: 44px; }
  .nav-btn svg { width: 18px; height: 18px; }
  .floating-nav { gap: 12px; }
  .section { padding: 24px 16px 100px; }
  #section-home { padding: 0 0 100px; }
  .home-hero { top: 8%; width: 95%; }
  .home-title { font-size: clamp(1.8rem, 9vw, 3rem); }
  .panel { padding: 20px 18px 30px; }
}

/* Contact section: vertically center the panel in the viewport */
#section-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#section-contact .panel { margin-top: 0; }

/* ============================================================
   PARALLAX SCENE (fixed, behind all sections)
   ============================================================ */
.parallax-scene { position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.parallax-scene .layer { position: absolute; left: 0; top: 0; width: 100%; height: 100%; will-change: transform, opacity; }
.parallax-scene svg.layer { display: block; }
.parallax-scene .sky { position: absolute; inset: 0; }
#sky-morning { background: linear-gradient(180deg, #b8d2da, #e4d4b0); }
#sky-day     { background: linear-gradient(180deg, #78aacd, #b4d2e1); opacity: 0; }
#sky-dusk    { background: linear-gradient(180deg, #3c5082, #c49696); opacity: 0; }
#sky-night   { background: linear-gradient(180deg, #0c122e, #28345c); opacity: 0; }
@media (prefers-reduced-motion: reduce) { .parallax-scene .layer { transform: none !important; } }

/* About bio paragraphs: spaced, readable, not a wall of text */
.about-bio .about-bio-para {
  margin-bottom: 1.2em;
  line-height: 1.75;
  max-width: none;
  overflow: visible;
}
.about-bio .about-bio-para:last-child { margin-bottom: 0; }

/* Bio container establishes a block formatting context to contain the float */
.about-bio {
  overflow: hidden;
}

/* Headshot image: floats right so bio text wraps around it */
.about-headshot-img {
  float: right;
  margin: 0 0 24px 32px;
  width: 264px;
  height: 264px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  flex-shrink: 0;
}

/* Float the headshot (placeholder branch) so bio text wraps around it */
.about-headshot-float {
  float: right;
  margin: 0 0 24px 32px;
  shape-outside: circle();
}

/* Clearfix so the gallery note and photo strip start below the float */
.about-bio::after,
.about-bio-wrap::after {
  content: '';
  display: table;
  clear: both;
}

/* Mobile: headshot stops floating, centers above the bio */
@media (max-width: 768px) {
  .about-headshot-img {
    width: 160px;
    height: 160px;
    margin: 0 auto 20px;
    float: none;
    display: block;
  }
}

/* About gallery note: displays above photo gallery */
.about-gallery-note {
  margin: 24px 0 8px;
  padding: 20px 24px;
  background: rgba(0,0,0,0.04);
  border-left: 3px solid #E05A20;
  border-radius: 0 8px 8px 0;
}
.about-note-para {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.65;
  color: #3a3a3a;
}
.about-note-para:last-child { margin-bottom: 0; }
.about-note-bullets {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4px 28px;
  margin-top: 6px;
}
.about-note-bullet {
  display: block;
  font-size: 13px;
  line-height: 1.7;
  color: #4a4a4a;
}
@media (max-width: 900px) {
  .about-note-bullets { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .about-note-bullets { grid-template-columns: 1fr; }
}

/* About photo strip: mirrors logo gallery pattern */
.about-photo-strip-wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 32px;
}
.about-strip-viewport {
  overflow: hidden;
  flex: 1;
}
.about-strip-track {
  display: flex;
  gap: 12px;
  transition: transform 0.4s ease;
}
.about-strip-item {
  flex: 0 0 auto;
  display: block;
  height: 192px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
}
.about-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: opacity 0.2s ease;
}
.about-strip-item:hover img { opacity: 0.88; }
.strip-arrow {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: rgba(0,0,0,0.12);
  color: #3a3a3a;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease;
}
.strip-arrow:hover { background: #E05A20; color: #fff; }

/* Project role pills (card + lightbox) */
.project-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}
.role-pill {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(224,90,32,0.55);
  border-radius: 999px;
  color: #E05A20;
  background: transparent;
  line-height: 1.4;
  white-space: nowrap;
}
/* Lightbox pills sit on dark panel, use lighter border/text */
.lightbox-roles .role-pill {
  border-color: rgba(245,241,224,0.4);
  color: #f5f1e0;
}
