:root {
  --bg-accent: #313131;
  --bg-primary: #f0f0f0;
  --bg-secondary: #ffffff;
  --text-primary: #1a1a1a;
  --text-secondary: #004d61;
  --accent-light: #82265933;
  --accent-primary: #822659;
  --accent-secondary: #3e5641;
  --shadow: rgba(0, 0, 0, 0.1);
  --transition: all 0.3s ease;
  --transform: scale(1.05);
}

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

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  transition: var(--transition);
}

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

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Page Header */
.page-header {
  padding: 80px 0 40px;
  text-align: center;
  background: linear-gradient(
    135deg,
    var(--accent-primary) 0%,
    var(--text-secondary) 50%,
    var(--accent-secondary) 100%
  );
}

.page-header h1 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
  margin-bottom: 20px;
}

.page-header p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--bg-primary);
  font-size: 1.2rem;
}

/* Header & Navbar - Starts Here */
header {
  background-color: var(--bg-secondary);
  box-shadow: 0 2px 10px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 1.8rem;
  color: var(--accent-primary);
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.logo span {
  color: var(--accent-secondary);
}

.logo:hover {
  transform: var(--transform);
}

.nav-menu {
  display: flex;
}

.nav-menu li {
  margin-left: 30px;
}

.nav-menu a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-primary);
  transition: var(--transition);
}

.nav-menu a:hover::after {
  width: 100%;
}

/* Hamburger Icon - Starts Here */
.menu-toggle {
  display: none;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 50px;
  height: 40px;
  cursor: pointer;
  z-index: 110;
}

.hamburger .ham-line {
  position: relative;
  height: 5px;
  width: 100%;
  background-color: var(--text-primary);
  border-radius: 10px;
  transition: var(--transition);
}

.hamburger .ham-line::before,
.hamburger .ham-line::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 5px;
  background-color: var(--text-primary);
  border-radius: 4px;
  transition: var(--transition);
}

.hamburger .ham-line::before {
  top: -12px;
}

.hamburger .ham-line::after {
  top: 12px;
}

/* X Icon */
.menu-toggle:checked + .hamburger .ham-line {
  background-color: transparent;
}

.menu-toggle:checked + .hamburger .ham-line::before {
  transform: rotate(45deg);
  top: 0;
}
.menu-toggle:checked + .hamburger .ham-line::after {
  transform: rotate(-45deg);
  top: 0;
}

/* Hero Section - Starts Here */
.hero {
  height: 95vh;
  display: flex;
  align-items: center;
  color: var(--bg-secondary);
  text-align: center;
  position: relative;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)),
    url("../images/hero-bg.jpg") center bottom / cover no-repeat;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  animation: fadeInUp 1s ease;
}

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 4.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--accent-primary);
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
  font-family: "Limelight", sans-serif;
  transition: var(--transition);
  letter-spacing: 1px;
}

.btn:hover {
  background-color: var(--accent-secondary);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px var(--shadow);
}

.about-hero-section {
  padding: 120px 0;
  background-color: var(--bg-secondary);
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
}

.section-title h2 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  color: var(--text-secondary);
  display: inline-block;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-primary);
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.03);
}

/* Members Section */
.band-members {
  padding: 80px 0;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.members-card {
  background-color: var(--bg-secondary);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.members-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px var(--shadow);
}

.members-image {
  height: 350px;
  overflow: hidden;
}

.members-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.members-card:hover .members-image img {
  transform: scale(1.1);
}

.members-info {
  display: flex;
  justify-content: start;
  align-items: center;
  padding: 20px 50px;
}

.members-info i {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: var(--bg-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
}

/* About Page - Starts Here */
.about-page,
.about-section {
  padding: 80px 0;
}

.about-content {
  display: flex;
  align-items: center;
  gap: 50px;
}

.about-text {
  flex: 1;
}

.about-text p {
  margin-bottom: 20px;
}

.about-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}

.about-image:hover {
  transform: scale(1.03);
}

/* Live Shows Styles */
.shows-container {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px;
}

.shows-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  min-width: 0;
}

.shows-column h3 {
  color: var(--text-secondary);
  margin-bottom: 25px;
  font-size: 1.5rem;
  border-bottom: 2px solid var(--accent-primary);
  padding-bottom: 10px;
  flex-shrink: 0;
}

