.body {

    font-size: 100%;
    margin: 0;
    min-height: 100vh;
    width: 100vw;

}

* {

font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
'Open Sans', 'Helvetica Neue', sans-serif;

}

/* STOREFRONT, LOGO, BANNER, CONNECTION POINTS BEGINS */

.logobanner {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Two columns of equal width */
  grid-template-rows: auto auto; /* Two rows */
  width: 100%;
  height: 325px;
  justify-items: center;
}

.logophoto {
  grid-column: 1 / -1;
  grid-row: 1 / 2;
  display: flex;
  justify-content: center; /* Center content horizontally */
  align-items: center; /* Center content vertically */
  width: 100%;
  height: fit-content;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.logophoto img {

  width: 1440px;
  height: 325px;
  object-fit: cover;

}

.buttons {
  grid-column: 1 / -1; /* Span both columns */
  grid-row: 1 / 2; /* Top row */
  display: flex;
  justify-content: center; /* Center horizontally */
  align-items: center; /* Center vertically */
  width: 100%;
  gap: 0.75rem;
  padding: 2%;
  box-sizing: border-box;
  position: relative;
  z-index: 1; /* Ensure buttons are above the background image */
}

.buttons button {
  position: relative;
  background-color: black; /* Black background */
  width: 200px;
  height: 200px;
  border: none;
  border-radius: 12px; /* Apply border radius to entire button */
  cursor: pointer;
  overflow: hidden;
  z-index: 2;
}

.buttons button::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 85%; /* Top two-thirds for the image */
  background-size: cover;
  background-position: center;
  border-radius: 12px 12px 0 0; /* Apply border radius to top corners */
}

.booknow::before {
  background-image: url("/images/deercross2.jpg");
}

.instructverify::before {
  background-image: url("/images/verify2.png");
}

.coursemanual::before {
  background-image: url("/images/coursemanual2.jpg");
}

.button-text {
  position: absolute;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Semi-transparent black background */
  color: white;
  text-align: center;
  left: 0;
  padding: 10px 0;
  font-size: 16px;
  font-weight: bold;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
  'Open Sans', 'Helvetica Neue', sans-serif;
  border-radius: 0 0 12px 12px; /* Apply border radius to bottom corners */
  box-sizing: border-box;
  overflow: hidden;
  letter-spacing: 1px;
}

.buttons button:hover::before,
.buttons button:hover .button-text {
  opacity: 0.8; /* Dim the button on hover */
}

.towns {

  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: italic;
  font-size: 2rem;
  font-weight: bold;
  padding-top: 8px;
  padding-bottom: 8px;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
  'Open Sans', 'Helvetica Neue', sans-serif;
  letter-spacing: 2px;

}

/* STOREFRONT, LOGO, BANNER, CONNECTION POINTS ENDS */

/* BILLBOARD, ADCOPY, EXPERIENCE BEGINS */

.adcopy  {

display: grid;
grid-template-columns: 1fr 1fr; /* Two columns of equal width */
grid-template-rows: auto auto auto; /* Three rows */
gap: .5rem; /*Optional: space between grid items */
background-color: black;
color: white;
font-family: Arial, Helvetica, sans-serif;
margin: 0;
padding: 0;
font-family: Arial, Helvetica, sans-serif;

}

.adcopy1 {

grid-column: 1 / 3; /* Span across both columns */
grid-row: 1 / 2; /* Occupy the first row */
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
font-weight: bold;
margin-left: 10px;
padding-top: 25px;
padding-bottom: 10px;
letter-spacing: 15px;
text-shadow: 1px 1px 1px red;
}

.adcopy2 {

grid-column: 1 / 2; /* First column */
grid-row: 2 / 3; /* Second row */
font-size: 2.5rem;
font-weight: bolder;
margin-left: 20%;
align-self: center;


}

.adcopy3 {

grid-column: 2 / 3; /* Second column */
grid-row: 2 / 3; /* Second row */
font-size: 1.5rem;
font-weight: bold;
font-style: italic;
line-height: 2.75rem;
text-align: left;
margin-left: 10%;
padding-top: 10px;
}

.adcopy4 {
  
  grid-column: 1 / 2; 
  grid-row: 3 / 4; /* Occupy the third row */

display: flex;
justify-content: flex-start;
align-items: center;
font-weight: bold;
font-size: 1rem;
padding-top: 10px;
padding-bottom: 5px;
margin-left: 20%;

}

.adcopy5 {
  
  grid-column: 2 / 3; 
  grid-row: 3 / 4; /* Occupy the third row */
display: flex;
align-items: center;
font-weight: bold;
font-size: 1rem;
padding-top: 10px;
padding-bottom: 5px;
margin-left: 10%;

}

/* BILLBOARD, ADCOPY, EXPERIENCE ENDS */

/* STORE FACADE/JUMP POINT FOR STOREFRONT CONNECTION POINT BEGINS */

.courselogo {

    display: block;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 325px; 
}

.courselogo img {

    width: 100%;
    height: 100%;
    object-fit: cover;
}

