/*   ODIUM ARTIST WEBSITE - Cascading Style Sheet (EPK)   */

/*   2025 MASE - Connecting Artists With Fans - https://mase.agency */

/*   Online since 22-10-2025 - https://wwww.odiumhardcore.com   */

/*   MASE Website ID: MASE-018 */



/* Load Oswald Font */
@font-face {
  font-family: 'Oswald';
  src: url('Oswald-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
  src: url('Oswald-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Oswald';
  src: url('Oswald-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

html {
scroll-behavior: smooth;
max-width: 100%;
overflow-x: hidden;
font-family: 'Oswald', sans-serif;
color: #FFFFFF;
}

* {
  padding:0;
  margin:0;
}

body { /* - - - - F O N T - - - - */
font-family: "Oswald", sans-serif;
background-color:#000000;
}

h2 { /* - - - - H E A D I N G S - - - - */
  font-size:32px;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 3vh;
  padding-bottom: 8vh;
}

/* Custom Scrollbar*/
/* width of entire scrollbar */
::-webkit-scrollbar {
width: 8px;
}
/* The Scrollbar Track */
::-webkit-scrollbar-track {
background: none;
border:1px solid #171717;
}

/* The Scrollbar Handle */
::-webkit-scrollbar-thumb {
background-image: linear-gradient(180deg,#C3C3D0 0%,#C3C3D0 100%)!important; 
/* don't want a gradient? just remove the above line and keep the line below */
background: #C3C3D0;
border-radius: 0px;
}
/* The Scrollbar Handle on hover */
-webkit-scrollbar-thumb:hover {
}





/* - - - - H E A D E R  /  M E N U B A R - - - - */
/* General header styling */
#header {
position: fixed;
top: 0;
left: 0;
width: 100%;
max-width: 100%;
min-height: 80px;
background-color: rgba(255, 255, 255, 0);
display: flex;
align-items: center;
justify-content: space-between;
transition: background-color 0.3s ease;
z-index: 1000;
padding-left:15px;
padding-right:15px;
}

/* Logo styling */
#logo {
max-height: 40px;
transition: filter 300ms ease;
cursor: pointer;
}

#logo:hover {
filter: brightness(75%);
}

/* Navigation styling */
.header-nav {
display: flex;
justify-content: center;
align-items: center;
gap: 22px;
}

nav {
display: flex;
gap: 22px;
}

nav a {
text-decoration: none;
color: #FFFFFF;
font-size: 18px;
text-transform: uppercase;
font-weight: 300;
transition: filter 0.3s ease;
}

nav a:hover {
filter: brightness(75%);
}

/* Button on the right */
.header-button {
display: flex;
justify-content: flex-end;
align-items: center;
}

.button {
color: #000000;
background-color: #FFFFFF;
border: none;
font-size: 18px;
font-weight: 500;
text-transform: uppercase;
text-decoration: none;
text-align: center;
padding: 10px 25px;
box-shadow: 0px 2px 18px 5px rgba(0, 0, 0, 0.3);
transition: filter 0.3s ease;
cursor: pointer;
margin-right: 33px;
}

.button:hover {
filter: brightness(75%);
}

/* Hamburger menu styling */
.hamburger-menu {
display: none;
position: relative;
width: 30px;
height: 10px;
margin-right: 20px;
cursor: pointer;
}

.hamburger-menu span {
position: absolute;
width: 100%;
height: 2.5px;
background-color: #FFFFFF;
border-radius: 0px;
transition: all 0.2s ease;
}

/* Position the two lines */
.hamburger-menu span:first-child {
top: 0;
}

.hamburger-menu span:last-child {
bottom: 0;
}

/* Animate into a cross when active */
.hamburger-menu.active span:first-child {
transform: rotate(45deg);
top: 8px;
}

.hamburger-menu.active span:last-child {
transform: rotate(-45deg);
bottom: 8px;
}

/* Responsive styles for mobile/tablet */
@media (max-width: 768px) {
/* Initial hidden state for the mobile menu */
.header-nav {
    position: absolute;
    top: 80px;
    right: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    overflow: hidden;
    max-height: 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    transition: max-height 0.5s ease;
    z-index: 999;
}

/* Show menu when active */
.header-nav.active {
    max-height: 300px;
    padding: 20px 0;
}

/* Mobile menu links */
nav a {
    text-align: center;
    padding: 10px 0;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Hamburger menu icon */
.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    margin-right: 20px;
    cursor: pointer;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    background-color: #FFFFFF;
    margin: 3px 0;
    border-radius: 2px;
    transition: 0.3s ease;
}

/* Cross animation for hamburger menu */
.hamburger-menu.active span:first-child {
    transform: rotate(45deg);
    top: 4px;
    position: relative;
}

.hamburger-menu.active span:last-child {
    transform: rotate(-45deg);
    bottom: 7px;
    position: relative;
}

/* HIDE contact button on mobile */
.button {
    display: none;
}
}





/* - - - - S E C T I O N  -  H E R O - - - - */
#home {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background-color: #000;
}

/* Fullscreen Background Video */
#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
  transform: scale(1.13);
}

