﻿/* GLOBAL RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
}

body {
  font-family: 'Overpass', sans-serif;
  font-weight: 600;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;

  /* STATIC fallback background */
  background-image: url('images/bg1.jpg');
  background-repeat: repeat-y;
  background-size: min(2000px, 100%) auto;
  background-position: center top;
    /* FOR ROTATING BACKGROUND IMAGES
  animation: rotateBG 24s infinite linear; */
}

/* Animated background images  */
@keyframes rotateBG {
  0%   { background-image: url('images/bg1.jpg'); }
  33%  { background-image: url('images/bg2.jpg'); }
  66%  { background-image: url('images/bg3.jpg'); }
  100% { background-image: url('images/bg1.jpg'); }
}

/* HEADER */
header {
  color: #CBCBCB; /* GRAY */
  text-align: center;
  padding: 80px 20px 40px;
}

.site-title {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 8px;
  margin-bottom: 20px;

}

nav a {
  color: #ff7a00; /* ORANGE */
  text-decoration: none;
  margin: 0 12px;
  font-size: 1.2rem;
  font-weight: 400;
}

nav a:hover {
  text-decoration: none;
  color: #ffffff;
}

.tagline {
  margin-top: 25px;
  font-size: 1.4rem;
  font-weight: 300;
  color: #CBCBCB; /* GRAY */
}

/* FOOTER */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;

  background: #444044; /* deep blue‑black */
  color: #c8d4e0;      /* soft steel gray */
  
  padding: 18px 0;
  text-align: center;

  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 0.9rem;
  letter-spacing: 0.3px;

  z-index: 9999; /* stays above everything */
  border-top: 1px solid rgba(255,255,255,0.08);

}
body {
  padding-bottom: 80px; /* space so content doesn't disappear under footer */
}


/* ------------------INTERIOR PAGES SPECIFIC CSS------------------ */

.page-wrapper.interior {
  display: grid;
  grid-template-columns:
      540px      /* left margin */
      275px      /* left column */
      20px       /* gap */
      minmax(0, 600px); /* right column */
  justify-content: start;

  margin-top: 5px;      /* keep your spacing tweaks */
  padding-top: 0;
}

/* NEW: Assign columns */
.left-col {
  grid-column: 2;
}

.right-col {
  grid-column: 4;
}

.page-wrapper.interior .page-intro h1 {
  margin-top: 0;
}

.page-intro {
  font-family: 'Roboto', sans-serif;
  color: #d0d0d0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.page-intro h1 {
  font-family: 'Expressway', sans-serif;
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: white;
}

.page-intro h2 {
  font-family: 'Expressway', sans-serif;
  font-size: 1.0rem;
  margin-bottom: 10px;
  color: white;
}


.page-content {
  font-family: 'Roboto', sans-serif;
  color: #e0e0e0;
  line-height: 1.7;
  max-width: 700px;
}

.page-content h2 {
  font-family: 'Expressway', sans-serif;
  font-size: 1.4rem;
  margin-top: 0;
  color: white;
}

.content-image {
  width: 100%;
  margin: 20px 0;
  border-radius: 4px;
}

/* ---------- MERCH PAGE STYLES -----------  */

.merch-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    align-items: flex-start;
}

/* Picture Drop Shadow  */

.merch-image img {
    width: 170px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.35); 
 /* box-shadow: 0 0 10px rgba(0,0,0,0.6); little harder */
 
 /* REST OF MERCH AREA  */
}

.merch-content h3 {
    color: #f5f5f5;
    margin: 0 0 10px;
    font-size: 1.3rem;
}

.merch-description {
    color: #dcdcdc;
    margin-bottom: 12px;
    line-height: 1.5;
}

.merch-price {
    color: #ffffff;
    font-size: 1.2rem;
    margin: 10px 0;
}

.product-number {
    display: block;
    font-size: 0.9rem;
    color: #bbbbbb;
}

.merch-button {
    display: inline-block;
    background: #cc0000;
    color: white;
    padding: 8px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
}

.merch-button:hover {
    background: #e60000;
}

.merch-store-link {
    background: #5A5250;      /* blue-ish charcoal */
    color: #FCEBD4;           /* soft off‑white */
    padding: 4px 10px;
    border-radius: 3px;
    text-decoration: none;
    margin-left: 8px;
    font-weight: bold;
    letter-spacing: 0.5px;
}

.merch-store-link:hover {
    background: #3a3a3a;      /* slightly lighter charcoal */
}

