body, html {
  margin: 0;
  padding: 0;
  font-family: "Urbanist", sans-serif;
  background-color: #0D0D0D;
  color: #FFFFFF;
  overflow-x: hidden;
  scroll-behavior: smooth;
}
/* the logo on landing  */
#logo-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #111;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.8s ease;
  opacity: 1;
}
#logo-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.logo-overlay-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo-overlay-content h1 {
  color: #fff;
  margin-bottom: 1.5rem;
  font-size: 8.5rem;
  letter-spacing: 2px;
}
.logo-overlay-content img {
  max-width: 60vw;
  max-height: 60vh;
  cursor: pointer;
}


h1, h2, h3, h6 {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: inherit;
}

a:hover {
  color: #FF6600;
}

/* Nav */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 5%;
  background-color: #0D0D0D;
}

.logo img {
  max-width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #FFFFFF;
  text-decoration: none;
  font-size: 1.2em;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #FF6600;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background-color: #FFFFFF;
  transition: all 0.3s ease;
}

/* Hide the checkbox */
.menu-toggle {
  display: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    gap: 10px;
    position: absolute;
    top: 70px;
    right: 15%;
    background-color: #0D0D0D;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.5);
  }

  .menu-toggle:checked + .hamburger + .nav-links {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .menu-toggle:checked + .hamburger span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle:checked + .hamburger span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle:checked + .hamburger span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* hero */
.hero {
  height: 100vh;
  background: url('images/martin-hexeberg-jp0VExvkRzY-unsplash.jpg') center/cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
  text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.hero h1 {
  font-size: 8vh;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 10px;
}

.hero p {
  font-size: 1.5em;
  font-weight: 300;
  margin-top: 10px;
  opacity: 0.9;
}

.hero button {
  margin-top: 20px;
  padding: 12px 30px;
  font-size: 1em;
  font-weight: 600;
  color: #FFFFFF;
  background-color: #FF6600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.hero button:hover {
  background-color: #E55A00;
}

.spacer{
  background-color: black;
  height: 15vh;
}
/* music */
.music {
  text-align: center;
  padding: 100px 15%;
  background-image: url('images/pawel-czerwinski-eybM9n4yrpE-unsplash.jpg');
  background-size: contain;
  color: #0D0D0D;
}

.music h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.bento-box {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 50vh;
  margin: 0 auto;
}

.music-radio, .music-soundCloud {
  width: 70%;
  background: white;
  border: 2px solid #FF6600;
  border-radius: 15px;
  box-shadow: 8px 8px 30px 8px #FF6600;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 2vw;
}

.music-radio iframe, .music-soundCloud iframe {
  width: 80%;
  height: 70%;
  border: none;
}


.music-image {
  width: 50%;
  height: 100%;
}

.music-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*contact */
.contactSection {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  padding: 80px 15%;
  color: #FFFFFF;
  align-items: flex-start;
}

.contactFormContainer {
  flex: 1 1 45%;
  background-color: #0D0D0D;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.contactForm h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.contactForm input,
.contactForm textarea {
  width: 100%;
  margin-top: 10px;
  padding: 12px;
  border: 1px solid #333;
  border-radius: 5px;
  background-color: #1A1A1A;
  color: #FFFFFF;
  font-size: 1em;
}

.contactForm button {
  margin-top: 20px;
  padding: 12px 20px;
  background-color: #FF6600;
  border: none;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  color: #FFFFFF;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contactForm button:hover {
  background-color: #E55A00;
}

.ourContact {
  flex: 1 1 45%;
  text-align: center;
}

.ourContact h6 {
  font-size: 1.2em;
  margin-bottom: 10px;
  font-weight: 600;
}

.ourContact a {
  font-size: 1.1em;
  color: #FF6600;
}

.ourContact a:hover {
  text-decoration: underline;
}

#socials {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

#socials svg {
  width: 32px;
  height: 32px;
  color: #FF6600;
  transition: color 0.3s ease;
}

#socials svg:hover {
  color: #E55A00;
}

/* about */
.about {
  flex: 1 1 45%;
  background-color: #0D0D0D;
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
  text-align: center;
  color: #FFFFFF;
  margin-top: 40px;
  margin-bottom: 60px; 
}

.about h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  font-weight: 700;
}

.about p {
  font-size: 1.2em;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}


.about img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 3px solid #FF6600;
}

.about h2 {
  font-size: 1.8em;
  margin-bottom: 10px;
}

.about p {
  font-size: 1em;
  line-height: 1.6;
  opacity: 0.9;
}

/* reviews etc  */
.reviews-container {
  display: flex;
  justify-content: space-between;
  padding: 50px;
}

.customer-reviews {
  width: 40%;
  padding: 20px;
}

.product-slideshow {
  width: 45%;
  text-align: center;
}

.slideshow-container {
  position: relative;
  width: 80%;
  height: 400px;
  overflow: hidden;
  padding: 20px;
  border-radius: 10px;  
}

.slide {
  width: 100%;
  height: 100%;
  display: none;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide.active {
  display: block;
}

/* footer */
footer {
  background-color: #0D0D0D;
  color: #FFFFFF;
  text-align: center;
  padding: 20px;
  font-size: 0.9em;
  opacity: 0.8;
}

/* Keyframes */
@keyframes slideShow {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* mq's */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .about h2 {
    font-size: 28px;
  }

  .about p {
    font-size: 16px;
  }
  
  .product-slideshow{
    display: none;
  }
  .contactSection {
    flex-direction: column;
  }

  .contactFormContainer, .about {
    flex: 1 1 100%;
  }

  .contactSection {
    flex-direction: column;
    align-items: center; 
    padding: 40px 5%;   
  }

  .contactFormContainer, .about {
    flex: 1 1 100%;
    max-width: 500px;   
    margin: 0 auto; 
  }

  #socials {
    justify-items: center;
    align-self: center;
  }

  .reviews-container {
    flex-direction: column;
    align-items: center;
  }

  .customer-reviews,
  .product-slideshow {
    width: 80%;
    margin-bottom: 20px;
  }

  .bento-box {
    flex-direction: column;
    height: auto;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .music-radio, .music-soundCloud {
    width: 100%;
    max-width: 500px;
    margin: 0 auto 20px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
  }
}