/* Dark overlay (25% black) */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.25);
  z-index: 1;
}

/* Scroll-down arrow */
.scroll-down {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2000ms ease-out infinite;
  cursor: pointer;
  z-index: 2;
}

.scroll-down img {
  width: 45px;
  opacity: 1;
  transition: opacity 300ms ease;
}

@media (max-width: 768px) {
  .scroll-down img {
    width: 30px;
  }
}

.scroll-down:hover img {
  opacity: 0.8;
}

/* Bounce animation */
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-20%);
  }
  60% {
    transform: translateX(-50%) translateY(-10%);
  }
}





/* - - - - S E C T I O N     M U S I C - - - - */
.music {
  text-align: center;
  padding: 50px 20px;
  background-color: #FFFFFF;
}

.music h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  margin-bottom: 30px;
}

/* Spotify Player Wrapper */
.spotify-player {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 12px;
  overflow: hidden;
}





/* - - - - S E C T I O N    T O U R   D A T E S - - - - */
#tour-dates {
  position: relative;
  padding: 60px 20px;
  color: #FFFFFF;
  max-width: 100vw;
  text-align: center;
}

/* Background Image with Darker Overlay */
#tour-dates::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.65;
  z-index: -1;
}

/* Tour Dates Container - Keep Centered & Sized */
.tourdates-container {
  background: rgba(0, 0, 0, 0.5);
  flex-direction: column;
  align-items: center;
  gap: 0px;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 0px;
  border-radius: 0px;
}

/* Tour Date, Location, Event, and Button */
.tour-date, 
.tour-location, 
.tour-event, 
.tour-button {
  flex: 1;
  font-size: 18px;
  font-weight: bold;
  white-space: nowrap;
}

/* Button Styling */
.tour-button a {
  display: inline-block;
  background: rgba(221, 0, 0, 1);
  color: #FFFFFF;
  padding: 10px 15px;
  border-radius: 0px!important;
  text-decoration: none;
  font-weight: bold;
  text-transform: uppercase;
}

/* BandsInTown Widget Styling */
/* Date Styling */
.bit-date {
  color: #FFFFFF;
  font-weight: bold;
  font-size: 18px;
}

a.bit-event {
  padding-left: 0px;
  padding-right: 0px;
}

/* Venue Name */
.bit-widget.bit-layout-desktop .bit-titleWrapper .bit-venue {
  color: #DD0000;
  font-weight: bold;
}

/* Location Styling */
.bit-widget.bit-layout-desktop .bit-location {
  color: #FFFFFF;
  font-size: 16px;
  opacity: 0.9;
}

.bit-location-under-tablet {
  color: #FFFFFF!important;
  display: block;
  text-align: left;
  text-transform: none!important;
}

/*MOBILE STYLING*/
.bit-widget .bit-event .bit-details a, .bit-widget .bit-event .bit-offers-menu a {
  color: #FFFFFF;
}

