/* General Body and Typography */
@import url('https://fonts.googleapis.com/css2?family=Libertinus+Serif+Display&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: "Libertinus Serif Display", system-ui;
    font-size: 22px;
    font-weight: 500;
    color: hsl(0deg 0% 100% / 95%);
    letter-spacing: 1px;
}

.logo {
    max-width: 300px;
}

h1, h2, h3, h4, h5 {
    font-size: 60px;
    margin: auto;
    padding: initial;
    text-shadow: 1px 1px 5px rgb(0 0 0 / 16%);
}

a {
    color: #ffb733;
    text-shadow: 0 0 1px #0d0d0d7a;
    text-decoration: underline;
}

/* Active State */
.active {
    border-bottom: 8px solid #a51615 !important;
}

/* Info Section */
#infoot {
    max-width: 98%;
    margin: auto;
}

#infoot pre {
    font-family: Raleway, sans-serif;
}

/* Footer */
#footer {
    padding-top: 50px;
    color: #fff;
    z-index: 99;
    font-size: 14px;
    background: #2c2d2f;
}

#footer a {
    color: white;
}

/* Top Bar */
#topBar {
    width: 100%;
    z-index: 10001;
    background: #a51615;
    box-shadow: -1px 5px 26px black;
}

#banner {
    padding: 15px;
    margin: auto;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1600px;
}

div#topSocials {
    color: white;
    text-decoration: none;
    text-align: right;
}

div#topSocials a {color:yellow;
                 text-decoration:none;}

/* Three Footer Section */
#threeFooter {
    text-align: center;
    margin: auto;
}

#threeFooter div {
    width: 31%;
    overflow: hidden;
    padding-bottom: 17px;
    margin-bottom: 15px;
    display: inline-block;
    vertical-align: top;
    z-index: 100;
    position: relative;
}

#threeFooter h3 {
    color: #ffffff;
    text-transform: capitalize;
}

#threeFooter div:first-child {
    margin-left: 0 !important;
    text-align: left;
    float: left;
}

#threeFooter div:last-child {
    margin-right: 0 !important;
    float: right;
    text-align: right;
}

#threeFooter ul {
    list-style: none;
    padding: 0;
}

#threeFooter li a {
    text-decoration: none;
    display: block;
    border-bottom: 1px solid #585d69;
    padding: 7px;
    font-size: 12px;
    padding-right: 20px;
    text-transform: lowercase;
}

/* Misc Layout */
.textBoxes {
    position: relative;
    margin: auto;
    background: #3f4243;
}

.readingBit {
    padding-top: 1px;
    display: flow-root;
    margin: auto;
    margin-top: -1px;
}

/* Flexbox Utility */

.setStyle > div {
    /* padding-top: 100px; */
    /* padding-bottom: 100px; */
    max-width: 1600px;
    text-align: center;
    align-items: center;
    justify-content: center;
    margin: auto;
    flex: 1;
    display: flex;
}

.setStyle > div > div {
    display: inline-block;
    vertical-align: top;
    text-align: left;
    padding: 3%;
    box-sizing: border-box;
    flex: 1;
}
 div#bread {
    background: #efefef;
    padding: 10px;
}
/*BLog Section */

main.news {
    width: 100%;
    margin: auto;
}

.news section {
    border: 1px solid #d7d7d7;
    padding: 10px;
    border-radius: 5px;
    width: 100%;
    text-align: left;
    content-visibility: auto;
    margin-bottom: 20px;
}

img.blogIcon {
    float: left;
    margin-right: 30px;
    max-width: 200px;
}

#galBoxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
}

#galBoxes div {
    flex: 1 1 calc(20% - 10px); /* Adjust to control how many items per row */
    max-width: calc(20% - 10px);
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    transition: transform 0.3s ease;
}

#galBoxes img {
    width: 100%;
    height: 180px; /* Adjust height as needed */
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 6px;
}

#galBoxes div:hover {
    transform: translateY(-5px);
}

#galBoxes div:hover img {
    transform: scale(1.1);
}

.setStyle.intro {
    background: #0000008c;
}

.setStyle.intro > div {
    max-width: 1200px;
    font-size: 39px;
    padding-top: 100px;
    padding-bottom: 60px;
}


.btn {
  background: linear-gradient(135deg, #ff9e00, #ffb733);
  color: #222;
  font-weight: bold;
  font-size: 32px;
  padding: 12px 28px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 6px 15px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 25px rgba(0,0,0,0.4);
  background: linear-gradient(135deg, #ffb733, #ff9e00);
  color: #000;
}

.btn:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}
.caption {
    position: absolute;
    bottom: 0;
    background: #a51615;
    width: 100%;
    padding: 10px !important;
    box-sizing: border-box;
    font-size: 30px;
}

.wrapper {
    position: relative;
}

.wrapper {
  position: relative;
  overflow: hidden;
  border: 1px solid black;
}

.wrapper img {
  transition: transform 0.4s ease;
  display: block;
}

.wrapper:hover img {
  transform: scale(1.1);
}
.setStyle.whiteRow {
    background: #ffffff;
    color: black;
}

.setStyle.threeWide > div {
    max-width: none;
    padding: 0;
}

.setStyle.threeWide > div > div {padding:10px;border: navajowhite;}

section {
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid #ddd;
  position: relative;
  font-family: Arial, sans-serif;
}

section::before {
  content: "★★★★★";
  display: block;
  color: #f4b400; /* gold stars */
  font-size: 18px;
  margin-bottom: 10px;
}