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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background-color: #000;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
    font-family: 'FjallaOne';
    font-weight: 400;
    src: url('fonts/Fjalla_One/FjallaOne-Regular.ttf') format('truetype');
}
a {
	color: #ffffff;
    text-decoration: none;
}
a:hover {
	color: #ef4444;
}
h3 {
	/* font-size: 16px !important; */
}
.starry-background {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
                    radial-gradient(2px 2px at 60% 70%, white, transparent),
                    radial-gradient(1px 1px at 50% 50%, white, transparent),
                    radial-gradient(1px 1px at 80% 10%, white, transparent),
                    radial-gradient(2px 2px at 90% 60%, white, transparent),
                    radial-gradient(1px 1px at 33% 80%, white, transparent),
                    radial-gradient(2px 2px at 60% 20%, white, transparent),
                    radial-gradient(1px 1px at 50% 70%, white, transparent),
                    radial-gradient(1px 1px at 80% 90%, white, transparent),
                    radial-gradient(2px 2px at 90% 30%, white, transparent),
                    radial-gradient(1px 1px at 33% 40%, white, transparent),
                    radial-gradient(1px 1px at 15% 10%, white, transparent);
  background-size: 100% 100%;
  background-position: 0% 0%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(239, 68, 68, 0.2);
  height: 130px;
}

.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.logo-location {
  font-size: 0.75rem;
/* 
  color: #ef4444;
 */
  color: #fff;
  margin-top: 0rem;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.main-navigation {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
}

.main-navigation ul,
.nav-menu {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

/* 
.social-icons a {
  color: #ffffff;
  background: #ef4444;
}
 */

.main-navigation ul a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: color 0.3s;
}

.main-navigation ul a:hover,
.main-navigation ul a.active {
  color: #ef4444;
}

.social-icons {
  display: flex;
  gap: 1rem;
  width: 150px;
  margin-left: auto;
  margin-right: auto;
/* 
  margin-left: 1rem;
  padding-left: 1rem;
 */
  border-left: 0px solid rgba(239, 68, 68, 0.3);
}

.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
  color: #ef4444;
}

.social-icon:hover {
  /* background-color: #dc2626; */
  transform: scale(1.1);
}

