
/***** START IC FORUMS *****/
  {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Georgia', serif;
}

.container {
  display: flex;
  height: 50vh;
}

.north {
  flex: 2;
  background-image: 
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)),
    url(https://images.unsplash.com/photo-1505235901362-40f1b8b91573?q=80&w=2078&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.east {
  flex: 2;
  background-image: 
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)),
    url(https://images.unsplash.com/photo-1621409771865-6e6ed95ef57d?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.south {
  flex: 2;
  background-image: 
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)),
    url(https://images.unsplash.com/photo-1618444304243-251c411a5d9e?q=80&w=1965&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.west {
  flex: 2;
  background-image: 
    linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0)),
    url(https://images.unsplash.com/photo-1714259666126-857958980547?q=80&w=1974&auto=format&fit=crop&ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.overlay {
  background-color: rgba(0, 0, 0, 0.3);
  padding: 40px;
  color: #fff;
  max-width: 80%;
  text-align: left;
    border-radius: 25px;

}

.overlay h1 {
  font-size: 3em;
  margin-bottom: 20px;
  font-weight: bold;
  letter-spacing: 2px;
}

.description p {
  font-size: 1em;
  line-height: 1.5em;
  color: #ccc;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  flex: 1;
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 20px;
  color: #fff;
  text-shadow: 1px 1px 2px #000;
  transition: background-color 0.3s ease;
  
}

.section-text {
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 25px;
    border-radius: 25px;

}

.section h2 {
  font-size: 1.1em;
  font-style: italic;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.section p {
  font-size: 0.8em;
}

.section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-right: 20px;
}

.last-post {
  background: rgba(0, 0, 0, 0.5);
  padding: 0px 30px;
  font-size: 0.75em;
  color: #ccc;
  max-width: 40%;
  text-align: right;
}


/***** END IC FORUMS *****/
		

		
		/* START OOC FORUMS */

.forum-container {
  padding-left: 50px;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 20px; /* Space between forums */
    width: 90%;
    max-width: 2000px;
}

.forum {
    background-color: #120F12;
    border: 1px solid #211b21;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.forum-header {
    margin-bottom: 20px;
}

.forum-header h2 {
    font-size: 22px;
  font-family: 'Crimson Text', serif;
  text-transform: uppercase;
  font-style: italic;
    margin-bottom: 5px;
}

.last-poster {
    font-size: 14px;
    color: #777;
    margin-top: 5px;
}

.subForums {
    text-align: center;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Style for the double fading HR */
hr.double-fade {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, #333 20%, transparent);
    margin: 20px 0;
}

.news {
  background: rgba(0,0,0,.3);
  padding:10px;
  transition: 0.5s ease;
  text-align:center;
  border-bottom:1px solid rgba(0,0,0,.3);
}

.proheader {
  font-style: italic;
  background-color: hsl(280,13%,5%, .8);
  padding:20px;
  margin-bottom: 10px;
  color:#888;  
  font-family: 'Crimson Text', serif;
  letter-spacing:2px;
  text-align:LEFT;
}


/*** END OOC FORUMS ***/
		