body, h1, p {
  margin: 0;
  padding: 0;
}

body {
  background-color: #000; /* Black background */
  color: #fff; /* White text */
  font-family: Play, Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 100vh;
  padding: 16px;
  box-sizing: border-box;
}

.container {
	background-image: url("Psyanide-background.jpg");
  background-color: #0d0c0c; /* Dark grey background */
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 600px; /* Adjust max-width as needed */
  box-sizing: border-box;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .container {
    border-radius: 0;
    padding: 16px;
  }
}
a, a > * {
	color: #15a9bf;

}

a:hover, a > *:hover { color: #fff; 
text-decoration:none;}

.navbar-text i{
 color: white; 
text-decoration:none;
}


.fa-facebook:hover {
    color: #0078ff;
  }
.fa-twitter-square:hover {
    color: #00aced;
  }
.fa-google-plus-square:hover {
    color: #dd4b39;
  }
.fa-soundcloud:hover {
    color:#ff3a00;
  }
.fa-youtube:hover {
    color: #bb0000;
  }  
  
  .fa-instagram:hover {
    color: #bb0ccb;
  }      

h1{

  font-weight: lighter;
  font-size: 19px;
  text-align: center;
  text-align: justify;
  text-justify: inter-word;
}

h2{
  margin-left: 0;
  margin-right: 0;
  font-size: 25px;
}

h3{

  font-weight: lighter;
  font-size: 19px;
  text-align: center;
 
}

p{
  font-style: italic;
}


.gig-row {
  display: flex;
  align-items: center;
  background-color: #1c1c1c;
  margin-bottom: 10px;
  text-decoration: none;
  color: white;
  border-radius: 4px;
  overflow: hidden;
  transition: background 0.3s;
}

.gig-row:hover {
  background-color: #2a2a2a;
}

.gig-date {
  background-color: #0d5f67; /* Teal */
  padding: 12px 10px;
  text-align: center;
  min-width: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: bold;
}

.gig-date .month,
.gig-date .year {
  font-size: 0.8rem;
  line-height: 1.2;
    color: white;

}

.gig-date .day {
  font-size: 1.5rem;
  line-height: 1.2;
  color: white;
}

.gig-info {
  flex-grow: 1;
  padding: 12px 16px;
}

.gig-info .title {
  font-size: 1.1rem;
  font-weight: bold;
}

.gig-info .location {
  font-size: 0.9rem;
  color: #ccc;
}

.gig-link {
  padding: 12px 16px;
  background-color: #000000;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: background 0.2s;
  margin-right: 20px;
}

.gig-link:hover {
  background-color: #00bcd4;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .gig-date {
    min-width: 70px;
    font-size: 0.75rem;
  }

  .gig-info .title {
    font-size: 1rem;
  }

  .gig-link {
    font-size: 1rem;
    padding: 10px;
    margin-right: 15px;
  }
}

#thelogo{
margin-top: 5%;

}
/*
  Set the color of the icon
*/
svg path,
svg rect{
  fill: #FF6700;
}
.carousel-container {
  position: relative;
  max-width: 100%;
  overflow: hidden;
  padding: 20px;
}

.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
}

.carousel-track video {
  width: 300px;
  height: 533px; /* 1080x1920 ratio scaled */
  flex-shrink: 0;
  border-radius: 10px;
  object-fit: cover;
}

.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(0,0,0,0.6);
  color: white;
  font-size: 2rem;
  border: none;
  padding: 10px;
  cursor: pointer;
}

.arrow.left {
  left: 10px;
}

.arrow.right {
  right: 10px;
}

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

.slideshow-container {
  position: relative;
  max-width: 10%;
  height: 60vh;
  margin: auto;
  overflow: hidden;
}

.fade-slide {
  position: absolute;
  width: 10%;
  height: 10%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

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

.fade-slide.active {
  opacity: 1;
  z-index: 1;
}