/* style.css — True Summit (clean rebuild)
   - 2 fonts (serif headers, sans body)
   - tiled moss/lichen/stone background (CSS tiles)
   - wider centered page with smaller margins
   - angular cells
   - landing page layout helpers
*/

/* ===== Theme ===== */
:root{
  /* fonts (two only) */
  --serif: ui-serif, Georgia, "Times New Roman", Times, serif;
  --sans: system-ui, Tahoma, sans-serif;

  /* page colors */
  --paper: #796e6a;
  --paper2:#796e6a;
  --paper3: #FFFFFF;
  --ink:   #0b0b0b;

  /* borders */
  --line: rgba(0,0,0,0.22);
  --line2: rgba(0,0,0,0.14);

  /* layout */
  --max: 1220px;   /* widen page to reduce margins */
  --pad: 34px;
}

/* ===== Base ===== */
*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.62;
}

body::before,
body::after{
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  width: 50vw;
  z-index: -1;

  background-image: url("images/SunGif.gif");
  background-repeat: repeat;
  background-size: 120px;
}

body::before{
  right: 0;
  background-position: right top;
}

body::after{
  left: 0;
  background-position: left top;
  transform: scaleX(1);
}
  


/* ===== Page container (“paper”) ===== */
.page{
  max-width: var(--max);
  margin: 15px auto;      /* smaller margin than before */
}

.container{
  padding: var(--pad);
}

/* ===== Typography ===== */
h1,h2,h3{
  font-family: var(--sans);
  margin: 0 0 10px;
  line-height: 1.1;
}
p{ margin: 0; }

.small{
  font-size: 12px;
  color: rgba(11,11,11,0.62);
}

/* ===== Links ===== */
a{
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid rgba(11,11,11,0.28);
}
a:hover{
  border-bottom-color: rgba(11,11,11,0.70);
}

/* ===== Header / Nav (simple, non-dossier) ===== */
header{
  border-bottom: 1px solid var(--line2);
}
.nav{
  display:flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  flex-wrap: wrap;
  padding: 14px 0;
}
.brand strong{
  font-family: var(--sans);
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  display:block;
}
.brand span{
  display:block;
  margin-top: 4px;
  font-size: 12px;
  color: rgba(11,11,11,0.62);
}
.navlinks{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.navlinks a{
  font-family: var(--sans);
  font-size: 13px;
  padding: 10px 12px;
  border: 1px solid rgba(0,0,0,0.28);
  background: rgba(242,234,219,0.55);
  border-bottom-width: 2px; /* slight weight */
}

/* ===== Lists ===== */
.list{
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}
.list li{
  padding: 12px 0;
  border-top: 1px solid rgba(0,0,0,0.16);
}
.list li:first-child{ border-top: 0; }

/* ===== Cards (angular) ===== */
.card{
  background: rgba(242,234,219,0.65);
  border: 1px solid var(--line);
  padding: 30px;
}
.card h2{
  font-size: 16px;
  margin-bottom: 10px;
}
.card p{ margin-top: 8px; }

/* ===== Footer ===== */
.footer{
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,0.18);
  font-size: 12px;
  color: rgba(11,11,11,0.62);
}

/* ===========================================================
   LANDING PAGE HELPERS (matches your index.html spec)
   =========================================================== */

/* Big centered band name only */
.homeTitle{
  font-family: var(--sans);
  font-weight: 800;
  font-size: 72px;
  color: var(--paper3);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

/* Centered banner image slot — crops any aspect ratio */
.bannerWrapper{
  position: relative;
  width: 100%;
  height: 450px;
}

/* ===== Banner title: thin, white, edge-to-edge, uniform spacing ===== */
.overlayTitle.stretchTitle{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;

  /* edge-to-edge inside the banner border */
  padding: 0 20px;
  margin: 2;
  z-index: 2;
  pointer-events: none;

  /* distribute spans evenly */
  justify-content: space-between;

  font-family: var(--serif);
  font-weight: 500;          /* thinner */
  font-size: clamp(48px, 4vw, 48px);
  line-height: 1;
  text-transform: uppercase;
  font-style: italic;
 color: white;
  mix-blend-mode: difference;
  text-shadow: none;         /* no shadow */
  transform: scaleY(1.75);
}

.overlayTitle.stretchTitle span{
  display: inline-block;
}

/* keep it from getting ridiculous on small screens */
@media (max-width: 520px){
  .overlayTitle.stretchTitle{
    padding: 0 14px;
    font-size: 20px;
  }
}


.bannerCenter{
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.22);
}

.bannerCenter img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: contrast(1.10) saturate(1.02) grayscale(0.06);
}

/* Uneven split under banner: left 1/3 aux, right 2/3 main */
.homeSplit{
  display: grid;
  grid-template-columns: 0.95fr 2.05fr;
  gap: 16px;
  margin-top: 16px;
  align-items: start;
}

