/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Orbitron", monospace;
  font-weight: 700;
  line-height: 1.2;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  border-bottom: 2px solid #ff6b35;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-icon {
  width: 32px;
  height: 32px;
}

.nav-logo h2 {
  color: #ff6b35;
  font-size: 1.8rem;
  font-weight: 900;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.nav-logo h2 .rocks-text {
  color: #8b4513;
  text-shadow: 0 0 10px rgba(139, 69, 19, 0.5);
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link:hover {
  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 {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.bar {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(10, 10, 10, 0.8) 0%,
      rgba(26, 26, 26, 0.7) 50%,
      rgba(10, 10, 10, 0.8) 100%
    ),
    url("../images/crowd.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

/* Fallback for browsers that don't support background-attachment: fixed */
@supports not (background-attachment: fixed) {
  .hero,
  .lineup,
  .contact,
  .social {
    background-attachment: scroll;
  }
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ff6b35" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
  pointer-events: none;
}

.hero-content {
  text-align: center;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4rem;
  color: #ff6b35;
  text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  animation: glow 2s ease-in-out infinite alternate;
}

.hero-title .rocks-text {
  color: #8b4513;
  text-shadow: 0 0 20px rgba(139, 69, 19, 0.8);
  animation: rocks-glow 2s ease-in-out infinite alternate;
}

@keyframes rocks-glow {
  from {
    text-shadow: 0 0 20px rgba(139, 69, 19, 0.8);
  }
  to {
    text-shadow: 0 0 30px rgba(139, 69, 19, 1), 0 0 40px rgba(139, 69, 19, 0.5);
  }
}

@keyframes glow {
  from {
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.8);
  }
  to {
    text-shadow: 0 0 30px rgba(255, 107, 53, 1),
      0 0 40px rgba(255, 107, 53, 0.5);
  }
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #fff;
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.hero-date {
  font-size: 1.2rem;
  color: #ccc;
  margin-bottom: 0.5rem;
  font-family: "Orbitron", monospace;
}

.hero-time {
  font-size: 1rem;
  color: #ccc;
  margin-bottom: 2rem;
  font-family: "Orbitron", monospace;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  background: linear-gradient(45deg, #f7931e, #ff6b35);
}

.cta-button.secondary {
  background: transparent;
  border: 2px solid #ff6b35;
  color: #ff6b35;
}

.cta-button.secondary:hover {
  background: #ff6b35;
  color: #fff;
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #ff6b35;
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Section Styles */
section {
  padding: 80px 0;
}

/* Ensure hero section doesn't have extra padding */
.hero {
  padding: 0;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 3rem;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

/* About Section */
.about {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

.festival-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.detail-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.detail-item:hover {
  background: rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
}

.detail-item i {
  font-size: 1.5rem;
  color: #ff6b35;
  min-width: 30px;
  margin-top: 0.2rem;
}

.detail-item h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.detail-item p {
  color: #ccc;
  line-height: 1.6;
  margin: 0;
}

.about-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.25);
}

.feature i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.feature h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

/* Vendors Section */
.vendors {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  color: #fff;
}

.vendors-content {
  max-width: 1200px;
  margin: 0 auto;
}

.vendor-lineup {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

/* Main Concessions Section */
.main-concessions {
  width: 100%;
  max-width: 800px;
  text-align: center;
}

.main-concessions h3 {
  color: #ff6b35;
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  padding-bottom: 0.5rem;
}

.concession-card {
  background: rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
  max-width: 400px;
  margin: 0 auto;
}

.concession-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.25);
}

.concession-image {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.concession-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 120px;
  max-height: 120px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.concession-logo:hover {
  transform: scale(1.1);
}

.concession-card h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.concession-description {
  color: #fff;
  font-weight: 500;
  margin-bottom: 1rem;
}

.concession-social-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.concession-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
}

.concession-social-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.concession-social-link i {
  font-size: 1rem;
}

.vendor-list {
  max-width: 800px;
  width: 100%;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  padding: 2rem;
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.vendor-list h3 {
  color: #ff6b35;
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
  border-bottom: 2px solid rgba(255, 107, 53, 0.3);
  padding-bottom: 0.5rem;
}

.vendor-list ul {
  list-style: none;
  margin-bottom: 2rem;
}

.vendor-list li {
  color: #fff;
  font-size: 1.1rem;
  padding: 0.5rem 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  transition: all 0.3s ease;
}

.vendor-list li:hover {
  color: #ff6b35;
  transform: translateX(5px);
}

.vendor-list li:last-child {
  border-bottom: none;
}

.vendor-card {
  background: rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.vendor-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.25);
}

.vendor-image {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.vendor-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 120px;
  max-height: 120px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.vendor-logo:hover {
  transform: scale(1.1);
}

.vendor-social-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.vendor-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
}

.vendor-social-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.vendor-social-link i {
  font-size: 1rem;
}

.vendor-card h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.vendor-type {
  color: #ccc;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.vendor-description {
  color: #fff;
  font-weight: 500;
}

.vendor-join {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.vendor-join h3 {
  color: #ff6b35;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.vendor-join p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.vendor-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.category {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.category:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.15);
}

.category i {
  font-size: 2.5rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.category h4 {
  color: #ff6b35;
  margin-bottom: 1rem;
}

.vendor-cta {
  text-align: center;
}

/* Sponsors Section */
.sponsors-section {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.sponsors-section h3 {
  color: #ff6b35;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.sponsors-section p {
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.sponsors-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}

.sponsor-card {
  flex: 0 0 280px;
  max-width: 280px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (min-width: 768px) {
  .sponsors-grid {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
}

.sponsor-card {
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.1) 0%,
    rgba(255, 107, 53, 0.05) 100%
  );
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.1);
}

.sponsor-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, #ff6b35, transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.sponsor-card:hover {
  transform: translateY(-5px);
  background: linear-gradient(
    135deg,
    rgba(255, 107, 53, 0.15) 0%,
    rgba(255, 107, 53, 0.1) 100%
  );
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
  border-color: rgba(255, 107, 53, 0.5);
}

.sponsor-card:hover::before {
  opacity: 1;
}

.sponsor-card h4 {
  color: #ff6b35;
  text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.sponsor-link {
  margin-top: 1.5rem;
}

.founder-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ff6b35 0%, #e55a2b 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
  min-height: 44px;
}

.sponsor-website-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 25px;
  color: #ff6b35;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sponsor-website-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.sponsor-website-link i {
  font-size: 0.9rem;
}

.sponsor-image {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  overflow: hidden;
}

.sponsor-image a {
  display: block;
  width: 100%;
  height: 100%;
  text-decoration: none;
  margin: 0;
  padding: 0;
}

.sponsor-logo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
  border-radius: 8px;
}

.sponsor-card:hover .sponsor-logo {
  transform: scale(1.1);
}

.sponsor-card h4 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.sponsor-type {
  color: #ffd700;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sponsor-description {
  color: #fff;
  font-weight: 400;
  font-size: 0.95rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.sponsor-cta {
  text-align: center;
}

.sponsor-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #fff;
}

/* Lineup Section */
.lineup {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(42, 42, 42, 0.8) 100%
    ),
    url("../images/crowd.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

.lineup-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.lineup-row {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
}

.artist-card {
  background: rgba(255, 107, 53, 0.1);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.artist-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 107, 53, 0.15);
}

/* Headliner - Largest */
.artist-card.headliner {
  flex: 1;
  max-width: 800px;
  padding: 3rem;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.4);
}

.artist-card.headliner .artist-image {
  width: 280px;
  height: 280px;
  margin: 0 auto 2rem;
}

.artist-card.headliner .band-logo {
  max-width: 280px;
  max-height: 280px;
}

.artist-card.headliner h3 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.artist-card.headliner .artist-genre {
  font-size: 1.3rem;
}

.artist-card.headliner .artist-time {
  font-size: 1.4rem;
  font-weight: 600;
}

/* Second Tier - Medium */
.artist-card.second-tier {
  flex: 1;
  padding: 3rem;
  background: rgba(255, 107, 53, 0.2);
  border: 1.5px solid rgba(255, 107, 53, 0.3);
}

.artist-card.second-tier .artist-image {
  width: 240px;
  height: 240px;
  margin: 0 auto 2rem;
}

.artist-card.second-tier .band-logo {
  max-width: 240px;
  max-height: 240px;
}

.artist-card.second-tier h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.artist-card.second-tier .artist-genre {
  font-size: 1.2rem;
}

.artist-card.second-tier .artist-time {
  font-size: 1.3rem;
  font-weight: 600;
}

/* Third Tier - Smaller */
.artist-card.third-tier {
  flex: 1;
  padding: 2rem;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.25);
}

.artist-card.third-tier .artist-image {
  width: 160px;
  height: 160px;
  margin: 0 auto 1rem;
}

.artist-card.third-tier .band-logo {
  max-width: 160px;
  max-height: 160px;
}

.artist-card.third-tier h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.artist-card.third-tier .artist-genre {
  font-size: 1rem;
}

.artist-card.third-tier .artist-time {
  font-size: 1rem;
  font-weight: 500;
}

/* Opening Act - Smallest */
.artist-card.opener {
  padding: 1.5rem;
  background: rgba(255, 107, 53, 0.2);
  border: 1px solid rgba(255, 107, 53, 0.2);
}

.artist-card.opener .artist-image {
  width: 140px;
  height: 140px;
  margin: 0 auto 0.8rem;
}

.artist-card.opener .band-logo {
  max-width: 140px;
  max-height: 140px;
}

.artist-card.opener h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.artist-card.opener .artist-genre {
  font-size: 0.9rem;
}

.artist-card.opener .artist-time {
  font-size: 0.9rem;
  font-weight: 500;
}

.artist-image i {
  font-size: 2.5rem;
  color: #fff;
}

.band-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  max-width: 120px;
  max-height: 120px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.band-logo:hover {
  transform: scale(1.1);
}

.artist-image {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

.artist-card h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
}

.artist-genre {
  color: #ccc;
  font-style: italic;
  margin-bottom: 0.5rem;
}

.artist-time {
  color: #fff;
  font-weight: 500;
}

.band-social-links {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.band-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 50%;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
}

.band-social-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.band-social-link i {
  font-size: 1rem;
}

.band-social-link .fa-youtube:hover {
  color: #ff0000;
}

.lineup-note {
  text-align: center;
  color: #ccc;
  font-style: italic;
}

/* Vendors Section */
.vendors {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
}

.vendor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.vendor-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.vendor-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.vendor-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.vendor-cta {
  text-align: center;
}

.vendor-cta p {
  margin-bottom: 1rem;
  color: #ccc;
}

/* Gallery Section */
.gallery {
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  color: #fff;
  padding: 5rem 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 15px;
}

.gallery-overlay i {
  color: white;
  font-size: 2rem;
}

/* Lightbox Styles */
.lightbox {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(5px);
  overflow: hidden;
}

.lightbox-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  padding: 20px;
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 3rem;
  font-weight: bold;
  cursor: pointer;
  z-index: 1003;
  transition: color 0.3s ease;
}

.lightbox-close:hover {
  color: #ff6b35;
}

.lightbox-image-container {
  position: relative;
  max-width: 95%;
  max-height: 95%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.lightbox-title {
  color: #fff;
  font-size: 1.5rem;
  margin-top: 1rem;
  font-weight: 600;
  text-align: center;
  max-width: 100%;
  word-wrap: break-word;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 2rem;
  pointer-events: none;
  z-index: 1002;
}

.lightbox-nav-btn {
  background: rgba(255, 107, 53, 0.8);
  border: none;
  color: white;
  padding: 1rem;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  pointer-events: auto;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-nav-btn:hover {
  background: rgba(255, 107, 53, 1);
  transform: scale(1.1);
}

.gallery-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

.gallery-placeholder i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.gallery-cta {
  text-align: center;
}

.gallery-cta p {
  margin-bottom: 1rem;
  color: #ccc;
}

.social-tags {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.social-tag {
  background: rgba(255, 107, 53, 0.2);
  color: #ff6b35;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1.1rem;
  border: 1px solid rgba(255, 107, 53, 0.3);
}

.gallery-instructions {
  color: #ccc;
  font-style: italic;
  margin-top: 1rem;
}

/* Social Media Section */
.social {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(42, 42, 42, 0.8) 100%
    ),
    url("../images/crowd.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
  padding: 5rem 0;
}

.social-content {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.social-intro {
  font-size: 1.2rem;
  margin-bottom: 3rem;
  color: #ccc;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.social-links-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.social-card {
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 15px;
  padding: 2rem;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.social-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.social-card i {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.social-card h3 {
  color: #ff6b35;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.social-card p {
  color: #ff6b35;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.social-desc {
  color: #ccc;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Social-specific colors */
.social-card.facebook {
  border-color: #1877f2;
}

.social-card.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  box-shadow: 0 8px 25px rgba(24, 119, 242, 0.3);
}

.social-card.facebook i,
.social-card.facebook h3,
.social-card.facebook p {
  color: #1877f2;
}

.social-card.instagram {
  border-color: #e4405f;
}

.social-card.instagram:hover {
  background: rgba(228, 64, 95, 0.1);
  box-shadow: 0 8px 25px rgba(228, 64, 95, 0.3);
}

.social-card.instagram i,
.social-card.instagram h3,
.social-card.instagram p {
  color: #e4405f;
}

.social-card.twitter {
  border-color: #1da1f2;
}

.social-card.twitter:hover {
  background: rgba(29, 161, 242, 0.1);
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.social-card.twitter i,
.social-card.twitter h3,
.social-card.twitter p {
  color: #1da1f2;
}

.hashtag-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
}

.hashtag-section p {
  color: #ccc;
  margin-bottom: 1rem;
}

.hashtag {
  background: linear-gradient(45deg, #ff6b35, #f7931e);
  color: #fff;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Contact Section */
.contact {
  background: linear-gradient(
      135deg,
      rgba(26, 26, 26, 0.9) 0%,
      rgba(42, 42, 42, 0.8) 100%
    ),
    url("../images/crowd.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
  color: #fff;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
}

.contact-simple {
  text-align: center;
}

.contact-email {
  background: rgba(255, 107, 53, 0.2);
  padding: 3rem 2rem;
  border-radius: 15px;
  border: 1px solid rgba(255, 107, 53, 0.2);
  transition: all 0.3s ease;
}

.contact-email:hover {
  background: rgba(255, 107, 53, 0.25);
  transform: translateY(-5px);
}

.contact-email i {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

.contact-email h3 {
  color: #ff6b35;
  margin-bottom: 1rem;
  font-size: 1.8rem;
}

.contact-email p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  color: #ccc;
}

.email-link {
  display: inline-block;
  color: #ff6b35;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 15px 30px;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid #ff6b35;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.email-link:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

/* Social Contact Links */
.social-contact-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: rgba(255, 107, 53, 0.2);
  border: 2px solid rgba(255, 107, 53, 0.2);
  border-radius: 50px;
  text-decoration: none;
  color: #ff6b35;
  font-weight: 600;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(255, 107, 53, 0.25);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.social-link i {
  font-size: 1.5rem;
  min-width: 24px;
}

.social-link span {
  font-size: 1rem;
}

/* Social-specific colors */
.social-link.facebook {
  border-color: #1877f2;
  color: #1877f2;
}

.social-link.facebook:hover {
  background: rgba(24, 119, 242, 0.1);
  box-shadow: 0 4px 15px rgba(24, 119, 242, 0.3);
}

.social-link.instagram {
  border-color: #e4405f;
  color: #e4405f;
}

.social-link.instagram:hover {
  background: rgba(228, 64, 95, 0.1);
  box-shadow: 0 4px 15px rgba(228, 64, 95, 0.3);
}

.social-link.twitter {
  border-color: #1da1f2;
  color: #1da1f2;
}

.social-link.twitter:hover {
  background: rgba(29, 161, 242, 0.1);
  box-shadow: 0 4px 15px rgba(29, 161, 242, 0.3);
}

/* Facebook-specific styling */
.contact-email .fab.fa-facebook {
  font-size: 3rem;
  color: #ff6b35;
  margin-bottom: 1rem;
}

/* Footer */
.footer {
  background: #0a0a0a;
  color: #fff;
  padding: 3rem 0 1rem;
  border-top: 2px solid #ff6b35;
}

.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: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section ul li a:hover {
  color: #ff6b35;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  display: inline-block;
  width: 40px;
  height: 40px;
  background: rgba(255, 107, 53, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff6b35;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #ff6b35;
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 107, 53, 0.2);
  color: #ccc;
}

.footer-bottom a {
  color: #ff6b35;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #fff;
}

.developer-credit {
  text-align: left;
}

.developer-credit p {
  color: #ccc;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  text-align: left;
}

.developer-link {
  display: inline-block;
  text-decoration: none;
  transition: all 0.3s ease;
  padding: 0.5rem;
  border-radius: 10px;
  background: rgba(255, 107, 53, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.3);
  text-align: left;
}

.developer-link:hover {
  background: rgba(255, 107, 53, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.developer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 40px;
}

.logo-icon {
  height: 30px;
  width: auto;
  display: block;
}

.logo-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  display: flex;
  align-items: center;
}

.blue-text {
  color: rgb(0, 122, 204);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 16px;
  vertical-align: baseline;
  line-height: 1;
}

.black-text {
  color: rgb(31, 41, 55);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  font-size: 16px;
  vertical-align: baseline;
  line-height: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero,
  .lineup,
  .contact,
  .social {
    background-attachment: scroll;
  }

  .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;
    gap: 1rem;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-icon {
    width: 28px;
    height: 28px;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-date,
  .hero-time {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .section-title {
    font-size: 2rem;
  }

  .contact-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .social-contact-links {
    gap: 0.8rem;
  }

  .social-link {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
  }

  .social-link i {
    font-size: 1.3rem;
  }

  .festival-details {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .about-features,
  .vendor-categories,
  .vendor-lineup {
    grid-template-columns: 1fr;
  }

  .sponsors-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .sponsor-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
  }

  .lineup-grid {
    gap: 1.5rem;
  }

  .lineup-row {
    flex-direction: column;
    gap: 1.5rem;
  }

  .artist-card.headliner {
    max-width: 100%;
  }

  .artist-card.second-tier {
    max-width: 100%;
  }

  .artist-card.third-tier {
    max-width: 100%;
  }

  .vendor-grid,
  .gallery-grid,
  .social-links-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }

  .sponsors-grid {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
  }

  .sponsor-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: auto;
  }

  .main-concessions h3 {
    font-size: 1.6rem;
  }

  .concession-card {
    padding: 1.5rem;
  }

  .vendor-list {
    padding: 1.5rem;
    margin: 0 1rem;
  }

  .vendor-list h3 {
    font-size: 1.3rem;
  }

  .vendor-list li {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-date,
  .hero-time {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

  .section-title {
    font-size: 1.8rem;
  }

  .vendor-grid,
  .gallery-grid,
  .social-links-grid {
    grid-template-columns: 1fr;
  }

  .main-concessions h3 {
    font-size: 1.4rem;
  }

  .concession-card {
    padding: 1rem;
  }

  .concession-card h4 {
    font-size: 1.1rem;
  }

  .vendor-list {
    padding: 1rem;
    margin: 0 0.5rem;
  }

  .vendor-list h3 {
    font-size: 1.2rem;
  }

  .vendor-list li {
    font-size: 0.9rem;
    padding: 0.4rem 0;
  }

  /* Mobile lineup adjustments */
  .lineup-grid {
    gap: 1rem;
  }

  .lineup-row {
    flex-direction: column;
    gap: 1rem;
  }

  .artist-card {
    padding: 1.5rem;
  }

  .artist-card.headliner {
    padding: 2rem;
  }

  .artist-card.headliner .artist-image {
    width: 200px;
    height: 200px;
  }

  .artist-card.headliner .band-logo {
    max-width: 200px;
    max-height: 200px;
  }

  .artist-card.headliner h3 {
    font-size: 2rem;
  }

  .artist-card.second-tier .artist-image {
    width: 180px;
    height: 180px;
  }

  .artist-card.second-tier .band-logo {
    max-width: 180px;
    max-height: 180px;
  }

  .artist-card.second-tier h3 {
    font-size: 1.6rem;
  }

  .artist-card.third-tier .artist-image {
    width: 120px;
    height: 120px;
  }

  .artist-card.third-tier .band-logo {
    max-width: 120px;
    max-height: 120px;
  }

  .artist-card.third-tier h3 {
    font-size: 1.2rem;
  }
}

/* Lightbox mobile optimizations */
@media (max-width: 768px) {
  .lightbox-image {
    max-height: 80vh;
  }

  .lightbox-image-container {
    max-width: 98%;
    max-height: 98%;
  }

  .lightbox-close {
    top: 10px;
    right: 15px;
    font-size: 2.5rem;
  }

  .lightbox-nav-btn {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .lightbox-nav {
    padding: 0 1rem;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
}

/* Active navigation link */
.nav-link.active {
  color: #ff6b35;
}

.nav-link.active::after {
  width: 100%;
}

/* Hashtag Buttons */
.hashtag-buttons {
  margin-top: 1.5rem;
}

.hashtag-buttons h5 {
  color: #ff6b35;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

.hashtag-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.hashtag-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.8rem;
  background: rgba(255, 107, 53, 0.1);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  color: #ff6b35;
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 500;
  transition: all 0.3s ease;
  text-align: left;
}

.hashtag-btn:hover {
  background: rgba(255, 107, 53, 0.2);
  border-color: #ff6b35;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(255, 107, 53, 0.2);
}

.hashtag-btn i {
  font-size: 0.9rem;
}

/* Responsive hashtag buttons */
@media (max-width: 768px) {
  .hashtag-links {
    flex-direction: column;
  }

  .hashtag-btn {
    font-size: 0.75rem;
    padding: 0.4rem 0.7rem;
  }
}

/* Hashtag Cards for Socials Section */
.hashtag-buttons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.hashtag-card {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 107, 53, 0.3);
  border-radius: 12px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.hashtag-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
  border-color: #ff6b35;
}

.hashtag-card.facebook {
  border-color: rgba(66, 103, 178, 0.5);
}

.hashtag-card.facebook:hover {
  border-color: #4267b2;
  box-shadow: 0 8px 25px rgba(66, 103, 178, 0.3);
}

.hashtag-card.instagram {
  border-color: rgba(225, 48, 108, 0.5);
}

.hashtag-card.instagram:hover {
  border-color: #e1306c;
  box-shadow: 0 8px 25px rgba(225, 48, 108, 0.3);
}

.hashtag-card.twitter {
  border-color: rgba(29, 161, 242, 0.5);
}

.hashtag-card.twitter:hover {
  border-color: #1da1f2;
  box-shadow: 0 8px 25px rgba(29, 161, 242, 0.3);
}

.hashtag-card i {
  font-size: 1.5rem;
  color: #ff6b35;
}

.hashtag-card.facebook i {
  color: #4267b2;
}

.hashtag-card.instagram i {
  color: #e1306c;
}

.hashtag-card.twitter i {
  color: #1da1f2;
}

.hashtag-text {
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
}

/* Responsive hashtag cards */
@media (max-width: 768px) {
  .hashtag-buttons-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }

  .hashtag-card {
    padding: 0.8rem;
  }

  .hashtag-text {
    font-size: 0.9rem;
  }
}
