/* Site Stylesheet
  1. Global Styles
  2. Typography Styles
  3. Structure Styles
  4. Module Styles
  5. Component Styles
  6. Page Styles
======================================== */

/* 1. Global Styles
======================================== */
* {
    box-sizing: border-box;
  }
  
  html {
    height: 100%;
    margin: 0 auto;
    overflow-x: hidden;
    width: 100%;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
  }
  body {
    height: 100vh; /* Use viewport height to ensure full screen height */
    margin: 0 auto;
    overflow-x: hidden;
    width: 100vw; /* Use viewport width to ensure full screen width */
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    /* Make a color gradiant background color */
    /* make that gradiant go from bottom left to top right */
    background: linear-gradient(to top right, #68b5be, #2a496c);
    /* background-image: url("./resources/image/bg.jpeg"); */
    background-repeat: no-repeat; /* Ensure the image doesn't repeat */
    background-size: cover; /* Cover the entire screen, might crop the image */
    background-position: center 0; /* Center the background image */
    color: rgb(213, 213, 213);
    color: #ffffff; /* Redundant color declaration, consider keeping one */
    font-family: 'Pacifico', cursive; /* Apply Pacifico to headings */
    margin-bottom: 0;
    padding-bottom: 0;

    /* Use the custom font EvilBible.ttf*/
    font-family: 'EvilBible', sans-serif;
  }
  

  /* Create the font family for EvilBible */
  @font-face {
    font-family: 'EvilBible';
    src: url('./resources/image/EvilBible.ttf') format('truetype');
  }
  
  
.center-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
}

.memory {
  max-width: 800px;
  height: auto;
  border: 5px solid white; /* white border */
  border-radius: 15px; /* rounded corners */
}
.mainbody {
  text-align: center;
}
  .clearfix::after {
    content: " ";
    clear: both;
    display: table;
  }
  
  .float-right {
    float: right;
  }

  .social-icon {
    width: 40px;
  }

/* 2. Typography Styles
======================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  /* font-family: 'Archivo', sans-serif; */
  font-weight: 700;
  transition: font-size 0.25s ease;
}

h1 {
  font-size: calc(64px / 1.5);
  margin: 0;
  /* text-transform: uppercase; */
}

h2 {
  font-size: calc(64px / 1.5);
}

h3 {
  font-size: calc(45px / 1.5);
}

h4 {
  font-size: calc(23px / 1.5);
}

@media(min-width: 720px) {
  h1 {
    font-size: calc(64px / 1.25);
  }

  h2 {
    font-size: calc(45px / 1.25);
  }

  h3 {
    font-size: calc(32px / 1.25);
  }

  h4 {
    font-size: calc(23px / 1.25);
  }
}

@media(min-width: 1024px) {
  h1 {
    font-size: 64px;
  }

  h2 {
    font-size: 45px;
  }

  h3 {
    font-size: 32px;
  }

  h4 {
    font-size: 23px;
  }
}


.site-main-header{
    margin: auto;
    text-align: center;
    position: relative;
    margin-bottom: 80px;
    background-image: url('resources/image/bg.jpg');
    background-size: cover;
    background-position: center;
    background-color: #138cff;
}

.site-main-header-2 {
  background-image: url('resources/image/bg2.jpg');
  margin-top: 10vh;
}
.site-main-header-3 {
    background-image: url('resources/image/bg3.jpg');
    margin-bottom: 0;
    padding-bottom: 0;
    margin-top: 10vh;
}

.bluestop {
  /* color: #138cff; */
}

.site-main-header::before{
  content:"";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background-image: url("./resources/image/v602-nunoon-32-rippednotes.jpg"); */
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  opacity: 0.3;
  z-index: -1;
}

.site-main-header::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: -1
}
p {
  font-size: 1.8rem;
  line-height: 2.5rem;
  margin: 0 0 15px;
}

a {
  color: #42A5F5;
  font-size: 16px;
  line-height: 23px;
}

li {
  font-size: 16px;
  line-height: 23px;
  list-style: none;
}

label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
  margin-bottom: 5px;
}

img {
  width: 100%;
}

b,
strong {
  font-weight: 700;
}

small {
  font-size: 12px;
  line-height: 1.25;
}

#page-title{
    max-width: 100%;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 5rem;
}

.button-primary{
  border-radius: 3px;
  background-color: #34474F;
  color: #FFFFFF;
  display: inline-block;
  /* font-family: 'Archivo', sans-serif; */
  font-size: 16px;
  font-weight: 700;
  line-height: normal;
  padding: 15px 30px;
  text-align: center;
  text-decoration: none;
  transition: opacity 0.5s ease;
}

.button-primary::hover{
    opacity: 0.75;
}
/* 3. Structure Styles
======================================== */
.container {
    margin: 0 auto;
    max-width: 1160px;
    padding: 0 15px;
  }
  
.divider {
    border: none;
    border-bottom: 1px solid #F2F3F5;
    clear: both;
    width: 100%;
  }

  #container{
    align-items: center;
  }

  .hero-image{
    width: 500px;
    height: auto;
    margin-bottom: 4rem;
    max-width: 100%;
  }
  .banner-image{
    width: 100%;
    min-height: 600px;
  }

  .section-2-image{
    width: 200px;
    height: auto;
    margin-bottom: 15px;
  }

  .section-2 {
    display: grid;
    grid-template-columns: 2, 1fr;
    grid-gap: 10px;
    align-items: start;
  }

  @media screen and (min-width: 720px) {
    .section-2 {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-template-rows: auto;
      align-items: start;
    }
    
    .section-2 li:first-child {
      grid-column: 2;
      grid-row: 1;
    }
    
    .section-2 li:last-child {
      grid-column: 1;
      grid-row: 1;
    }
    
  }

  #hero-section{
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .section-2{
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .section-2-top{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1;
  }

  @media screen and (max-width: 720px) {
    .section-2-top {
      grid-template-columns: 1fr;
      grid-template-rows: auto;
  }
}

  .section-2-bottom{
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1;
    align-items: center;
  }
    /*4. Module Styles
  ====================================== */
  /* Site Navigation */
.site-header {
    background-color: #34474F;
    padding: 0;
  }
  
  .site-header-nav {
    align-items: center;
    display: flex;
  }

  .social-links {
    display: flex;
    gap: 2rem;
    margin: auto;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    margin-top: 2rem;
  }
  
  .site-nav-left,
  .site-nav-right {
    align-items: center;
    display: flex;
  }
  
  .site-nav-right {
    float: right;
    margin-left: auto;
  }
  
  .site-nav-left li:not(:first-child),
  .site-nav-right li {
    font-weight: 700;
    display: inline-block;
    line-height: 0;
  }
  
  .site-nav-mobile li {
    display: inline-block;
  }
  
  .site-nav-left li:not(:last-child),
  .site-nav-right li:not(:last-child),
  .site-nav-mobile li:not(:last-child) {
    margin-right: 45px;
  }
  
  .site-nav-left .logo {
    width: 120px;
  }
  
  .site-nav-link {
    color: #FFFFFF;
    text-decoration: none;
  }
  
  
  /* Site Footer */
  .footer {
    padding: 30px 30px 60px;
    align-items: center;
  }
  
  .footer-section {
    margin-bottom: 15px;
    align-items: center;
    display: flex;
  }
  
  @media(min-width: 720px) {
    .footer-section {
      margin-bottom: 0;
    }
  }
  
  .footer .logo {
    margin-bottom: 5px;
    width: 100px;
  }
  
  .footer a  {
    text-decoration: none;
  }
  
  .footer p  {
    margin-bottom: 5px;
  }
  