@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Medium.woff2") format("woff2"),
    url("../font/Roboto-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Black.woff2") format("woff2"),
    url("../font/Roboto-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-MediumItalic.woff2") format("woff2"),
    url("../font/Roboto-MediumItalic.woff") format("woff");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Thin.woff2") format("woff2"),
    url("../font/Roboto-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-BlackItalic.woff2") format("woff2"),
    url("../font/Roboto-BlackItalic.woff") format("woff");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Light.woff2") format("woff2"),
    url("../font/Roboto-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Italic.woff2") format("woff2"),
    url("../font/Roboto-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-ThinItalic.woff2") format("woff2"),
    url("../font/Roboto-ThinItalic.woff") format("woff");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Regular.woff2") format("woff2"),
    url("../font/Roboto-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-BoldItalic.woff2") format("woff2"),
    url("../font/Roboto-BoldItalic.woff") format("woff");
  font-weight: bold;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-LightItalic.woff2") format("woff2"),
    url("../font/Roboto-LightItalic.woff") format("woff");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  src: url("../font/Roboto-Bold.woff2") format("woff2"),
    url("../font/Roboto-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-family: Roboto;
}

body {
  background-color: #0f0f0f;
}

header {
  position: sticky;
  background-color: #690100;
  color: white;
  padding: 25px 50px;
  z-index: 5;
}

header .nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header .logo {
  font-size: 24px;
  font-weight: bold;
}

header nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

header nav ul li a {
  color: white;
  text-decoration: none;
  font-size: 16px;
}

header nav ul li a:hover {
  text-decoration: underline;
}

/* Burger menu style */
.burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger-menu span {
  width: 25px;
  height: 3px;
  background-color: white;
  border-radius: 2px;
}

/* hero */
.hero {
  background-color: #690100;
  padding: 20px 0px 200px 30px;
  border-top: 1px solid white;
  font-size: 200px;
  text-transform: uppercase;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  min-height: 500px;
  text-align: center;
}

.hero > span {
  color: #fff;
  font-size: 200px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 1;
  transform: scale(1, 3);
  animation: flicker 1s ease-in-out forwards;
  opacity: 0;
  position: relative;
  display: inline-block;
  margin-top: 150px;
}

@keyframes flicker {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 0.65;
  }
  40% {
    opacity: 0;
  }
  60% {
    opacity: 0.65;
  }
  100% {
    opacity: 0.65;
  }
}

.hero > aside {
  z-index: 2;
  text-align: center;
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -50px;
}

.hero > aside img {
  margin: 0 -50px;
}

.hero > div {
  z-index: 3;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 20px 0px;
  font-size: 14px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  color: white;
}

.hero > div button {
  padding: 15px 20px;
}

.hero-linking img {
  transition: transform 0.3s ease;
}

.hero-linking img:hover {
  transform: scale(1.1);
}

/* hero */

/* Rotating banner */
.rotate {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 10px;
  overflow: hidden;
  position: relative;
  border-top: #fff solid 2px;
  border-bottom: #fff solid 2px;
}

.rotate .scrolling-text {
  animation: scroll-text 25s linear infinite;
  white-space: nowrap;
}

.rotate .scrolling-text p {
  font-size: 18px;
  font-weight: bold;
  text-transform: uppercase;
}

@keyframes scroll-text {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}

.container-about-us {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px;
  max-width: 1250px;
  margin: auto;
}

.about-section,
.find-us-section {
  background-color: #333;
  padding: 20px;
  flex: 1;
  min-width: 300px;
}

.about-section h2,
.find-us-section h2 {
  color: #fff;
  border-bottom: 2px solid red;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.about-content p {
  color: #fff;
  line-height: 1.6;
  margin-bottom: 20px;
}

.read-more {
  color: #f6eece;
  text-decoration: none;
  font-weight: bold;
}

.read-more span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s;
}

.read-more:hover span {
  transform: translateX(5px);
}

.find-us-section .social-icons-about {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  padding: 20px;
}

.find-us-section .social-icons-about a img {
  width: 60px;
  transition: transform 0.3s ease;
}

.find-us-section .social-icons-about a img:hover {
  transform: scale(1.1);
}