.auxStack,
.mainStack{
  gap: 22px;
}


.card,
.auxCard{
  background: rgba(var(--box-bg), var(--box-opacity));
  border: 1px solid rgba(18,17,15,0.16);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* ===== Responsive ===== */
@media (max-width: 980px){
  :root{ --pad: 24px; }
  .page{ margin: 12px auto; }
  .homeTitle{ font-size: 44px; }
  .bannerCenter{ height: 260px; }
  .homeSplit{ grid-template-columns: 1fr; }
}
/* ===== Upgrade B: organic paper grain + moss/clay accent ===== */

:root{
  --accent-moss: rgba(88,110,74,0.55);
  --accent-clay: rgba(156,118,74,0.45);
}

/* Page grain (inside the paper, not the whole site) */
.page{
  box-shadow: 0 26px 80px rgba(0,0,0,0.24);
  position: relative;
  overflow: hidden;
}
.page::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  opacity: 1.0;
  background-image:
    radial-gradient(rgba(0,0,0,0.18) 1px, rgba(0,0,0,0) 1px);
  background-size: 22px 22px;
  mix-blend-mode: multiply;
}

/* Subtle accent bands (very restrained) */
.page::before{
  content:"";
  position:absolute;
  inset:-40px;
  pointer-events:none;
  background:
  opacity: 0.18;
}

/* Cards feel more tactile */
.card,
.auxCard{
  background: rgba(var(--box-bg), var(--box-opacity));
  border: 1px solid rgba(18,17,15,0.16);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
}

/* Titles: a little more presence */
.homeTitle{
  font-size: 74px;
  letter-spacing: 0.6px;
}
@media (max-width: 980px){ .homeTitle{ font-size: 46px; } }

/* Section headings: tiny accent rule */
.card h2, .auxCard h2{
  position: relative;
  padding-bottom: 8px;
}
.card h2::after, .auxCard h2::after{
  content:"";
  display:block;
  height: 2px;
  width: 56px;
  background: rgba(18,17,15,0.35);
  margin-top: 10px;
}

/* Banner: more cinematic */
.bannerCenter{
  box-shadow: 0 18px 50px rgba(0,0,0,0.20);
}
.bannerCenter img{
  filter: contrast(1.12) saturate(1.06);
}
/* ===== Upgrade A: premium paper + restrained contrast ===== */

/* Page feels designed (depth + inner border) */
.page{
  border: 1px solid rgba(0,0,0,0.18);
  box-shadow: 0 24px 70px rgba(0,0,0,0.22);
  position: relative;
}
.page::before{
  content:"";
  position:absolute;
  inset: 10px;
  border: 1px solid rgba(0,0,0,0.10); /* inner frame */
  pointer-events:none;
}

/* Typographic rhythm */
.container{ padding: 40px; }
@media (max-width: 980px){ .container{ padding: 24px; } }

.homeTitle{
  font-size: 72px;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}
@media (max-width: 980px){ .homeTitle{ font-size: 46px; } }

.card h2, .auxCard h2{
  font-size: 18px;
  margin-bottom: 12px;
}

/* Cards: slight depth + softer fill */
.card,
.auxCard{
  background: rgba(var(--box-bg), var(--box-opacity));
  border: 1px solid rgba(18,17,15,0.16);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
}


/* Lists: more breathing room */
.list li{
  padding: 14px 0;
  border-top: 1px solid rgba(18,17,15,0.12);
}

/* Links: cleaner, less “underline-y” */
a{
  border-bottom-width: 1px;
  border-bottom-color: rgba(18,17,15,0.22);
}
a:hover{ border-bottom-color: rgba(18,17,15,0.55); }

/* Banner: elevate it */
.bannerCenter{
  border: 1px solid rgba(0,0,0,0.20);
  box-shadow: 0 18px 44px rgba(0,0,0,0.18);
}
.bannerCenter img{
  filter: contrast(1.08) saturate(1.02);
}

:root{
  --box-bg: 170,164,156;
  --box-opacity: 0.85;
}

.auxCard{
  padding: 40px;
}

:root{
  /* Card inversion */
  --card-bg: 35,35,35;       /* dark gray for background */
  --card-text: 245,245,245;  /* off-white for text */
  --box-opacity: 0.85;       /* keep opacity same */
}

/* Cards: dark background, light text */
.card,
.auxCard{
  background: rgba(var(--card-bg), var(--box-opacity));
  border: 1px solid rgba(18,17,15,0.16);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
  color: rgb(var(--card-text));
}

/* Ensure headings and paragraphs inherit light color */
.card h2, .auxCard h2,
.card p, .auxCard p{
  color: rgb(var(--card-text));
}

