@charset "utf-8";

/* STUDIO PAGE */
.studio-page {
    padding-top: 0; /* hero handles spacing */
    color: #e8e8e8;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* HERO */
/* HERO — stable, no cropping */
.studio-hero {
    position: relative;
    width: 100%;
    margin-top: 0px; /* adjust if needed */
}

.studio-hero-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Overlay */
.studio-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

/* Text */
.studio-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
}

.studio-hero-content h1 {
    font-size: 3.4rem;
    color: var(--amber);
    margin-bottom: 12px;
}

.studio-hero-content p {
    font-size: 1.3rem;
    color: #e8e8e8;
}


/* SECTIONS */
.studio-section {
    width: 80%;
    max-width: 1100px;
    margin: 80px auto;
    text-align: center;
    padding: 30px 20px;
}

.studio-section h2 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.studio-section h2::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -6px;
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.studio-section p {
    max-width: 850px;
    margin: 0 auto 25px auto;
    color: #dcdcdc;
    font-size: 1.15rem;
    line-height: 1.7;
}

/* GEAR LIST */
.gear-list {
    list-style: none;
    padding: 0;
    margin: 30px auto;
    max-width: 900px;
}

.gear-list li {
    background: rgba(255, 215, 0, 0.05);
    border-left: 3px solid var(--gold);
    padding: 14px 20px;
    margin-bottom: 14px;
    border-radius: 6px;
    font-size: 1.15rem;
    color: #f0f0f0;
    line-height: 1.6;
    backdrop-filter: blur(2px);
    transition: 0.2s ease;
}

.gear-list li:hover {
    background: rgba(255, 215, 0, 0.12);
    transform: translateX(4px);
}
/* ========================= */
/*        GLOBAL FOOTER      */
/* ========================= */

.gold-footer {
  background: #0a0a0a;
  border-top: 2px solid #d4af37;
  padding: 50px 40px;
  color: #d4af37;
  margin-top: 75px; /* adjust between 50–100px */
}

/* 4‑Column Grid Layout */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 30px;
}

/* Column Titles */
.footer-col h3 {
  font-size: 20px;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer Links */
.footer-col a {
  display: block;
  margin-bottom: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #d4af37;
  transition: 0.3s;
}

.footer-col a:hover {
  color: #fff;
  text-shadow: 0 0 10px #d4af37;
}
