/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #ffffff;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.5rem;
  font-weight: 900;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 2rem;
}

p {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  font-family: "Orbitron", monospace;
  font-weight: 900;
  color: #ff6b35;
  font-size: 1.8rem;
  margin: 0;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: #ff6b35;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: #ff6b35;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #ffffff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Sections */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  z-index: 2;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 2rem;
}

.hero-logo {
  width: 30%;
  height: auto;
  object-fit: contain;
  margin-right: 3rem;
}

.hero-info {
  width: 70%;
  text-align: left;
}

.page-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.hero-content {
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  color: #ff6b35;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
  from {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 20px rgba(255, 107, 53, 0.5);
  }
  to {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8),
      0 0 30px rgba(255, 107, 53, 0.8);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #ffffff;
  margin-bottom: 1rem;
}

.hero-description {
  font-size: 1.2rem;
  color: #cccccc;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: #ff6b35;
  color: #ffffff;
}

.btn-primary:hover {
  background: #e55a2b;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.btn-secondary:hover {
  background: #ffffff;
  color: #0a0a0a;
  transform: translateY(-2px);
}

.btn-spotify {
  background: #1db954;
  color: #ffffff;
}

.btn-spotify:hover {
  background: #1ed760;
  transform: translateY(-2px);
}

.btn-youtube {
  background: #ff0000;
  color: #ffffff;
}

.btn-youtube:hover {
  background: #cc0000;
  transform: translateY(-2px);
}

.btn-apple {
  background: #000000;
  color: #ffffff;
}

.btn-apple:hover {
  background: #333333;
  transform: translateY(-2px);
}

.btn-small {
  padding: 8px 16px;
  font-size: 0.9rem;
}

.btn-instagram {
  background: linear-gradient(
    45deg,
    #f09433,
    #e6683c,
    #dc2743,
    #cc2366,
    #bc1888
  );
  color: #ffffff;
}

.btn-instagram:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
}

/* Latest Release Section */
.latest-release {
  padding: 5rem 0;
  background: #111111;
}

