:root {
  --background: #FAE7D2;
}

.wood-wall-bg {
  background-image: url("/wood-texture-overlay.svg"), url("/wood-background.png");
  background-repeat: repeat, repeat;
  background-size: 170px 170px, auto;
  background-blend-mode: multiply, normal;
}

.wood-navbar-bg {
  background-image: url("/wood-texture-overlay.svg"), url("/navbar-background.png");
  background-repeat: repeat, repeat-x;
  background-size: 170px 170px, auto 100%;
  background-position: center, center;
  background-blend-mode: multiply, normal;
}

.wood-footer-bg {
  background-image: url("/wood-texture-overlay.svg"), url("/footer-background.png");
  background-repeat: repeat, repeat-x;
  background-size: 170px 170px, auto 100%;
  background-position: center, center bottom;
  background-blend-mode: multiply, normal;
}

.wood-surface {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 24px;
  background-image:
    radial-gradient(120% 100% at 0% 0%, rgba(255, 255, 255, 0.16) 0%, transparent 55%),
    radial-gradient(120% 100% at 100% 100%, rgba(0, 0, 0, 0.1) 0%, transparent 60%),
    linear-gradient(180deg, var(--wood-1), var(--wood-2));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18);
}

.wood-surface::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: url("/wood-texture-overlay.svg");
  background-repeat: repeat;
  background-size: 160px 160px;
  opacity: 0.86;
  mix-blend-mode: multiply;
}

.wood-surface::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -3px 10px rgba(0, 0, 0, 0.08);
}

.wood-surface > * {
  position: relative;
  z-index: 1;
}

.wood-surface--brown {
  --wood-1: #b87642;
  --wood-2: #8a542f;
}

.wood-surface--blue {
  --wood-1: #4d7fb1;
  --wood-2: #2f5f90;
}

.wood-surface--green {
  --wood-1: #7f8e42;
  --wood-2: #5e6d2d;
}

.wood-surface--cream {
  --wood-1: #ead8c0;
  --wood-2: #d8c1a3;
}

.wood-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 9999px;
  cursor: pointer;
  padding: 0.5rem 1rem;
  font-family: "Saira", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  color: #f5f1d6;
  text-shadow: 0 2px 0 rgba(0, 0, 0, 0.35);
  appearance: none;
  -webkit-appearance: none;
  background-image:
    radial-gradient(120% 85% at 50% 0%, rgba(255, 255, 255, 0.16), transparent 42%),
    url("/wood-texture-overlay.svg"),
    linear-gradient(180deg, var(--wood-btn-1), var(--wood-btn-2));
  background-repeat: no-repeat, repeat, no-repeat;
  background-size: auto, 110px 110px, auto;
  background-position: center, center, center;
  background-blend-mode: normal, multiply, normal;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.12),
    inset 0 -2px 0 rgba(0, 0, 0, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.16),
    0 3px 0 var(--wood-btn-depth),
    0 6px 10px rgba(0, 0, 0, 0.18);
  transition:
    transform 0.08s ease,
    box-shadow 0.08s ease,
    filter 0.08s ease;
}

.wood-button:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.14),
    inset 0 -2px 0 rgba(0, 0, 0, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.18),
    0 4px 0 var(--wood-btn-depth),
    0 9px 12px rgba(0, 0, 0, 0.2);
}

.wood-button:active {
  transform: translateY(3px);
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.08),
    inset 0 -2px 0 rgba(0, 0, 0, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 1px 0 var(--wood-btn-depth),
    0 3px 6px rgba(0, 0, 0, 0.16);
}

.wood-button--orange {
  --wood-btn-1: #f08a4c;
  --wood-btn-2: #b95418;
  --wood-btn-depth: #7d3510;
}

.wood-button--green {
  --wood-btn-1: #859156;
  --wood-btn-2: #5a6237;
  --wood-btn-depth: #3f4326;
}

.dashboard-action-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid rgba(120, 92, 58, 0.28);
  padding: 1rem 1.15rem;
  box-shadow:
    inset 0 2px 0 rgba(255, 255, 255, 0.32),
    inset 0 -2px 0 rgba(101, 73, 44, 0.16),
    0 2px 0 rgba(110, 78, 44, 0.28),
    0 8px 16px rgba(49, 33, 17, 0.14);
  transition:
    transform 0.08s ease,
    filter 0.08s ease,
    box-shadow 0.08s ease;
}