.show-card {
  background: var(--bg-secondary);
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px var(--shadow);
  transition: var(--transition);
  border-left: 4px solid var(--accent-primary);
  display: block;
}

.show-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px var(--shadow);
}

.show-card.past-show {
  opacity: 0.6;
  border-left-color: var(--text-secondary);
}

.show-date {
  font-weight: 600;
  color: var(--accent-primary);
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.show-event {
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 5px;
  font-size: 1.2rem;
}

.show-location {
  color: var(--text-secondary);
  font-size: 0.95rem;
}

/* Artists Page - Starts Here */
.artists-page {
  padding: 80px 0 0 0;
}

.artist-detail {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 50px;
  margin-bottom: 80px;
}

.artist-detail:nth-child(even) {
  flex-direction: row-reverse;
}

.artist-image {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  object-fit: cover;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}

.artist-image:hover {
  transform: scale(1.03);
}

.artist-image img {
  width: 100%;
  height: auto;
  display: block;
}

.artist-info {
  flex: 1;
}

.artist-info h2 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5rem;
  color: var(--text-secondary);
}

.artist-role {
  display: block;
  font-size: 1.2rem;
  color: var(--accent-primary);
  font-weight: 600;
  margin-bottom: 20px;
}

.artist-bio {
  margin-bottom: 25px;
}

.artist-bio p {
  margin-bottom: 15px;
}

.artist-influences {
  margin-top: 25px;
}

.influence-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
}

.influence-title h3 {
  color: var(--text-secondary);
  font-size: 1.3rem;
}

.influence-title i {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: white;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}

.influence-title i:hover {
  transform: scale(1.2) rotate(45deg);
}

.influence-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.influence-tag {
  background-color: var(--accent-secondary);
  color: var(--bg-primary);
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}

.influence-tag:hover {
  background-color: var(--accent-primary);
  transform: translateY(-2px);
  border-radius: 0 25px 0 25px;
  box-shadow: -5px 5px 0.5px var(--shadow);
}

/* Contact Page - Starts Here */
.contact-page {
  padding: 80px 0;
}

.contact-container {
  display: flex;
  gap: 50px;
}

.contact-info {
  flex: 1;
  gap: 40px;
}

.contact-image img {
  border-radius: 10px;
  margin-bottom: 35px;
  box-shadow: 0 10px 30px var(--shadow);
  transition: var(--transition);
}

.contact-image img:hover {
  transform: scale(1.05);
}

.contact-info h2 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.contact-details {
  margin-bottom: 40px;
}

.contact-item {
  display: flex;
  align-items: start;
  justify-content: start;
  margin-bottom: 25px;
}

.contact-item i {
  background: linear-gradient(
    135deg,
    var(--accent-primary),
    var(--accent-secondary)
  );
  color: var(--bg-secondary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-item i:hover {
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 8px 5px var(--shadow);
}

.contact-text h3 {
  margin-bottom: 5px;
  color: var(--text-secondary);
}

/* .social-links-contact {
  display: flex;
  gap: 20px;
}

.social-links-contact a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: var(--bg-accent);
  color: var(--bg-secondary);
  font-size: 3rem;
  transition: var(--transition);
}

.social-links-contact a:hover {
  background-color: var(--text-secondary);
  transform: scale(1.2) translateY(-5px);
  box-shadow: 0 0 10px var(--text-secondary);
} */

/* Contact Form */
.contact-form {
  flex: 1;
  background-color: var(--bg-secondary);
  padding: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 30px var(--shadow);
}

.contact-form h2 {
  font-family: "Limelight", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2rem;
  color: var(--text-secondary);
  margin-bottom: 30px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-primary);
  box-shadow: 0 0 0 2px rgba(130, 38, 89, 0.2);
}

textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

/* Footer Section - Starts Here */
footer {
  background-color: var(--text-primary);
  color: var(--bg-primary);
  padding: 40px 0 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.social-links {
  display: flex;
  margin: 20px 0;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.1);
  margin: 0 10px;
  transition: var(--transition);
}

.social-links a:hover {
  background-color: var(--accent-primary);
  transform: translateY(-5px);
}

.social-links a i {
  font-size: 1.5rem;
}

.copyright {
  margin-top: 20px;
  font-size: 0.9rem;
  opacity: 0.7;
}