:root{
  --indent-size: 60px; /* Define the indent variable */
  --font-size: 1.1rem;
}
/* Media query for narrower screens (typically mobile) */
@media (max-width: 768px) {
  :root{
    --indent-size: 1.5rem;
    --font-size: 1rem;
  }
}

@font-face {
  font-family: 'ReginaBlack';
  src: url('fonts/ReginaBlack-Solid.ttf') format('truetype');
}

@font-face {
  font-family: 'Brandon Grotesque';
  src: url('fonts/BrandonGrotesque-Regular.otf') format('opentype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Brandon Grotesque', sans-serif;
  background-color: #f7f8fa;
  color: #232324;
  font-size: 16px;
  line-height: 1.5;
}

/* Main Heading */
h1 {
  font-family: 'ReginaBlack', serif;
  font-size: 4rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #e2451f;
  text-align: center;
  margin-bottom: 1rem;
}

/* Subheadings */
h2 {
  font-family: 'Brandon Grotesque', sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
  color: #3860d6;
}

h3 {
  font-family: 'Brandon Grotesque', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
  text-align: center;
  color: #3860d6;
}

/* Buttons */
button, .btn {
  font-family: 'Brandon Grotesque', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  text-transform: uppercase;
  background-color: #e2451f;
  color: #fff;
  padding: 0.75rem 2rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover, .btn:hover {
  background-color: #d0351b;
}

/* Links */
a {
  text-decoration: none;
  color: #3860d6;
}

a:hover {
  color: #264bba;
}

/* Paragraph Styling */
p {
  font-family: 'Brandon Grotesque', sans-serif;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #50505a;
  line-height: 1.5;
}

/* Containers */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  /* padding: 2rem; */
  padding-left: 20px;
  padding-top: 20px;
}

.colorado-background-top {
  background-image: url('../static/images/inspired/lodge/lodge_top.png?v=0');
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  background-position: center top;
  padding: 50px; /* Add some padding to make sure content doesn't touch edges */
  color: white; /* Adjust text color to contrast with the background */
}

.colorado-background p {
  color: inherit;
}

.colorado-background-middle {
  background-image: url('../static/images/inspired/lodge/lodge_middle.png?v=0');
  background-size: cover; /* Ensures the image covers the whole block */
  background-position: center center; /* Starts from the center of the image */
  background-repeat: no-repeat;
  padding: 50px;
  color: white; /* Applies to all text inside this block */
}

.colorado-background-bottom {
  background-image: url('../static/images/inspired/lodge/lodge_bottom.png?v=0');
  background-size: cover; /* Ensures the image covers the whole block */
  background-position: center bottom; /* Starts from the bottom of the image */
  background-repeat: no-repeat;
  padding: 50px;
  color: white; /* Applies to all text inside this block */
}

.colorado-background-secret-top {
  background-image: url('../static/images/inspired/secret_mothership/nick_10095_secret_mothership.png');
  background-size: cover; /* Ensures the image covers the whole block */
  background-position: center top; /* Starts from the bottom of the image */
  background-repeat: no-repeat;
  padding: 50px;
  color: white;
}

.colorado-background-secret-bottom {
  background-image: url('../static/images/inspired/mothership_no_lodge/nick_10095_mothership_no_lodge1.png');
  background-size: cover; /* Ensures the image covers the whole block */
  background-position: center top; /* Starts from the bottom of the image */
  background-repeat: no-repeat;
  padding: 50px;
  color: white;
}

header {
  text-align: center;
  /* padding: 2rem; */
}

footer {
  text-align: left;
  padding: 2rem;
  color: #fff;
}

.link-collection {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: auto; /* Adjust the spacing between the links */
}

.link-collection a {
    font-size: var(--font-size); /* Adjust size if needed */
    color: #3860d6; /* Example link color */
    text-decoration: none;
}

.link-collection a:hover {
    color: #264bba; /* Hover color */
}

.script-block {
  text-align: left;
  font-size: var(--font-size);
  margin: 0 auto;           
  padding: 30px;            
  width: 70%;               
  max-width: 800px;         
  font-family: 'Courier New', Courier, monospace; /* Typewriter font */
  background-color: #e6dfd3;
  color: #000;                 
  overflow-wrap: break-word;
  line-height: 1.4;
  border-radius: 5px;        
  box-sizing: border-box;
}

.script-block p {
  font-family: 'Courier New', Courier, monospace;
  font-size: var(--font-size);
  white-space: pre-wrap;
  margin: 0;
  text-indent: var(--indent-size);
  color: #000;
  line-height: 1.4;
}

.script-block .hanging-indent {
  padding-left: calc(var(--indent-size) * 2);  
  text-indent: calc(var(--indent-size) * -1 );
  font-size: 1.1rem;
  white-space: pre-wrap;       
  margin: 0;                
  line-height: 1;         
}

.script-block img {
  display: block;
  margin: 0 auto;
  width: 300px;
  height: auto;
}

/* Media query for narrower screens (typically mobile) */
@media (max-width: 768px) {
  .script-block {
    width: 95%; /* Make the block take 95% of the screen width */
    padding: 20px; /* Adjust padding for smaller screens */
  }

  ol {
    list-style-position: outside;
    margin-left: 20px;
  }
}

ol {
  list-style-position: outside;
  margin-left: 35px;
}