.bit-location-under-mobile {
  color: #FFFFFF;
}

.bit-widget .bit-titleWrapper .bit-venue {
  color: #DD0000;
}

.bit-widget a {
  color: #FFFFFF!important;
}

.bit-widget .bit-offers {
  border-radius: 0px!important;
}





/* - - - - S E C T I O N    A B O U T - - - - */
#about {
  text-align: center;
  padding: 50px 20px;
  background-color: #FFFFFF;
}

#about h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 32px;
  font-weight: bold;
  text-transform: uppercase;
  color: #000000;
  background-color: #FFFFFF;
}

.artist-bio {
  font-size: 24px;
  font-weight: 300;
  color: #000000;
  padding-top: 5vh;
  padding-bottom: 5vh;
}

/* Container and layout */
.about-container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 20px;
  width: 75%;
  max-width: 75%;
  background-color: #FFFFFF;
}

.about-photo {
  width: 31.3333%;
  text-align: center;
  margin-right: 3%;
}

.about-image {
  width: 100%;
  object-fit: cover;
}

.about-content {
  width: 68.6667%;
  color: #fff;
}

/* SOCIAL ICONS */
.about-socials {
  margin-top: 20px;
}

.about-socials a {
  margin: 0 3px;
  color: #000000;
  font-size: 24px;
  text-decoration: none;
}

.about-socials a:hover {
  color: #f39c12;
}

.about-socials .social-icon {
  width: 18px;
  height: 18px;
  margin: 5px;
  transition: transform 0.3s ease;
}

.about-socials .social-icon:hover {
  transform: scale(1.2);
}

/* Button About */
.button-about {
  font-family: 'Oswald';
  color: #FFFFFF;
  background-color: #000000;
  border-radius: 0px;
  border-width: 0px;
  font-size: 18px;
  font-weight: 300;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 200ms ease 0ms;
  padding-top: 10px !important;
  padding-right: 25px !important;
  padding-bottom: 10px !important;
  padding-left: 25px !important;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin: 20px auto 0 auto;
}

.button-about:hover {
  background-color: #272727;
}

/* ABOUT MODAL */
.modal {
  display: none;
  position: fixed;
  z-index: 99999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow-y: auto;
  transition: opacity 0.1s ease;
}

.modal-content {
  font-weight: 400;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  padding: 20px;
  border-radius: 0px;
  width: 500px;
  max-width: 500px;
  position: absolute;
  top: 5vh;
  bottom: 5vh;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  margin: auto;
  max-height: calc(100vh - 10vh);
  overflow-y: auto;
  border: solid #222222;
}

.close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 15px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #333333;
  background-color: rgba(255, 255, 255, 0.75);
  border-radius: 0px;
  font-size: 30px;
  font-weight: 300;
  cursor: pointer;
  transition: all 200ms ease 0ms;
}

.close:hover {
  color: #000000;
  background-color: #FFFFFF;
}

.text-inner {
  text-align: center;
  margin: auto;
  display: inline-block;
  font-size: 24px;
  color: #FFFFFF;
  font-weight: 400;
}

.modal-content h2 {
  padding-top: 53px;
  padding-bottom: 25px;
  color: #FFFFFF;
  font-size: 32px;
  text-align: center;
}

.modal-content p {
  font-size: 23px;
  font-weight: 300;
  line-height: 1.5;
  color: #b9bfc4 !important;
  word-wrap: break-word;
  max-width: 75%;
  margin: 0 auto;
}

.artist-signature {
  text-align: center;
  padding-bottom: 53px;
}

.signature-container {
  margin-top: 10vh;
  max-height: 90px;
  text-align: center;
}

