/* common.css */

/* === Typography vars (non-destructive) === */
:root{
  --font-body: system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial;
  /* leave --font-heading unset if your pages already set a special face on .section-title */
  /* Example if you want a global default later:
     --font-heading: "YourSpecialHeadingFont", var(--font-body);
  */
}

/* === Global Theme === */
:root{
  --fg:#eaeaea; --muted:#bdbdbd; --accent:#d3a84f;
  --bg:#0c0c0f; --card:#15151b; --border:#22232a;
}

html,body{
  margin:0; background:var(--bg); color:var(--fg);
  font:16px/1.6 var(--font-body);
}

a{ color:inherit; }
img{ max-width:100%; height:auto; display:block; }

/* Layout container */
.wrap{ max-width:980px; margin:0 auto; padding:28px; }

/* Header + Nav */
.site-header{ display:flex; align-items:center; gap:14px; padding:12px 0; }
.site-header .brand{ text-decoration:none; font-weight:700; letter-spacing:.06em; color:var(--fg); }
.site-nav{ margin-left:auto; }
.site-nav .nav-link{ position:relative; padding:8px 10px; text-decoration:none; color:var(--fg); }
.site-nav .nav-link.active::after{
  content:""; position:absolute; left:0; right:0; bottom:-8px;
  height:4px; background:var(--accent); border-radius:2px;
}

/* Sub Navigation Type 1 */
.site-subnav1 .nav-link {
  color: #f4f1e6;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.site-subnav1 .nav-link:hover,
.site-subnav1 .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffc107;
}





/* === Section Header (shared across site) === */
.section-header {
  background: url('/assets/img/sectionHeader_bg.png') center/cover no-repeat;
  display:flex; align-items:center; justify-content:center;
}
.section-header.main {
  min-height: 225px;
  background-size: auto 100%;
  background-repeat: repeat;
  background-position: center;
}
.section-header.sub {
  height: 100px;
  background-size: auto 100%;
  background-repeat: repeat-x;
  background-position: center;
}

