/* Main Stylesheet */
.bebas-neue-regular {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
}

.montserrat-regular {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.montserrat-bold {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

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

html {
  font-size: 16px;
  line-height: 1.5;
  color: #FFFFFF;
  background-color: #000000;
  scroll-behavior: smooth;
}

body {
  background: #000000;
  color: #FFFFFF;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: "Montserrat", serif;
  font-weight: 400;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Bebas Neue", sans-serif;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 0.5em;
}

p {
  margin-bottom: 1em;
}

a {
  color: #3FA34D;
  text-decoration: none;
  transition: color 0.3s;
}
a:hover, a:focus {
  color: #3FA34D;
}

input,
textarea,
select,
.form-control {
  color: #FFFFFF;
  background: transparent;
  font-family: inherit;
  font-size: 1rem;
  padding: 0.5em;
  border-width: 0 0 2px 0;
  border-bottom: solid #333333;
  border-radius: 0;
  transition: border-color 0.3s;
}
input:focus,
textarea:focus,
select:focus,
.form-control:focus {
  color: #FFFFFF;
  transition: border-color 0.3s;
  border-color: #3FA34D;
  background: transparent;
  outline: none;
  box-shadow: none;
}
input::placeholder,
textarea::placeholder,
select::placeholder,
.form-control::placeholder {
  color: #999999;
  font-family: "Bebas Neue", sans-serif;
}

.btn {
  border-radius: 0;
  letter-spacing: 2px;
}
.btn.btn-primary {
  color: #FFFFFF;
}
.btn.btn-primary:hover {
  background-color: #FFFFFF;
  color: #3FA34D;
}

html {
  scroll-behavior: smooth;
}

.construction-banner {
  background-color: white;
  color: #000;
  text-align: center;
  padding: 10px 0;
  font-weight: bold;
  position: fixed;
  width: 100%;
  z-index: 2000;
  top: 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.construction-banner i {
  color: #ff9800;
  margin: 0 8px;
  font-size: 1.2em;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
#header {
  top: 42px;
}

body {
  padding-top: 42px;
}

#header {
  transition: all 0.3s ease-in-out;
  background: transparent;
  padding: 1rem 0;
}
#header.scrolled {
  background: rgba(0, 0, 0, 0.95);
  padding: 0.5rem 0;
}
#header .navbar-brand {
  font-family: "Bebas Neue", serif;
}
#header .navbar-toggler {
  border: 0;
}
#header .nav-link {
  padding: 0.25rem 1rem;
  margin-right: 0.5rem;
  color: #FFFFFF;
}
#header .nav-link.active, #header .nav-link:hover {
  color: #3FA34D;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #header .header-socials {
    width: 100%;
    justify-content: space-around;
  }
}
#header .header-socials .nav-link {
  font-size: 1.2rem;
}

.hero {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url("../../public/assets/images/profile.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}
@media (min-width: 768px) {
  .hero {
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.75)), url("../../public/assets/images/profile-wide.jpg");
  }
}
.hero > .container > .row {
  height: 80vh;
}
.hero h1 {
  letter-spacing: 5px;
}

.recent-container {
  background: #333333;
}
.recent-album-cover {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.recent-album-songs li {
  margin-bottom: 0.5rem;
  padding-left: 0;
  padding-right: 0;
  font-size: 0.9rem;
  color: #FFFFFF;
  background: transparent;
  border-top: 0;
  border-right: 0;
  border-left: 0;
  transition: all 0.5s ease-in;
}
.recent-album-songs li:hover, .recent-album-songs li .active {
  font-weight: 600;
  color: #3FA34D;
  padding: 0.5rem;
  cursor: pointer;
  transition: all 0.5s ease-in;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 1rem;
}
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1;
  height: 100%;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}
.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: auto;
  height: 100%;
}

.events-timeline {
  position: relative;
}
.events-timeline::before {
  content: "";
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}
.events .event-item {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
}
.events .event-item .event-date {
  min-width: 80px;
  text-align: center;
  background: rgb(25.5, 25.5, 25.5);
  padding: 1rem;
  position: relative;
}
.events .event-item .event-date::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  border-left: 10px solid rgb(25.5, 25.5, 25.5);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.events .event-item .event-date .day {
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1;
}
.events .event-item .event-date .month {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
}
.events .event-item .event-content {
  flex: 1;
  background: rgb(12.75, 12.75, 12.75);
  padding: 1.5rem;
}
.events .event-item .event-content h4 {
  margin-bottom: 0.5rem;
}
.events .event-item .event-content small {
  color: #3FA34D;
}

.booking-callout {
  position: relative;
}
.booking-callout img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.booking-callout-float {
  background: #FFFFFF;
  position: absolute;
  width: 80%;
  bottom: 0;
  right: 0;
  color: #000000;
}
.booking-callout-float h4 {
  color: #000000;
}

.instagram-post {
  position: relative;
}
.instagram-post img {
  aspect-ratio: 1/1;
  object-fit: cover;
}
.instagram-post-float {
  color: #cccccc;
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 1.4rem;
}
.instagram-post-overlay {
  color: #FFFFFF;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0);
  opacity: 0;
  transform: all 0.5s ease-in-out;
}
.instagram-post-overlay i {
  font-size: 1.5rem;
}
.instagram-post-overlay:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.85);
  transform: all 0.5s ease-in-out;
}

/*# sourceMappingURL=style.css.map */