.icon-row {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.icon-row a img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.icon-row a img:hover {
  transform: scale(1.1);
}
/* about-us */
/* band-members */
.band-members {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.band-members h1 {
  margin-bottom: 20px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  width: 80%;
}

.member-card {
  position: relative;
  background: radial-gradient(circle, #a70a0a, #670100);
  overflow: hidden;
  display: flex;
}

.member-card img {
  width: 50%;
  border-radius: 8px;
  object-fit: cover;
}

.member-card .text {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: left;
}

.member-card .text h2 {
  font-size: 18px;
  margin: 0;
}

.member-card .text p {
  font-size: 14px;
  margin: 0;
}
/* band-members */

/* albums */
/* General section styling */
#albums {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  max-width: 1200px;
  gap: 2rem;
  margin: auto;
  color: white;
}

#albums .boxes {
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: stretch;
}

#albums .section-title {
  font-size: 1.2rem;
  text-align: center;
  margin-top: 1rem;
}

#albums .box-left {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

#albums .box-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#albums .big-box {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease-in-out;
}

#albums .big-box img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#albums .big-box:hover {
  transform: scale(1.03);
}

#albums .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#albums .big-box:hover .overlay {
  opacity: 1;
}

#albums .overlay h3 {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: bold;
  text-align: center;
  color: white;
}

#albums .overlay .coming-soon-text {
  color: #ffcc00;
  font-size: 1.2rem;
}

#albums .youtube-btn {
  background-color: #690100;
  padding: 0.7rem 1.2rem;
  font-size: 1rem;
  color: white;
  text-transform: uppercase;
  transition: 0.3s ease-in-out;
  text-decoration: none;
}

#albums .youtube-btn:hover {
  background: #fff;
  color: #000;
  text-decoration: none;
}

/* Container Styling */
#albums .button-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

#albums .button-12-title {
  background-color: #670100;
  color: #fff;
  font-weight: bold;
  text-align: center;
  padding: 2rem 1rem;
  font-size: 1.2rem;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* Button Wrapper Styling */
#albums .button-wrapper {
  position: relative;
  overflow: hidden;
}

#albums .button-12 {
  background: #333;
  color: white;
  padding: 1.82rem 1rem;
  font-size: 1.4rem;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

#albums .button-12 span {
  z-index: 2;
}

#albums .icons {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  display: flex;
  gap: 1rem;
  z-index: 3;
  transition: all 0.3s ease;
  gap: 20px;
}

#albums .icons img {
  width: 50px;
  height: 50px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.6));
  cursor: pointer;
}

/* Blur Effect on Hover */
#albums .button-12:hover span {
  filter: blur(4px);
  opacity: 0.5;
}

#albums .button-12:hover .icons {
  transform: translate(-50%, -50%) scale(1);
}

/* albums */

/* contact */
.contact {
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
}

.contact h1 {
  margin-bottom: 20px;
}

.contact p {
  color: #fff;
  font-size: 20px;
}

#contact-email {
  color: lightblue;
  text-decoration: none;
}

#contact-email:hover {
  color: yellow;
  text-decoration: underline;
}
/* Contact */

/* footer */

.footer {
  background-color: #690100;
  padding: 20px 40px;
  text-align: center;
}

.tagline {
  margin-bottom: 5vh;
}

.tagline h1 {
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 5vh;
}

.btn-12,
.btn-12 *,
.btn-12 :after,
.btn-12 :before,
.btn-12:after,
.btn-12:before {
  border: 0 solid;
  box-sizing: border-box;
}

