@font-face {
    font-family: "ParangoOtw01Bold-Regular";
    src: url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.eot");
    src: url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/9a1ec757a67db911a72c635dfecceb72.svg#Parango OT W01 Bold")format("svg");
}
/* Top Navigation and Header */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "ParangoOtw01Bold-Regular", sans-serif;
  background: #fff;
  color: #000;
}
				
.branding-header {
  position: relative;
  width: 100%;
  background: #c9935b;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0.5rem 2rem;
  gap: 1rem;
  height: 71px;
  z-index: 6;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16); 
}

.contact-us {
  color: white;
  font-size: 1.25rem;
  margin-left: auto;
}

.branding-header img {
  height: 32px;
  width: auto;
  cursor: pointer;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
}

.branding-header-large {
  position: relative;
  width: 100%;
  background: #b21615;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0rem 1rem;
  gap:1rem;
  height: 200px;
  box-shadow: 0px 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 5;
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 4rem;
  height: 3rem;
  cursor: pointer;
  z-index: 1001;
  position: relative;
  touch-action: manipulation;
  overflow: hidden;
}

.hamburger span {
  display: block;
  height: 4px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Animation when "open" class is applied */
.hamburger.open span:nth-child(1) {
  transform: translateY(22px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-22px) rotate(-45deg);
}



/* Sidebar menu */
.sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  max-width: 300px;
  height: 100%;
  background-color: #b21615;
  color: white;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: right 0.3s ease-in-out;
  z-index: 1000;
}

.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  margin-bottom: 1.5rem;
}

.sidebar ul li a {
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
}

.sidebar.active {
  right: 0;
}


      .blog {
        background: #ffffff;
        padding: 2rem;
        display: flex;
        flex-direction: column;
        gap: 3rem;
        max-width: 1200px;
        margin: 0 auto;
      }

      .blog-entry {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .blog-image {
        width: 100%;
        max-width: 540px;
        height: auto;
        border: 1px solid #707070;
        object-fit: cover;
      }

      .blog-title {
        font-family: "ParangoOtw01Bold-Regular", sans-serif;
        font-size: 2rem;
        color: #000;
      }

      .blog-subtitle,
      .blog-author {
        font-family: "TimesNewRoman-Regular", sans-serif;
        font-size: 1.25rem;
        color: #000;
      }

      .author-box {
        display: flex;
        align-items: center;
        gap: 1rem;
		padding-top: 7rem;
      }

      .author-image {
        width: 72px;
        height: 72px;
        border-radius: 50%;
        border: 1px solid #707070;
        object-fit: cover;
      }

      hr {
        border: none;
        border-top: 1px solid #707070;
        margin: 2rem 0;
      }

      .gallery-text {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 4.5rem);
  margin-top: 0.5rem;
   display: none;
  margin-left: auto;
  z-index: 100;
}

      @media (min-width: 768px) {
          .hamburger {
    display: flex;
  }
        .blog-entry {
          flex-direction: row;
          align-items: flex-start;
        }
        .entry-content {
          margin-left: 2rem;
          flex: 1;
        }
        .gallery-text {
          display: block;
        }
      }
	  