#bookapalcourse {

  position: absolute;
  bottom: 10px;
  left: 50%;
  letter-spacing: 2px;
  transform: translateX(-50%);
  color: white;
  font-family: system-ui, -apple-system, 
  BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
  'Open Sans', 'Helvetica Neue', sans-serif;
  font-weight: bold;
  font-size: 2rem;
  z-index: 2;

}

/* STORE FACADE/JUMP POINT FOR STOREFRONT CONNECTION POINT ENDS */

/* STORE/MALL BEGINS / PRODUCT DESCRIPTIONS BEGINS */

.coursestore {

    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr; /* Four columns of equal width */
    grid-template-rows: auto auto; /* Two rows */
    justify-items: center;
    border: 10px solid red;
    background-color: black;
    padding: 20px;
    
}

.course-image {
    width: 100%; /* Fill the width of the div */
    height: auto; /* Take up half the height of the div */
    object-fit: cover; /* Ensure the image covers the area without distortion */
    box-sizing: border-box;
}

.course1, .course2, .course3, .course4 {

display: flex;
flex-direction: column; /* Stack content vertically */
justify-content: space-around;
align-items: left; /* Center content horizontally */
background-color: white;
height: 750px;
width: 300px;
border: 2px solid white;
color: black;
margin-left: 10px;
margin-right: 10px;
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', 
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
font-size: x-large;
padding: 5px; /* Add padding inside the div */
overflow: hidden; /* Hide overflow content */
box-sizing: border-box; /* Include padding and border in the element's total width and height */
line-height: 30px;
position: relative;

}

.line {
width: 100%;
height: 1px;
background-color: #000;
}

.book1, .book2, .book3, .book4 {

display: flex;
justify-content: center;
align-items: center;
background-color: rgb(35, 47, 203);
font-family: Arial, Helvetica, sans-serif;
font-size: large;
font-weight: 400;
color: white;
border: none;
width: 150px;
height: 50px;
padding: 25px;
box-sizing: border-box;

}

/* STORE/MALL ENDS / PRODUCT DESCRIPTIONS ENDS */

/* POPUP COURSE REG FORM CHARACTERISTICS/BEHAVIOUR BEGINS */

/* Popup container - can be anything you want */
.popupclass {

    position: relative;
    display: inline-block;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
    width: 25vw;
    text-align: center;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  
  }
  
  /* The actual popup */
   .popupclass .popupclasstext {
  
    
    visibility: hidden;
    /*background-image: url("/images/shotgun.jpg");*/
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 65%;
    height: 65%;
    min-width: 65%;
    min-height: 65%;
    top: 0%;
    left: 15%;
    margin: 0;
    box-sizing: border-box;
    border-radius: 5rem;
    padding: .5rem;
    border: .313rem solid red;
    box-shadow: 0rem 0rem 6.25rem .938rem black;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
    position: fixed;
    z-index: 1;
   
   
  }
  
  /* Popup arrow */
  .popupclass .popupclasstext::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
  }
  
  /* Toggle this class - hide and show the popup*/
  .popupclass .show {
    visibility: visible;
    -webkit-animation: fadeIn 1s;
    animation: fadeIn 1s;
  }
  
  /* Add animation (fade in the popup)*/
  @-webkit-keyframes fadeIn {
    from {opacity: 0;} 
    to {opacity: 1;}
  }
  
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity:1 ;}
  }

/* POPUP COURSE REG FORM CHARACTERISTICS/BEHAVIOUR ENDS */

/* FOOTER CHARACTERISTICS/BEHAVIOUR BEGINS */

.footer-background {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 325px;
    z-index: 0;
    background-image: url('/images/huntingshotgun_edited.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.footer-background h1 {
    
    text-align: center;
    text-shadow:  1px 1px 1px red, 2px 2px 1px rgb(255, 255, 255); 
    margin-top: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell,
    'Open Sans', 'Helvetica Neue', sans-serif;
    letter-spacing: 1px;
}

.buttoncontainer {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    z-index: 1;
    padding: 5px;
}

.button {
    background-color: black;
    border: 1px solid black;
    border-radius: 10px;
    color: white;
    text-align: center;
    text-decoration: none;
    font-size: 1em;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: inline-block;
    height: 10px;
    padding: 25px;
    margin-right: 2%;
    margin-left: 2%;
    transition-property: background-color;
    transition-duration: .5s;
    z-index: 2;
    word-wrap: break-word;
    display: flex;
    justify-content: center;
    align-items: center;
}

.button:hover {
    background-color: red;
}

.button:active {
    background-color: red;
    color: black;
    transform: translateY(4px);
}

/* Hide the form by default */
.form-popup {
    display: none;
    position: fixed;
    bottom: 0;
    right: 15px;
    width: 300px;
    height: 400px;
    border: 3px solid #f1f1f1;
    z-index: 9;
    background-color: white;
  }
  
  /* Style the cancel button */
  .form-popup .cancel {
    background-color: red;
    width: 100%;
    padding: 10px;
    cursor: pointer;
  }

/* FOOTER CHARACTERISTICS/BEHAVIOUR ENDS */