/* - - - - - - MOBILE RESPONSIVE ADJUSTMENTS - - - - - - */
@media screen and (max-width: 768px) {
  .about-container {
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 20px 10px;
  }

  .about-photo {
    width: 100% !important;
    text-align: center;
    margin-bottom: 20px;
  }

  .about-image {
    width: 75% !important;
    height: auto;
    margin: 0 auto;
    display: block;
  }

  .about-socials {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
  }

  .about-content {
    width: 100% !important;
    text-align: center;
  }

  .artist-bio {
    font-size: 20px;
    padding: 20px 10px;
  }

  .button-about {
    display: block;
    margin: 20px auto 0 auto;
  }
}





/* - - - - - C O N T A C T - - - - */

/* General Styling for the Section */
#contact {
background-color: #FFFFFF;
color: #000000;
padding: 50px 20px;
text-align: center;
padding-top: 50px;
padding-bottom: 4.5vh;
padding-left: 20px;
padding-right: 20px;
}

#contact h2 {
font-size: 32px;
text-transform: uppercase;
text-align: center;
margin-bottom: 30px;
padding-top: 3vh;
padding-bottom: 8vh;
}

/* Row Container */
.contact-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 70%;
  margin: 0 auto;
}

/* Individual Column Styling */
.column-contact {
  flex: 1;
  max-width: 45%;
  text-align: center;
}

.column-contact img {
  width:auto;
  max-height:60px;
  border-radius: 0;
  margin-bottom: 0;
}

.contact-country {
border-top: solid 3px #000000;
color:#000000;
font-size:24px;
font-weight:300;
text-align: left;
text-transform: uppercase;
margin-top:2vh;
padding-left:20px;
padding-top:20px;
padding-bottom:20px;
background-color:#EEEEEE;
}

.column-agencyname {
font-size:24px;
font-weight:500;
text-align: left;
text-transform: uppercase;
margin-top:1.5vh;
padding-left:20px;
padding-top:20px;
padding-bottom:20px;
background-color:#EEEEEE;
}

.column-contactinfo {
font-size:24px;
font-weight:500;
text-align: left;
text-transform: uppercase;
margin-top:1.5vh;
padding-left:20px;
padding-top:20px;
padding-bottom:20px;
background-color:#EEEEEE;
display: flex;
flex-direction: column;
gap: 15px;
align-items: flex-start;
}

.contact-link {
display: flex;
align-items: center;
gap: 15px;
text-decoration: none;
color: #000;
font-size: 16px;
transition: color 0.3s ease;
}

.contact-link:hover {
color: #0078d7;
}

.small-icon {
max-width: 20px;
max-height: 20px;
}

.email-text {
font-weight: 300;
font-size:13px;
text-decoration: none;
color:#000000;
}

.website-text {
font-weight: 300;
font-size:13px;
text-decoration: none;
color:#000000;
}

/* Responsive Design for Smaller Screens */
@media (max-width: 768px) {
.row-contact {
    flex-direction: column;
    align-items: center;
}

.column-contact {
    max-width: 100%;
}
}










/* - - - - - P R E S S K I T     D O W N L O A D - - - - - */
/* Presskit Section Styling */
.presskit-section {
  margin-top: 0;
  padding: 0;
background-color:#FFFFFF;
}

.presskit-download {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 0px;
}

.presskit-button {
  display: flex;
  align-items: center;
  background-color: #EEEEEE;
  padding: 0px;
  border: 0px solid #ddd;
  border-radius: 5px;
padding-right:25px;
padding-left:25px;
padding-top:10px;
padding-bottom:10px;
  text-decoration: none;
  transition: brightness 0.3s ease;
  width: fit-content;
}

.presskit-button:hover {
  filter: brightness(75%);
}

.download-icon {
  height: 40px;
  margin-right: 15px;
}

.presskit-info {
  text-align: left;
}

.presskit-title {
  font-size: 18px;
  font-weight: bold;
  color: #000000;
}

.presskit-size {
  font-size: 14px;
  color: #555555;
}





/* - - - - -   F O O T E R   - - - - - */
#footer {
  background-color: #000000;
  height: 75px;
  max-height: 75px;
  width: 100vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-column {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

.website-copyright {
  font-size: 18px;
  font-weight: 300;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-left: 0;
}