:root{
  --max: 1100px;
  --gap: 24px;
  --nav-gap: 14px;
  --radius: 12px;
  --shadow: 0 10px 30px rgba(0,0,0,.18);
}

*{ box-sizing:border-box; }

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: url("Graphics/web_background_4.png") center/cover fixed no-repeat;
  color:#111;
}

a{ color: inherit; }

.wrap{
  max-width: var(--max);
  margin: 0 auto;
  padding: 20px;
}

header{
  display:flex;
  justify-content:center;
  margin-bottom: 10px;
}

header img,
footer img{
  max-width: 100%;
  height: auto;
}

nav{
  display:flex;
  flex-wrap: wrap;
  justify-content:center;
  gap: var(--nav-gap);
  margin: 12px 0 28px;
}

/* Image-button rollover without JS */
/* Primary navigation (HTML/CSS buttons) */
.site-nav{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 12px 10px;
}

.nav-btn{
  width: 200px;
  height: 58px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;

  color: #f5f5f5;
  text-decoration: none;

  background: linear-gradient(180deg, #1a1a1a 0%, #0e0e0e 100%);
  border: 1px solid #2a2a2a;
  border-radius: 4px;

  box-shadow: 0 3px 8px rgba(0,0,0,0.22);

  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.2s ease;
}

.nav-btn:hover{
  background: linear-gradient(180deg, #242424 0%, #141414 100%);
  transform: translateY(-1px);
  box-shadow: 0 5px 14px rgba(0,0,0,0.3);
}

.nav-btn:focus-visible{
  box-shadow: 0 0 0 3px rgba(0,0,0,.25), 0 0 0 6px rgba(255,255,255,.45);
}

.nav-btn.active,
.nav-btn[aria-current="page"]{
  background: #000000;
  border-color: #ffffff;
  box-shadow: inset 0 0 0 1px #ffffff, 0 5px 14px rgba(0,0,0,0.35);
}

@media (max-width: 800px) {
  .site-nav {
    gap: 8px;
    padding: 10px 8px;
  }

  .nav-btn {
    width: 100%;
    max-width: 190px;
    height: 48px;

    font-size: 18px;
    letter-spacing: 0.06em;
    border-radius: 4px;
  }
}
main{ margin: 0; }

/* center big single-image pages (index/about/etc.) */
.hero{
  display:block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Responsive YouTube embeds */
.video{
  position: relative;
  width:100%;
  aspect-ratio: 16 / 9;
  background:#000;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* Video grid used on Video page (and you can reuse elsewhere) */
.grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
  align-items:start;
}
@media (max-width: 900px){
  .grid{ grid-template-columns: 1fr; }
}

figure{ margin:0; }
figcaption{
  margin: 10px 0 0;
  font-size: 0.95rem;
  text-align:center;
  text-shadow: 0 1px 0 rgba(255,255,255,.55);
}

/* Social icons row (About page) */
.social{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap: 16px;
  margin: 6px 0 18px;
}
.social a{
  display:inline-block;
  line-height:0;
  border-radius: 14px;
}
.social a:focus-visible{
  box-shadow: 0 0 0 3px rgba(0,0,0,.25), 0 0 0 6px rgba(255,255,255,.45);
}
.social img{
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 14px;
  box-shadow: 0 8px 18px rgba(0,0,0,.18);
}

.footer-embed{
  display:flex;
  justify-content:center;
  margin-top: 24px;
}

/* Simple thumbnail grids (Photography/Merchandise) */
.cards{
  display:grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
  align-items:start;
}
@media (max-width: 1050px){ .cards{ grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (max-width: 780px){ .cards{ grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px){ .cards{ grid-template-columns: 1fr; } }

.card{
  display:block;
  text-decoration:none;
  line-height:0;
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(255,255,255,.65);
  backdrop-filter: blur(3px);
}
.card img{
  width:100%;
  height:auto;
  display:block;
}
.card span{
  display:block;
  padding: 10px 12px;
  line-height:1.3;
  font-size:.95rem;
}

footer{
  display:flex;
  justify-content:center;
  margin: 30px 0 10px;
}


/* Utility: hide text visually but keep it for screen readers + SEO */
.visually-hidden{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* Footer text nav (fallback if images are blocked, plus extra crawlable links) */
.footer-nav{
  display:flex;
  flex-wrap:wrap;
  gap:12px 16px;
  justify-content:center;
  margin-top:18px;
  font-size:14px;
}

.footer-nav a{
  color: inherit;
  text-decoration: none;
  opacity:.9;
  padding:2px 4px;
  border-radius:6px;
}

.footer-nav a:hover,
.footer-nav a:focus-visible{
  text-decoration: underline;
  outline: none;
}

.footer-nav a[aria-current="page"]{
  text-decoration: underline;
  font-weight:600;
  opacity:1;
}

footer {
text-align: center;
padding: 20px 0;
}


.footer-image {
width: 100%;
max-width: 1000px; /* adjust to match header width */
height: auto;
display: block;
margin: 0 auto 12px;
}
/* --- Center the FineArtAmerica slideshow block --- */
.featured-slideshow{
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.featured-slideshow img{
  display: block;
  margin: 0 auto;
}

/* Safety: if the slideshow ever ends up inside a grid row, make it span full width */
.cards .featured-slideshow{
  grid-column: 1 / -1;
  justify-self: center;
}

/* Slideshow caption */
.slideshow-caption{
  margin: 10px 0 0;
  text-align: center;
  font-size: 0.95rem;
  opacity: 0.85;
}
.calendar-card img{
  width:auto;
  height:auto;
  max-width:100%;
  max-height:520px;
  object-fit:contain;
  margin: 0 auto;
}
/* Featured Prints – behavior */
.featured-slideshow {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

/* Featured Prints – image scaling */
.featured-slideshow img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
}

/* Featured Prints – visual styling */
.featured-slideshow {
  padding: 12px;
  border-radius: 8px;
  background: #fafafa;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
.video-jump{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
  padding:16px 12px;
}

.video-jump a{
  text-decoration:none;
  padding:6px 10px;
  border:1px solid rgba(0,0,0,.15);
  border-radius:999px;
  color:inherit;
}

.video-section{
  max-width:1100px;
  margin:0 auto;
  padding:22px 12px;
}

.video-section h2{
  margin:0 0 14px 0;
  font-size:18px;
}

.video-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px, 1fr));
  gap:18px;
  align-items:start;
}
.video-jump {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 10px 0 30px;
}

.video-jump a {
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 999px;
  font-size: 13px;
  color: #444;
}

.video-jump a:hover {
  background: rgba(0,0,0,.05);
}

main h2 {
  margin-top: 48px;
  padding-top: 18px;
  border-top: 1px solid rgba(0,0,0,.15);
}
.video-jump a.is-active {
  background: rgba(0,0,0,.08);
  border-color: rgba(0,0,0,.35);
}
.site-header{
  display:flex;
  justify-content:center;
  padding:14px 12px;
  margin-bottom:10px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  color:inherit;
}

.brand-mark{
  width:46px;
  height:46px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  line-height:1.1;
}

.brand-name{
  font-size:22px;
  letter-spacing:1px;
}

.brand-tagline{
  font-size:13px;
  opacity:0.8;
  margin-top:4px;
}

@media (max-width:480px){
  .brand-name{ font-size:18px; }
  .brand-tagline{ font-size:12px; }
  .brand-mark{ width:40px; height:40px; }
}
.site-footer{
  margin-top:40px;
  padding:24px 12px 32px;
  display:flex;
  justify-content:center;
  font-size:13px;
}

.footer-inner{
  display:flex;
  align-items:center;
  gap:12px;
  opacity:0.75;
}

.footer-mark{
  width:34px;
  height:34px;
}

.footer-text{
  display:flex;
  flex-direction:column;
  line-height:1.2;
}

.footer-brand{
  letter-spacing:0.8px;
}

.footer-meta{
  font-size:12px;
  margin-top:4px;
}

@media (max-width:480px){
  .footer-inner{ gap:10px; }
  .footer-mark{ width:30px; height:30px; }
}
.featured-slideshow {
  margin-bottom: 32px; /* adjust to taste */
}
/* Space between each reel item */
main figure {
  margin-bottom: 16px; /* adjust as needed */
}
