/* Responsive Styles */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bigshot+One&family=Blinker:wght@100;200;300;400;600;700;800;900&family=EB+Garamond:ital,wght@0,400..800;1,400..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

:root {
  --font-roboto: 'Roboto', sans-serif;
  --font-bigshot: 'Bigshot One', serif;
  --font-garamond: 'EB Garamond', serif;
  --font-blinker: 'Blinker', serif;
  --primary-color: rgba(224, 215, 170, 1);
  --secondary-color: rgba(196, 196, 196, 1);
}

/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.hero-section {
  /* Make this a “hero” background */
  background: url('images/image-10-3.png') no-repeat center center;
  background-size: cover; /* Fill the space */
  
  position: relative;     /* Allow absolutely positioned children if desired */
  min-height: 600px;      /* Adjust to taste or use vh units */
  width: 100%;
  /* If you don’t want extra margins at the bottom, ensure no margin or padding here */
}

/* Position the nav in the top-right corner */
.hero-section nav {
  position: absolute; /* Let’s place it on top of the background */
  top: 20px;          /* Adjust spacing as you like */
  right: 20px;
  display: flex;
  gap: 1rem;          /* A bit of space between About Us and Latest Issues */
}

.hero-section nav a {
  color: #fff;        /* Ensure contrast against the background */
  text-decoration: none;
  font-family: var(--font-roboto);
  font-size: 16px;    /* Adjust if needed */
}

/* Center the “intro” text vertically and horizontally */
.hero-section .intro {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); 
  text-align: center;
  color: #fff;      /* Light text over dark background image */
  max-width: 80%;   /* Keep text narrower on large screens */
}

/* Example heading/tagline styles */
.hero-section .intro h1 {
  font-family: var(--font-bigshot);
  font-size: 48px; 
  /* If you want that goldish color seen in the screenshot, maybe: */
  color: #cbb67d; 
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .hero-section nav {
    top: 10px;
    right: 10px;
    font-size: 14px;
  }
  .hero-section .intro h1 {
    font-size: 32px;
  }
  .hero-section .intro .tagline {
    font-size: 16px;
  }
}
.hero-section .intro .tagline {
  font-family: var(--font-garamond);
  font-size: 20px;
  color: #fff; /* or something else */
  font-style: italic;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.3); /* darken overlay */
}
body {
  font-family: var(--font-roboto);
  background-color: rgba(19, 26, 42, 1);
  color: white;
  line-height: 1.6;
}

/* Layout */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

/* Header */
header {
  text-align: center;
  margin-bottom: 20px;
}

.hero-image {
  width: 100%;
  height: auto;
}

/* Navigation */
nav {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  font-size: 20px;
  color: var(--primary-color);
}

/* Typography */
.bigshot-one-regular {
  font-family: "Bigshot One", serif;
  font-weight: 400;
  font-style: normal;
}

.eb-garamond {
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.blinker-regular {
  font-family: "Blinker", serif;
  font-weight: 400;
  font-style: normal;
}

.roboto-regular {
  font-family: "Roboto", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
}

/* Common Sections */
.intro, .editor-letter {
  text-align: center;
  margin: 20px 0;
}

.intro h1, .editor-letter h1 {
  font-family: var(--font-bigshot);
  font-size: 36px;
}

.tagline {
  font-size: 18px;
  color: var(--secondary-color);
}

.goals, .editor-content {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
}

.goals h2, .editor-content h2 {
  font-family: var(--font-garamond);
  font-size: 28px;
  color: var(--primary-color);
}

/* Images */
.section-image, .editor-image {
  width: 100%;
  height: auto;
  margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
  nav {
    flex-direction: column;
    text-align: center;
  }
  .intro h1, .editor-letter h1 {
    font-size: 28px;
  }
  .tagline {
    font-size: 16px;
  }
  .goals h2, .editor-content h2 {
    font-size: 24px;
  }
}
.center-beams-image-home {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}