.libre-baskerville-regular {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: normal;
}

.libre-baskerville-bold {
  font-family: "Libre Baskerville", serif;
  font-weight: 700;
  font-style: normal;
}

.libre-baskerville-regular-italic {
  font-family: "Libre Baskerville", serif;
  font-weight: 400;
  font-style: italic;
}

.instrument-sans {
  font-family: "Instrument Sans", sans-serif;
}

body {
    font-family: "Instrument Sans", sans-serif;
	color: #3A3A3A;
	font-size: 20px;
	line-height: 1.6;
    margin: 0;
    padding: 0;
	background-color: #F5F0E1;
}

.container {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
	padding-bottom: 25px;
}

.icons a {
	color: #7B2D26;
	font-weight: 800;
}

.icons a:hover {
	color: #6A994E;
	font-weight: 800;
}

 .awesome-big {
    font-size: 60px;
  }
  
 .awesome-big2 {
    font-size: 30px;
  }

.page-width {
	min-width: 400px;
	max-width: 1400px;
	margin: auto;
}

header {
    /*background: #7B2D26;*/
	background: linear-gradient(135deg, #4b0e17, #7B2D26);
    color: #fff;
    padding-top: 30px;
    min-height: 70px;
    border-bottom: #6A994E 5px solid;
}

header a {
    font-family: "Libre Baskerville",  Times, serif;
	color: #fff;
    text-decoration: none;
    text-transform: uppercase;
	font-weight: 800;
    font-size: 20px;
}

header a:hover {
    color: #F5F0E1;
}

header ul {
    padding: 0;
    list-style: none;
}

header li {
    float: left;
    display: inline;
    padding: 0 20px 0 20px;
}

header h1 {
    float: left;
}

header nav {
    float: right;
    margin-top: 10px;
}

.main-section {
    padding: 20px 0;
    border-bottom: #6A994E 1px solid;
}

.main-section h2 {
	width: 500px;
    color: #6A994E;
}

footer {
    /*background: #3A3A3A;*/
	background: linear-gradient(255deg, #8A8A8A, #3A3A3A);
    color: #F5F0E1;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

h2 {
    font-family: "Libre Baskerville",  Times, serif;
    text-decoration: none;
	font-weight: 800;
    font-size: 30px;
}

h3 {
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
	font-weight: 800;
    font-size: 20px;
}


h4 {
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
	font-weight: 600;
    font-size: 26px;
	margin-top: 0px;
}

h5 {
    font-family: "Instrument Sans", sans-serif;
    text-decoration: none;
	font-weight: 400;
    font-size: 12px;
	margin-top: 0px;
}

.gallery {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 16px;
      max-width: 1000px;
      margin: auto;
    }

    .gallery img {
      width: 100%;
      border-radius: 12px;
      cursor: pointer;
      transition: transform 0.3s ease;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }

    .gallery img:hover {
      transform: scale(1.03);
    }

    /* Lightbox */
    .lightbox {
      display: none;
      position: fixed;
      z-index: 1000;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }

    .lightbox.active {
      display: flex;
    }

    .lightbox img {
      max-width: 90%;
      max-height: 80%;
      border-radius: 10px;
    }

    .lightbox .close, .lightbox .prev, .lightbox .next {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      font-size: 40px;
      color: white;
      background: #3A3A3A;
      padding: 10px 20px;
      cursor: pointer;
      border: none;
      user-select: none;
    }

    .lightbox .close {
      top: 5%;
      right: 5%;
      transform: none;
      font-size: 30px;
    }

    .lightbox .prev {
      left: 5%;
    }

    .lightbox .next {
      right: 5%;
    }

    .lightbox .close:hover,
    .lightbox .prev:hover,
    .lightbox .next:hover {
      background: #7B2D26;
	  /*background: rgba(255,255,255,0.2);*/
    }