.album-card {
  display: flex;
  gap: 3rem;
  align-items: center;
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.album-cover img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.album-info h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.album-year {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.album-description {
  color: #ffffff;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.album-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Social Media Section */
.social-media {
  padding: 5rem 0;
  background: #0a0a0a;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 10px;
  background: #1a1a1a;
  transition: all 0.3s ease;
  min-width: 120px;
}

.social-link:hover {
  transform: translateY(-5px);
  background: #ff6b35;
  box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
}

.social-link i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

/* Footer */
.footer {
  background: #000000;
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section ul li a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff6b35;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #333333;
  color: #666666;
}

/* About Page Styles */
.band-history {
  padding: 5rem 0;
  background: #111111;
}

.history-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.history-text h2 {
  color: #ff6b35;
  margin-bottom: 2rem;
}

.history-text p {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.history-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.curiosities {
  padding: 5rem 0;
  background: #0a0a0a;
}

.curiosities h2 {
  text-align: center;
  color: #ff6b35;
  margin-bottom: 3rem;
}

.curiosities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.curiosity-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.curiosity-card:hover {
  transform: translateY(-5px);
}

.curiosity-icon {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.curiosity-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.curiosity-card p {
  color: #cccccc;
}

.musical-style {
  padding: 5rem 0;
  background: #111111;
}

.style-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.style-text h2 {
  color: #ff6b35;
  margin-bottom: 2rem;
}

.style-text ul {
  list-style: none;
  margin: 1.5rem 0;
}

.style-text ul li {
  color: #ffffff;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
}

.style-text ul li::before {
  content: "🎸";
  position: absolute;
  left: 0;
}

.style-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* Music Page Styles */
.latest-album {
  padding: 5rem 0;
  background: #111111;
}

.album-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.album-cover-large img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.album-details h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.album-stats {
  display: flex;
  gap: 2rem;
  margin: 2rem 0;
}

.stat {
  text-align: center;
}

.stat-number {
  display: block;
  font-size: 2rem;
  font-weight: 900;
  color: #ff6b35;
}

.stat-label {
  color: #cccccc;
  font-size: 0.9rem;
}

.track-list {
  padding: 5rem 0;
  background: #0a0a0a;
}

.tracks {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.track {
  display: flex;
  align-items: center;
  padding: 1rem 2rem;
  border-bottom: 1px solid #333333;
  transition: background 0.3s ease;
}

.track:hover {
  background: #222222;
}

.track:last-child {
  border-bottom: none;
}

.track-number {
  font-weight: 900;
  color: #ff6b35;
  margin-right: 2rem;
  min-width: 30px;
}

.track-info {
  flex: 1;
}

.track-info h4 {
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.track-info p {
  color: #cccccc;
  margin: 0;
}

.track-actions {
  margin-left: 1rem;
}

.play-btn {
  background: #ff6b35;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-btn:hover {
  background: #e55a2b;
  transform: scale(1.1);
}

.discography {
  padding: 5rem 0;
  background: #111111;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.album-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.album-card:hover {
  transform: translateY(-5px);
}

.album-cover img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.album-info {
  padding: 1.5rem;
}

.album-info h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.streaming-platforms {
  padding: 5rem 0;
  background: #0a0a0a;
}

.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.platform-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.platform-card:hover {
  transform: translateY(-5px);
  background: #ff6b35;
}

.platform-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.platform-card h3 {
  margin-bottom: 0.5rem;
}

.platform-card p {
  color: #cccccc;
  margin: 0;
}

/* Members Page Styles */
.current-members {
  padding: 5rem 0;
  background: #111111;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 3rem;
}

.member-card {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.member-card:hover {
  transform: translateY(-5px);
}

.member-photo img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.member-info {
  padding: 2rem;
}

.member-info h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.member-role {
  color: #cccccc;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.member-description {
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.member-details {
  margin-bottom: 1.5rem;
}

.detail {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}

.detail-label {
  color: #cccccc;
  font-weight: 600;
}

.detail-value {
  color: #ffffff;
}

.member-social {
  display: flex;
  gap: 1rem;
}

.member-social a {
  color: #cccccc;
  font-size: 1.5rem;
  transition: color 0.3s ease;
}

.member-social a:hover {
  color: #ff6b35;
}

.former-members {
  padding: 5rem 0;
  background: #0a0a0a;
}

.former-members-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.former-member {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.former-photo img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.former-info h4 {
  color: #ff6b35;
  margin-bottom: 0.25rem;
}

.former-role {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.former-info p {
  color: #ffffff;
  margin: 0;
  font-size: 0.9rem;
}

.band-timeline {
  padding: 5rem 0;
  background: #111111;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #ff6b35;
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

.timeline-item:nth-child(odd) {
  padding-right: 50%;
  text-align: right;
}

.timeline-item:nth-child(even) {
  padding-left: 50%;
  text-align: left;
}

.timeline-date {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  background: #ff6b35;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-weight: 600;
  z-index: 1;
}

.timeline-content {
  background: #1a1a1a;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.timeline-content h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  color: #ffffff;
  margin: 0;
}

/* Gallery Page Styles */
.gallery-filters {
  padding: 2rem 0;
  background: #111111;
}

.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-btn {
  background: #1a1a1a;
  color: #ffffff;
  border: 2px solid #333333;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.filter-btn.active,
.filter-btn:hover {
  background: #ff6b35;
  border-color: #ff6b35;
}

.photo-gallery {
  padding: 5rem 0;
  background: #0a0a0a;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.05);
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 2rem 1.5rem 1.5rem;
  color: #ffffff;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
}

.gallery-overlay h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.gallery-overlay p {
  margin-bottom: 1rem;
  color: #cccccc;
}

.view-btn {
  background: #ff6b35;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-btn:hover {
  background: #e55a2b;
  transform: scale(1.1);
}

.video-gallery {
  padding: 5rem 0;
  background: #111111;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-item {
  background: #1a1a1a;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
}

.video-thumbnail {
  position: relative;
  height: 200px;
}

.video-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(255, 107, 53, 0.9);
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #ff6b35;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: #cccccc;
  margin-bottom: 1rem;
}

.video-duration {
  background: #333333;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

.instagram-feed {
  padding: 5rem 0;
  background: #0a0a0a;
}

.instagram-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}

.instagram-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}

.instagram-item:hover {
  transform: scale(1.05);
}

.instagram-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.instagram-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.instagram-item:hover .instagram-overlay {
  opacity: 1;
}

.instagram-overlay i {
  font-size: 2rem;
  color: #ffffff;
}

.instagram-cta {
  text-align: center;
  margin-top: 2rem;
}

/* Contact Page Styles */
.contact-info {
  padding: 5rem 0;
  background: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.contact-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
}

.contact-icon {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.contact-card h3 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-card p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.contact-form {
  padding: 5rem 0;
  background: #0a0a0a;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: #1a1a1a;
  padding: 3rem;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.form-header {
  text-align: center;
  margin-bottom: 2rem;
}

.form-header h2 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  color: #ffffff;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 2px solid #333333;
  border-radius: 5px;
  background: #0a0a0a;
  color: #ffffff;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b35;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  color: #ffffff;
}

.checkbox-label input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.social-contact {
  padding: 5rem 0;
  background: #111111;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.social-card {
  background: #1a1a1a;
  padding: 2rem;
  border-radius: 10px;
  text-align: center;
  text-decoration: none;
  color: #ffffff;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-card:hover {
  transform: translateY(-5px);
  background: #ff6b35;
}

.social-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.social-card h3 {
  margin-bottom: 0.5rem;
}

.social-card p {
  color: #cccccc;
  margin-bottom: 0.5rem;
}

.social-followers {
  background: #333333;
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 15px;
  font-size: 0.9rem;
}

.faq-section {
  padding: 5rem 0;
  background: #0a0a0a;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #1a1a1a;
  border-radius: 10px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.faq-question:hover {
  background: #222222;
}

.faq-question h4 {
  color: #ff6b35;
  margin: 0;
}

.faq-question i {
  color: #cccccc;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: #ffffff;
  display: none;
}

.faq-item.active .faq-answer {
  display: block;
}

.map-section {
  padding: 5rem 0;
  background: #111111;
}

.map-container {
  background: #1a1a1a;
  border-radius: 10px;
  padding: 3rem;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.map-placeholder {
  color: #cccccc;
}

.map-placeholder i {
  font-size: 4rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.map-placeholder h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 70px;
    flex-direction: column;
    background-color: rgba(10, 10, 10, 0.95);
    width: 100%;
    text-align: center;
    transition: 0.3s;
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hero-content {
    flex-direction: column;
    text-align: center;
    padding: 0 1rem;
  }

  .hero-info {
    width: 100%;
    text-align: center;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .album-card {
    flex-direction: column;
    text-align: center;
  }

  .album-cover img {
    width: 250px;
    height: 250px;
  }

  .history-content,
  .style-content,
  .album-featured {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .members-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item:nth-child(odd),
  .timeline-item:nth-child(even) {
    padding-left: 60px;
    padding-right: 0;
    text-align: left;
  }

  .timeline-date {
    left: 20px;
    transform: translateX(-50%);
  }

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
  }

  .social-links {
    gap: 1rem;
  }

  .social-link {
    min-width: 100px;
    padding: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .album-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .curiosities-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .social-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem 1.5rem;
  }
}