.dashboard-action-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(130% 90% at 0% 0%, rgba(255, 255, 255, 0.18) 0%, transparent 52%),
    url("/wood-texture-overlay.svg");
  background-repeat: no-repeat, repeat;
  background-size: auto, 72px 72px;
  background-position: center, center;
  mix-blend-mode: multiply;
  opacity: 1;
}

.dashboard-action-card:hover {
  filter: brightness(1.015);
}

.dashboard-action-card--selected {
  transform: scale(1.05);
}

.dashboard-action-card--selected:hover {
  transform: scale(1.05);
  filter: none;
}

.dashboard-action-card > * {
  position: relative;
  z-index: 1;
}

.dashboard-action-card--orange {
  background-image: linear-gradient(180deg, #fdb884 0%, #fdb884 100%);
  border-color: rgba(146, 63, 16, 0.54);
  box-shadow:
    inset 0 2px 0 rgba(255, 232, 204, 0.3),
    inset 0 -2px 0 rgba(117, 43, 10, 0.28),
    0 3px 0 rgba(123, 47, 10, 0.58),
    0 8px 16px rgba(78, 31, 8, 0.2);
}

.dashboard-action-card--orange::before {
  opacity: 1;
}

.dashboard-action-card--cream {
  background-image: linear-gradient(180deg, #fbdfae 0%, #fbdfae 100%);
}

.dashboard-action-card--green {
  background-image: linear-gradient(180deg, #ebe3bc 0%, #ebe3bc 100%);
}

.dashboard-action-card--blue {
  background-image: linear-gradient(180deg, #d4d7d9 0%, #d4d7d9 100%);
}

.dashboard-action-icon {
  display: inline-flex;
  height: 3.25rem;
  width: 3.25rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 1.1rem;
  border: 1px solid rgba(114, 90, 58, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    0 2px 5px rgba(56, 35, 17, 0.12);
}

.dashboard-action-icon--bare {
  height: 6.75rem;
  width: 7.5rem;
  justify-content: flex-start;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.dashboard-action-icon--orange {
  background: radial-gradient(circle at 35% 30%, rgba(255, 255, 255, 0.52) 0%, rgba(255, 251, 245, 0.96) 42%, #efd9bc 100%);
}

.dashboard-action-icon--cream {
  background: linear-gradient(180deg, #f7da8c 0%, #ecb229 100%);
}

.dashboard-action-icon--gold {
  background: linear-gradient(180deg, #f8d55a 0%, #e8aa1f 100%);
}

.dashboard-action-icon--paper {
  background: linear-gradient(180deg, #faf2e7 0%, #e6d3b6 100%);
}

.dashboard-action-icon--blue {
  background: linear-gradient(180deg, #72a1d0 0%, #3f678f 100%);
}

.film-room-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

.film-room-shell {
  position: relative;
  background-color: #c9955f;
  background-image: url("/wood-board-background.jpg");
  background-repeat: repeat;
  background-size: 280px auto;
  box-shadow:
    inset 0 0 0 3px #4a2209,
    inset 0 0 0 7px #b86d2d,
    inset 0 0 0 10px #da9956,
    inset 0 0 0 13px #8f511f,
    inset 0 0 0 16px #5a2c0f,
    inset 0 1px 0 rgba(255, 221, 180, 0.2),
    0 10px 20px rgba(62, 34, 12, 0.12);
}

.film-room-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: rgba(72, 36, 12, 0.12);
}

.film-room-shell > * {
  position: relative;
  z-index: 1;
}

.film-room-card {
  position: relative;
  background-color: #fbe5ca;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.45),
    inset 0 -2px 0 rgba(127, 86, 45, 0.12),
    0 2px 0 rgba(147, 105, 63, 0.24),
    0 10px 18px rgba(75, 45, 20, 0.14);
}

.film-room-card > * {
  position: relative;
  z-index: 1;
}

.film-room-card__body {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
