/* Default Template CSS */

body {
    color: #111111;
    background-color: #ffffff;
}

#container {
    z-index: 10;
    margin: 20px auto;
    width: 1040px;
    height: auto;

    /* CSS Grid */
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 120px 500px 75px;
    grid-template-areas:
       "a a"
       "b c"
       "d d";
}

#a, #b, #c, #d {
    z-index: 20;
    
}

#a {
    grid-area: a;
    
}
#a ul li {
  display: inline;
  padding: 5px;
  text-align: right;
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
font-weight: 300;
text-transform: uppercase;
  
}


#a ul a:link {
  font-size: 1.25em;
  letter-spacing: 1px;
  font-variant: normal;
}


#a ul a:visited {
    font-size: 1.2em;
    letter-spacing: 1px;
    font-variant: small-caps;
}


#a ul a:hover {
    font-size: 1.2em;
    letter-spacing: 1px;
    font-variant: normal;
    color:black;
    text-decoration: underline;
}


#a ul a:active {
      font-size: 1.2em;
      letter-spacing: 2px;
      font-variant: small-caps;
      text-decoration: underline;
      }

#a h1{
  font-size: 1.75em;
  padding-bottom: 17px;
  
  font-family: Didot, 'Bodoni MT', 'Noto Serif Display', 'URW Palladio L', P052, Sylfaen, serif;
  text-transform: uppercase;
}
#b {
    grid-area: b;
    background-color: #030303;
    
}

#b {
  grid-area: b;
  margin: 0;
  height: 100%;
  display: grid;
  background-color: #fffefa;
  font-family: "Didot";
  color: rgb(13, 12, 12);
  text-align: left;   /* Aligns content to the top */
  padding-top: 150px; 
  padding-left: 5px;     /* Adds space at the top */
           /* Adds spacing between paragraphs */
}
/* Optional: Style the second paragraph differently for emphasis */
#b h1 {
  font-size: 1.1em;
  color: rgb(17, 15, 15);
  text-shadow: none;
  margin-top: -180px;  /* Adjust this value as needed to move it up */
  padding-bottom: 0;
}

#b p {
  margin: 0;
  text-align: left;
  font-size: 2.5em;
  text-shadow: none;
  margin: 0;
  
}


#c {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 155px); /* 3 columns of 150px each */
  grid-template-rows: repeat(3, 155px);   /* 3 rows of 150px each */
  gap: 5px; /* Spacing between the grid items */
}

.image-item {

  width: 100%; /* Ensures the item spans the full width of the grid column */
  height: auto; /* Maintains aspect ratio of the image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 2px solid #ddd;
  border-radius: 8px;
  background-color: black;
}

#d {
  grid-area: d;
}

/* Classes */

.cmiddle {   /* Centers content vertically */                                      
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.rmiddle {  /* Centers content horizontally */                                         
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

/* Color Palette

#111111
#ffffff

/*

/* Below are various code snippets for future use as needed */


/* Google Fonts


*/


/* Full Screen Background Image

background-image:url(../images/);
background-position: center center;
background-repeat:  no-repeat;
background-attachment: fixed;
background-size:  cover;
background-color: var(--black);

*/


/* Individual Side Box Shadows

top {
  box-shadow: 0px -15px 10px -15px #111;
}

right {
  box-shadow: 15px 0px 10px -15px #111;
}

bottom {
  box-shadow: 0px 15px 10px -15px #111;
}

left {
  box-shadow: -15px 0px 10px -15px #111;
}

*/

/*  Fullscreen Video Background CSS

#video-background {
  position: fixed;
  right: 0; 
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
  width: auto; 
  height: auto;
  z-index: -100;
}

*/