.btn-12 {
  -webkit-tap-highlight-color: transparent;
  background-color: #000;
  background-image: none;
  color: #fff;
  cursor: pointer;
  font-size: 100%;
  font-weight: 900;
  line-height: 1.5;
  margin: 0;
  -webkit-mask-image: -webkit-radial-gradient(#000, #fff);
  padding: 0;
  text-transform: uppercase;
}

.btn-12:disabled {
  cursor: default;
}

.btn-12:-moz-focusring {
  outline: auto;
}

.btn-12 svg {
  display: block;
}

.btn-12 [hidden] {
  display: none;
}

.btn-12 {
  border-width: 2px;
  overflow: hidden;
  padding: 0.8rem 3rem;
  position: relative;
}

.btn-12 span {
  mix-blend-mode: difference;
}

.btn-12:after,
.btn-12:before {
  background: linear-gradient(
    90deg,
    #fff 25%,
    transparent 0,
    transparent 50%,
    #fff 0,
    #fff 75%,
    transparent 0
  );
  content: "";
  inset: 0;
  position: absolute;
  transform: translateY(var(--progress, 100%));
  transition: transform 0.2s ease;
}

.btn-12:after {
  --progress: -100%;
  background: linear-gradient(
    90deg,
    transparent 0,
    transparent 25%,
    #fff 0,
    #fff 50%,
    transparent 0,
    transparent 75%,
    #fff 0
  );
  z-index: -1;
}

.btn-12:hover:after,
.btn-12:hover:before {
  --progress: 0;
}

.footer-container {
  display: flex;
  justify-content: center;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.branding h1 {
  color: #fff;
  font-size: 24px;
  margin: 0;
}

.footer-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.footer-nav li {
  justify-content: center;
  align-items: center;
}

.footer-nav a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.footer-nav a:hover {
  text-decoration: underline;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icons img {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease-in-out;
}

.social-icons img:hover {
  transform: scale(1.2);
}

.legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 10px;
  border-top: 1px solid white;
}

.legal p {
  color: #fff;
  margin: 0;
  font-size: 14px;
}

.legal nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 20px;
}

.legal nav a {
  text-decoration: none;
  color: white;
  font-size: 14px;
}

.legal nav a:hover {
  text-decoration: underline;
}

/* Read-more */
.heading-read-more {
  text-align: center;
  font-size: 9em;
  color: yellow;
}

.heading2-read-more {
  color: yellow;
  font-size: 20px;
}

.container-read-more {
  color: #fff;
  background: rgba(105, 1, 0, 0.75);
  padding: 30px;
  margin: 20px auto;
  max-width: 60vw;
}

.container-read-more ul {
  padding-left: 40px;
}

.text-readmore {
  color: #fff;
  font-size: 16px;
  text-align: justify;
  line-height: 1.5;
}

.back-to-home {
  color: lightblue;
  text-decoration: none;
  font-size: 20px;
}

.back-to-home:hover {
  text-decoration: underline;
}

.back-to-home span {
  display: inline-block;
  margin-left: 5px;
  transition: transform 0.2s;
}

.back-to-home:hover span {
  transform: translateX(-5px);
}

.image-readmore {
  max-width: 100%;
  height: auto;
}

.container-read-more a {
  color: lightblue;
}

.container-read-more a:hover {
  color: yellow;
}

/* Read-more */

/* scroll up */
#scrollup {
  position: fixed;
  bottom: 115px;
  right: 100px;
  z-index: 100;
  border: #000 1px solid;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  gap: 10px;
  font-weight: bolder;
  font-size: 25px;
  overflow: hidden;
  border-radius: 0;
  height: 50px;
  width: 50px;
}
/* scroll up */

#scrollup:hover {
  background-color: #670100;
  border: #fff 1px solid;
  color: #fff;
  transition: 0.5s;
}

.hidden {
  display: none;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero {
    font-size: 150px;
    padding: 15px 0 150px 20px;
  }

  .hero > span {
    font-size: 150px;
    margin-top: 100px;
    transform: scale(1, 2.5);
  }

  .hero > div {
    font-size: 12px;
  }

  .hero > div button {
    padding: 10px 15px;
  }

  .hero > aside img {
    display: none;
  }

  .grid-container {
    width: 90%;
    grid-template-columns: repeat(2, 1fr);
  }

  .member-card img {
    width: 60%;
  }

  .member-card .text h2 {
    font-size: 16px;
  }

  .member-card .text p {
    font-size: 12px;
  }
}

@media (max-width: 992px) {
  .hero {
    font-size: 120px;
    padding: 10px 0 100px 10px;
  }

  .hero > span {
    font-size: 120px;
    margin-top: 80px;
    transform: scale(1, 2);
  }

  .hero > div {
    font-size: 11px;
    flex-wrap: wrap;
  }

  .hero > div button {
    width: 100%;
    padding: 10px;
    margin: 5px 0;
  }

  .hero > aside img {
    display: none;
  }
}