.social-icon svg {
  width: 1.50rem;
  height: 1.50rem;
  color: #ffffff;
  fill: #ef4444;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

.hero-section {
  position: relative;
  z-index: 10;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
  background-image: url('images/discoball.jpg');
/* 
  background-repeat: no-repeat;
  background-size: 100%;
 */
  background-size: cover;
  background-position: center;
}

.hero-content {
  text-align: center;
}

.hero-title {
  font-size: 9.5rem;
  font-weight: 900;
  margin-top: 1.2rem;
  letter-spacing: -0.025em;
  animation: pulse-slow 3s ease-in-out infinite;
  color: #ffffff;
  text-shadow:
   	3px 3px 0 #000000,
	-3px -3px 0 #000000,  
  	3px -3px 0 #000000,
  	-3px 3px 0 #000000;

  /* -webkit-text-fill-color: #ffffff; */
  /* -webkit-text-stroke: 3px #000000; */
  /* text-stroke: 3px #000000; */
  /* -webkit-text-stroke: 3px #ef4444; */
  /* font-style: italic; */
}

@keyframes pulse-slow {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ef4444;
  letter-spacing: 0.1em;
  font-weight: 800;
  -webkit-text-stroke: 0.025em #000000;
  font-style: italic;
}

.section-anchor {
  position: absolute;
  top: 120px;
  left: 0;
  width: 100%;
  /* height: 120px; */
}

.content-section {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.content-section.visible {
  opacity: 1;
  transform: translateY(0);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
  width: 100%;
}

.section-title {
  font-size: 4rem;
  font-weight: 900;
  margin-bottom: 1rem;
  color: #ef4444;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
  align-items: start;
}

.band-content p {
  font-size: 1rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.band-content .highlight {
  color: #ef4444;
  font-weight: 600;
}

.members-box {
  background-color: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  margin-top: 2rem;
}

.members-box h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.members-box ul {
  list-style: none;
  padding: 0;
}

.members-box li {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

.members-box .member-name {
  color: #ef4444;
  font-weight: 600;
}

.band-image {
  aspect-ratio: 1;
  background-color: rgba(239, 68, 68, 0.1);
  border: 2px solid #ef4444;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.band-image img {
  width: 90%;
  height: 90%;
  object-fit: cover;
}
.subscribe {
	padding: 15px;
	margin-bottom: 15px;
  	border: 1px solid #ef4444;
	font-size: 15px;
}
.subscribe a {
	font-size: 12px;
}
.shows-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.show-item {
  border: 2px solid rgba(239, 68, 68, 0.3);
  padding: 1.5rem;
  backdrop-filter: blur(12px);
  transition: all 0.3s;
}

.show-item:hover {
  border-color: #ef4444;
  background-color: rgba(239, 68, 68, 0.05);
}

.show-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.show-info {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.show-date {
	font-size: 1.5rem;
	font-weight: 900;
	color: #ef4444;
	min-width: 6rem;
}

.show-venue {
	font-size: 1.25rem;
	font-weight: 700;
}

.show-city {
	color: #9ca3af;
}

.show-button {
	padding: 0.5rem 1.5rem;
	background-color: #ef4444;
	color: #fff;
	border: none;
	font-weight: 700;
	letter-spacing: 0.05em;
	/* cursor: pointer; */
	transition: background-color 0.3s;
}
.show-button:hover {
	background-color: #dc2626;
}
.media-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 2rem;
}
.media-item {
	aspect-ratio: 16/9;
	background-color: rgba(239, 68, 68, 0.1);
	border: 2px solid #ef4444;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s;
}
.media-item:hover {
	background-color: rgba(239, 68, 68, 0.2);
}
.media-content {
	text-align: center;
}
.media-content img {
	display: flex;
	aspect-ratio: 16/9;
	max-width: 100%;
}
.play-button {
	width: 4rem;
	height: 4rem;
	border: 4px solid #fff;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto 1rem;
	transition: border-color 0.3s;
}
.media-item:hover .play-button {
	border-color: #ef4444;
}
.play-icon {
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-left: 12px solid #fff;
	border-bottom: 8px solid transparent;
	margin-left: 4px;
}
.media-item:hover .play-icon {
	border-left-color: #ef4444;
}
.media-title {
	font-size: 14px;
	font-weight: 700;
	margin-bottom: 0.5rem;
}
.media-type {
	font-size: 0.875rem;
	color: #ef4444;
}
.mailing-list-container {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
}
.mailing-list-container a {
	color: #ef4444;
	text-decoration: none;
	font-weight: 600;
}
.mailing-list-description {
	font-size: 1.125rem;
	line-height: 1.75;
	margin-bottom: 2rem;
	color: #d1d5db;
}
.mailing-form {
	border: 2px solid rgba(239, 68, 68, 0.3);
	padding: 2rem;
	backdrop-filter: blur(12px);
	margin-bottom: 2rem;
}
.form-group {
	margin-bottom: 1.5rem;
}
.form-group label {
	display: block;
	font-size: 0.875rem;
	font-weight: 600;
	color: #ef4444;
	margin-bottom: 0.5rem;
	letter-spacing: 0.05em;
}
.form-group input {
	width: 100%;
	background-color: #000;
	border: 2px solid rgba(255, 255, 255, 0.2);
	padding: 0.75rem 1rem;
	color: #fff;
	font-family: inherit;
	transition: border-color 0.3s;
}
.form-group input::placeholder {
	color: #6b7280;
}
.form-group input:focus {
	outline: none;
	border-color: #ef4444;
}
.submit-button {
	width: 100%;
	background-color: #ef4444;
	color: #fff;
	font-weight: 700;
	padding: 1rem;
	border: none;
	cursor: pointer;
	letter-spacing: 0.05em;
	transition: background-color 0.3s;
	font-size: 1rem;
}
.submit-button:hover {
	background-color: #dc2626;
}
.contact-footer {
	font-size: 0.95rem;
	color: #9ca3af;
}
.email-link {
	color: #ef4444;
	font-weight: 600;
}
.site-footer {
	position: relative;
	z-index: 10;
	border-top: 1px solid rgba(239, 68, 68, 0.2);
	padding: 2rem 0;
}
.footer-content {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 1.5rem;
	text-align: center;
	color: #9ca3af;
}
.copyright {
	position: relative;
	top: 20px;
	font-size: 12px;
}
.back-to-top {
	position: fixed;
	bottom: 2rem;
	right: 2rem;
	z-index: 999;
	width: 3.5rem;
	height: 3.5rem;
	background-color: #ef4444;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	transition: all 0.3s;
	opacity: 0;
	transform: translateY(4rem);
	pointer-events: none;
	border: none;
}
.back-to-top.visible {
	opacity: 1;
	transform: translateY(0);
	pointer-events: auto;
}
.back-to-top:hover {
	background-color: #dc2626;
}
.back-to-top svg {
	width: 1.5rem;
	height: 1.5rem;
	stroke: #fff;
	fill: none;
	stroke-width: 2;
}

@media screen and (max-width: 1112px) {
	iframe {
		width: 500px !important; height: 285px !important;
	}
	.media-content img {
		max-height: 300px;
		width: 100%;
	}
}

@media screen and (max-width: 1024px) {
	.hero-title {
	  font-size: 9.5rem;
	  font-weight: 900;
	  margin-top: 0.2rem;
	}
	iframe {
		width: 450px !important; height: 260px !important;
	}
	.media-content img {
		max-height: 270px;
		width: 100%;
	}
}
@media screen and (max-width: 800px) {
	iframe {
		width: 350px !important; height: 200px !important;
	}
	.media-content img {
		max-height: 220px;
		width: 100%;
	}
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
	iframe {
		width: 100% !important; height: auto !important;
	}
	.site-header {
		height: 100px;
	}
	.header-container {
		padding: 0.6rem;
	}
	.logo-section img {
		width: 100px !important;
		height: 100px !important;
		margin: -20px 0px !important;
	}
	.logo-location {
 		margin-top: 0rem;
		font-size: 0.65rem;
	}
	.hamburger {
		display: flex;
	}
	.main-navigation {
		gap: 0;
	}
	.nav-menu {
		position: fixed;
		right: -100%;
		top: 0;
		flex-direction: column;
		background: rgba(0, 0, 0, 0.95);
		backdrop-filter: blur(12px);
		width: 280px;
		height: 100vh;
		padding: 5rem 2rem 2rem;
		gap: 0;
		transition: right 0.3s ease;
		box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
		z-index: 999;
	}
	.nav-menu.active {
		right: 0;
		margin-top: 20px;
	}
	.nav-menu li {
		width: 100%; height: 20px;
		padding: 0.2rem 2rem;
		/* border-bottom: 2px solid rgba(239, 68, 68, 0.2); */
	}
	.nav-menu li a {
		display: block;
		width: 100%;
		padding: 1rem 0;
		font-size: 1rem;
	}
	.main-navigation .social-icons {
		position: fixed;
		right: -100%;
		bottom: 3rem;
		flex-direction: row;
		gap: 1.5rem;
		padding: 0 2rem;
		transition: right 0.3s ease;
		z-index: 1000;
		width: auto;
		border: none;
		margin: 0;
		top: 250px;
	}
	.main-navigation .social-icons.active {
		right: 0;
	}
	.mobile-menu-overlay {
		display: block;
	}
	.container {
		padding: 3rem 1rem;
	}
	.hero-section {
		margin-top: 80px;
		background-size: cover;
		background-position: center;
	}
	.hero-title {
		font-size: 8rem;
		text-shadow:
		   2px 2px 0 #000,
		  -2px -2px 0 #000,  
		  2px -2px 0 #000,
		  -2px 2px 0 #000;
		/* -webkit-text-stroke: 2px #000000; */
		/* -webkit-text-stroke: 2px #ef4444; */
 		margin-top: -2rem;
	}
	.hero-subtitle {
		font-size: 1rem;
	}
	.section-title {
		font-size: 2.5rem;
	}
	.band-grid,
	.media-grid {
		grid-template-columns: 1fr;
	}
	.mailing-form {
		padding: 1.5rem;
	}
	.section-anchor {
		top: 0px;
	}
}
@media screen and (max-width: 600px) {
	iframe {
		width: 550px !important; height: 300px !important;
	}
	.media-content img {
		max-height: 340px;
		width: 100%;
	}
}

@media screen and (max-width: 480px) {
	iframe {
		width: 370px !important; height: 260px !important;
	}
	.nav-menu {
		width: 250px;
	}
	.hero-title {
		font-size: 7rem;
	}
	.hero-subtitle {
		font-size: 0.9rem;
	}
	.section-title {
		font-size: 2rem;
	}
	.media-content img {
		max-height: 220px;
		width: 100%;
	}
}
@media screen and (max-width: 375px) {
	iframe {
		width: 340px !important; height: auto !important;
	}
	.hero-title {
		font-size: 6rem;
	}
	.media-content img {
		max-height: 200px;
		width: 100%;
	}
}
@media screen and (max-width: 350px) {
	iframe {
		width: 285px !important; height: auto !important;
	}
	.hero-title {
		font-size: 6rem;
	}
	.media-content img {
		max-height: 170px;
		width: 100%;
	}
}