/* Auxiliary links / auxCard: dark background, light text */
.auxCard{
  background: rgba(var(--card-bg), var(--box-opacity));
  color: rgb(var(--card-text));
  border: 1px solid rgba(18,17,15,0.16);
  box-shadow:
    0 10px 26px rgba(0,0,0,0.08),
    inset 0 1px 0 rgba(255,255,255,0.35);
  padding: 40px; /* keep your larger padding */
}

/* Ensure headings, paragraphs, and links inside auxCard inherit light text */
.auxCard h2,
.auxCard p,
.auxCard a{
  color: rgb(var(--card-text));
}

@media (max-width: 980px){
  .homeTitle{ font-size: 46px; }
}

/* ===== Media card header row (title + icons inline) ===== */
.mediaHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mediaHeader h2{
  margin: 0;               /* override card h2 margin */
  padding-bottom: 8px;     /* keep your existing underline rule spacing */
}

.mediaHeader .iconLinks{
  justify-content: flex-end;
}

/* On small screens, let it wrap gracefully */
@media (max-width: 520px){
  .mediaHeader{
    flex-wrap: wrap;
  }
  .mediaHeader .iconLinks{
    width: 100%;
    justify-content: flex-start;
  }
}

/* ===== Force all media icons to a fixed, sane size ===== */

.iconLink{
  width: 64px !important;
  height: 64px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

.iconLink img{
  max-width: 36px !important;
  max-height: 36px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  display: block !important;
}

/* ===== Media row (NOT a card) ===== */
.mediaRow{
  background: rgba(244,239,229,0.68);
  border: 1px solid rgba(0,0,0,0.16);
  box-shadow: 0 10px 24px rgba(0,0,0,0.09),
              inset 0 1px 0 rgba(255,255,255,0.35);
  padding: 16px;
}

.mediaRowTitle{
  font-family: var(--serif);
  font-size: 18px;
  margin: 0;
  padding-bottom: 8px;
  position: relative;
  line-height: 1.1;
}

.mediaRowTitle::after{
  content:"";
  display:block;
  height: 2px;
  width: 56px;
  background: rgba(18,17,15,0.35);
  margin-top: 10px;
}

.mediaRowHeader{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

@media (max-width: 520px){
  .mediaRowHeader{ flex-wrap: wrap; }
  .mediaRowHeader .iconLinks{ width: 100%; justify-content: flex-start; }
}

/* ===== Media row: match card color + adjustable icon placement + png size ===== */

/* 1) Make Media row visually identical to .card */
.mediaRow{
  background: rgba(18,17,15,0.16) ; /* same as your .card/.auxCard */
  border: 1px solid rgba(18,17,15,0.16) ;
  box-shadow:
    0 10px 24px rgba(0,0,0,0.09),
    inset 0 1px 0 rgba(255,255,255,0.35) ;

  /* knobs: spacing inside the row */
  padding: 16px 16px !important;   /* top/bottom, left/right (adjust this) */
}

/* 2) Control where icons sit relative to “Media” */
.mediaRowHeader{
  display: flex !important;
  align-items: center !important;      /* vertical alignment (try flex-start/center) */
  justify-content: space-between !important;
  gap: 14px !important;                /* space between title and icons (adjust) */
}

/* 3) Control where icons sit within their own area */
.mediaRowHeader .iconLinks{
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding-left: 12px;
  padding-right: 12px;
}

/* 4) Remove the tiny underline on icon links only */
.mediaRowHeader .iconLink{
  border-bottom: none !important;
}

/* 5) Keep CLICK AREA fixed, but change PNG size independently */
.mediaRowHeader .iconLink{
  width: 50px !important;   /* click area size (leave this alone) */
  height: 50px !important;  /* click area size (leave this alone) */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  overflow: hidden !important;
}

/* PNG size knob (change these two numbers) */
.mediaRowHeader .iconLink img{
  width: 40px !important;   /* <-- PNG SIZE */
  height: 40px !important;  /* <-- PNG SIZE */
  object-fit: contain !important;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Mobile wrap behavior */
@media (max-width: 520px){
  .mediaRowHeader{
    flex-wrap: wrap !important;
  }
  .mediaRowHeader .iconLinks{
    width: 100% !important;
    justify-content: flex-start !important;
    margin-top: 8px !important; /* gives it breathing room when it wraps */
  }
}
.mediaRowTitle{
  display: none;
}
/* One-off size override for Spotify */
.mediaRow .iconLink img.iconImg--youtube{
  width: 200px !important;
  height: 208px !important;
}
/* One-off: make ONLY the YouTube logo appear larger inside the same 50x50 link box */
.mediaRowHeader .iconLink img.iconImg--youtube{
  width: 40px !important;      /* keep your global size */
  height: 40px !important;
  transform: scale(1.65);      /* <-- change this number */
  transform-origin: center;
}