@media (max-width: 768px) {
  .hero {
    font-size: 90px;
    padding: 10px 0 80px 5px;
    flex-direction: column;
  }

  .hero > span {
    font-size: 90px;
    margin-top: 50px;
    transform: scale(1, 1.5);
  }

  .hero > aside {
    bottom: -30px;
  }

  .hero > div {
    flex-direction: column;
    text-align: center;
    font-size: 10px;
  }

  .hero > div button {
    width: 90%;
    margin: 10px auto;
  }

  .hero > aside img {
    display: none;
  }

  .footer-nav ul,
  .legal ul {
    flex-direction: column;
    gap: 10px;
  }

  .social-icons a {
    display: inline-block;
    margin: 5px;
  }

  .tagline h1 {
    font-size: 18px;
  }
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .branding {
    margin-bottom: 15px;
  }

  .social-icons {
    margin-top: 15px;
  }

  .footer-nav ul {
    flex-direction: row;
    gap: 10px;
  }

  .social-icons-about {
    gap: 10px;
  }

  .icon-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .icon-row a img {
    width: 35px;
    height: 35px;
  }

  .container {
    flex-direction: column;
    align-items: center;
  }

  .about-section,
  .find-us-section {
    width: 100%;
    max-width: 600px;
  }

  .find-us-section .social-icons-about {
    justify-content: center;
  }

  .grid-container {
    grid-template-columns: 1fr; /* Single column layout */
    width: 100%;
  }

  .member-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .member-card img {
    width: 70%;
  }

  .member-card .text {
    position: static;
    text-align: center;
  }

  .member-card .text h2 {
    font-size: 16px;
  }

  .member-card .text p {
    font-size: 12px;
  }

  .heading-read-more {
    font-size: 3em;
  }

  .heading2-read-more {
    font-size: 18px;
  }

  .container-read-more {
    padding: 15px;
    max-width: 90vw;
  }

  .text-readmore {
    font-size: 14px;
  }

  .back-to-home {
    font-size: 18px;
  }

  .linking-nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 80px;
    right: 50px;
    background-color: #690100;
    padding: 10px 20px;
    width: 200px;
  }

  .linking-nav.active {
    display: contents;
  }

  .burger-menu {
    display: flex;
  }

  .nav-container {
    justify-content: space-between;
  }

  #albums {
    max-width: 100%;
    padding: 1rem;
  }

  #albums .boxes {
    flex-direction: column;
    gap: 1.5rem;
  }

  #albums .box-left,
  #albums .box-right {
    flex: 1;
  }

  #albums .big-box:hover {
    transform: scale(1.02);
  }

  #albums .button-column {
    flex-direction: column;
    gap: 0.8rem;
  }
}

@media (max-width: 480px) {
  .hero {
    font-size: 60px;
    padding: 5px 0 50px 5px;
  }

  .hero > span {
    font-size: 60px;
    margin-top: 30px;
    transform: scale(1, 1.2);
  }

  .hero > div {
    font-size: 8px;
  }

  .hero > div button {
    font-size: 12px;
    padding: 8px 10px;
  }

  .hero > aside img {
    display: none;
  }

  .social-icons img {
    width: 20px;
    height: 20px;
  }

  .footer-nav ul {
    flex-direction: column;
  }

  .social-icons-about {
    flex-direction: column;
    align-items: center;
  }

  .icon-row {
    flex-direction: column;
    gap: 15px;
  }

  .icon-row a img {
    width: 30px;
    height: 30px;
  }

  .about-content p {
    font-size: 14px;
  }

  .read-more {
    font-size: 14px;
  }

  .find-us-section .social-icons-about a img {
    width: 30px;
    height: 30px;
  }

  .grid-container {
    gap: 10px;
  }

  .member-card img {
    width: 100%; /* Full width for smaller screens */
    border-radius: 4px;
  }

  .member-card .text h2 {
    font-size: 14px;
  }

  .member-card .text p {
    font-size: 10px;
  }

  .heading-read-more {
    font-size: 2em;
  }

  .container-read-more {
    padding: 10px;
    margin: 0 auto;
  }

  .text-readmore {
    font-size: 12px;
  }

  .back-to-home {
    font-size: 16px;
  }

  #albums .section-title {
    font-size: 1rem;
  }

  #albums .boxes {
    gap: 1rem;
  }

  #albums .big-box img {
    object-fit: contain;
  }

  #albums .overlay h3 {
    font-size: 1.2rem;
  }

  #albums .overlay .coming-soon-text {
    font-size: 1rem;
  }

  #albums .youtube-btn {
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
  }

  #albums .button-12-title {
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
  }

  #albums .button-12 {
    font-size: 1.2rem;
    padding: 0.5rem 0.8rem;
  }

  #albums .button-12:hover {
    filter: none;
    transform: scale(1.03);
  }
}