/* Title */
.section-title{
  display:flex; align-items:center; gap:.6rem;
  margin:.2rem 9 .9rem;
  line-height:1.2;
  font-family: 'Cinzel Decorative', serif;
  font-weight: 900;
  font-size: 1.75rem;     /* scrolls-like scale, consistent site-wide */
  text-align: center;
  justify-content: center;

  /* Gold gradient text */
  background-image: linear-gradient(45deg,#c8a951 0%,#ffd700 25%,#fff4c2 50%,#ffd700 75%,#c8a951 100%);
  background-clip: text; -webkit-background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
}

/* Subtitle under the section title */
.section-subtitle{
  color: var(--muted);
  font-family: 'Cormorant', serif;
  font-size: 1.2rem;
  margin-top: -.25rem;
  margin-bottom: 1.25rem;
  max-width: 100ch;
  text-align: center;
  margin-left: auto; margin-right: auto;
}


/* Muted text, Hero, Footer */
.muted{ color:var(--muted); }
.hero{ width:100%; border-radius:18px; overflow:hidden; border:1px solid var(--border); margin:8px 0 16px; }
.site-footer{ color:var(--muted); font-size:.9rem; margin:28px 0 8px; }

/* Utility */
.border-card{ background:var(--card); border:1px solid var(--border); border-radius:16px; }



/* Reset & Base Styles */
html,body {
  margin: 0;
  height: 100%;
  padding: 0;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
 /* color: #D5C8B3; /* Lunar Veil */
  color: #f4f0ea; /* cream-ish body text */
  background-color: #0e0d0c; /* Dark Backdrop */
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.page-wrapper > main {
  flex: 1 0 auto;
}


body > main {
 flex: 1;
}

/* === Heading Font Setup === */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Crimson Pro', serif;
  color: #f4f0ea;
  margin-bottom: 0.75rem;
  line-height: 1.3;
}

/* === Heading Sizes & Weights === */
h1 {
  font-size: 3rem;
  font-weight: 700;
}
h2 {
  font-size: 2.25rem;
  font-weight: 600;
}
h3 {
  font-size: 1.75rem;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem;
  font-weight: 500;
}
h5 {
  font-size: 1.25rem;
  font-weight: 500;
}
h6 {
  font-size: 1rem;
  font-weight: 500;
}

/* === Paragraph Spacing === */
p {
  margin-bottom: 1.25rem;
}

/* === Link Styling === */
a {
  color: #dc3545; /* crimson red */
  text-decoration: none;
}
a:hover {
  color: #a41f2a;
  text-decoration: underline;
}

img {
  max-width: 100%;
  display: block;
}


/* Global Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility Spacing */
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.pt-1 { padding-top: 1rem; }
.pt-2 { padding-top: 2rem; }
.pb-1 { padding-bottom: 1rem; }
.pb-2 { padding-bottom: 2rem; }

/* Flex & Grid Helpers */
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid-center {
  display: grid;
  place-items: center;
}

.text-center {
  text-align: center;
}

/* Headings */
h1, h2, h3, h4 {
  font-family: 'Georgia', serif;
  color: #F0E9DD; /* Lightened contrast for readability */
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

/* Buttons */
.button {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  background-color: #7C3F2C; /* Blood Bronze */
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  background-color: #9B2A27; /* Crimson Fade */
}

/* Section Wrapper */
.section {
  padding: 3rem 1rem;
  background-color: #1F1A1A; /* Obsidian Hue */
}

/* Navigation Placeholder */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: var(--bs-body-bg); /* or use your custom background */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #3D2B5A; /* Veiled Indigo */
  color: #D5C8B3;
  font-weight: bold;
}


.navbar-brand img {
  transition: transform 0.3s ease;
}

.navbar-brand:hover img {
  transform: scale(1.05);
}

.navbar-brand img {
  vertical-align: middle;
}

.golden {
   background: linear-gradient(45deg, #f0b846, #fff5cc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cover-image-container {
  width: 100%;
  height: 360px;
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
}

/* Old-style classic text */
blockquote {
  font-family: 'Sorts Mill Goudy', serif;
  font-style: italic;
}



/* === Custom GRÜVEN Secondary Theme === */

/* Buttons */
.btn-secondary {
  background-color: #4b2a61 !important;
  border-color: #3c2050 !important;
  color: #fff !important;
}
.btn-secondary:hover {
  background-color: #3c2050 !important;
  border-color: #2f1740 !important;
}

/* Text */
.text-secondary {
  color: #4b2a61 !important;
}

/* Backgrounds */
.bg-secondary {
  background-color: #4b2a61 !important;
  color: #fff !important;
}

/* Borders */
.border-secondary {
  border-color: #4b2a61 !important;
}

/* NAV MENU HOVER OVERRIDE */
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active:hover,
.navbar-nav .dropdown-item:hover {
  color: #a11b1b !important;        	/* Grüven Crimson */
  background-color: #f9f1e8 !important;  /* Cream background */
  font-weight: bold;
}


/* Active nav item underline */
.navbar-nav .nav-link.active {
  position: relative;
  color: #f9f1e8 !important; /* Optional: match hover color */
}

.navbar-nav .nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #f9f1e8; /* Cream underline */
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    padding: 0 0.75rem;
  }
}

/* Home Page Hero */
.hero-section {
  position: relative;
  overflow: hidden;
  max-height: 80vh;
}

.hero-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-shadow: 0 2px 4px rgba(0,0,0,0.8);
  padding: 1rem;
}

.home-hero-wrapper {
  width: 100%;
  height: 360px;
  background: url('/assets/img/gruvenland_bg.png') center center no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home-hero-center img {
  width: 540px;
  height: 360px;
}

.hero-wrapper {
  width: 100%;
  overflow: hidden;
}

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

.music-links i {
  font-size: 2rem;
  margin: 0 10px;
  color: #f0f0f0;
  transition: color 0.3s;
}

.music-links i:hover {
  color: #1db954; /* Spotify green */
}
