/* Vendors Page Specific Styles */

body {
  background: #0a0a2e;
}

.vendors-hero {
  min-height: 40vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0a2e 0%, #1a1a3e 50%, #0a0a2e 100%);
  padding-top: 80px;
  position: relative;
}

.vendors-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 46, 0.6);
  z-index: 1;
}

.vendors-hero-content {
  text-align: center;
  z-index: 2;
  padding: 2rem;
}

.vendors-hero-content h1 {
  font-family: 'Roboto', sans-serif;
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
  letter-spacing: 2px;
}

.vendors-hero-subtitle {
  font-size: 1.3rem;
  color: #cccccc;
  max-width: 600px;
  margin: 2rem auto 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.back-link {
  display: inline-block;
  margin-top: 1.5rem;
  color: #4a90e2;
  text-decoration: none;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.back-link:hover {
  color: #93c5fd;
  transform: translateX(-5px);
}

/* Announcements Section */
.announcements-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0a2e 0%, #12122e 100%);
  position: relative;
}

.announcements-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 46, 0.8);
  z-index: 1;
}

.announcements-container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 2;
}

.announcements-header {
  text-align: center;
  margin-bottom: 4rem;
}

.announcements-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.announcements-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.announcement-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 4px solid #dc2626;
  border-radius: 12px;
  padding: 2rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.announcement-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.announcement-card.featured {
  border-left: 4px solid #22c55e;
  background: rgba(34, 197, 94, 0.05);
}

.announcement-card.featured:hover {
  background: rgba(34, 197, 94, 0.1);
}

.announcement-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.announcement-date {
  font-family: 'Roboto', sans-serif;
  font-size: 0.9rem;
  color: #4a90e2;
  font-weight: 500;
}

.announcement-tag {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.8);
}

.announcement-tag.important {
  background: rgba(220, 38, 38, 0.2);
  color: #fca5a5;
}

.announcement-tag.update {
  background: rgba(74, 144, 226, 0.2);
  color: #93c5fd;
}

.announcement-tag.new {
  background: rgba(34, 197, 94, 0.2);
  color: #86efac;
}

.announcement-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.announcement-content {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

.announcement-content a {
  color: #4a90e2;
  text-decoration: none;
  transition: color 0.3s ease;
}

.announcement-content a:hover {
  color: #93c5fd;
  text-decoration: underline;
}

/* Vendors Section */
.vendors-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #0a0a2e 0%, #0d0d24 100%);
  position: relative;
  min-height: 60vh;
}

.vendors-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 10, 46, 0.8);
  z-index: 1;
}

.vendors-container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 4rem;
  position: relative;
  z-index: 2;
}

.vendors-header {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
}

.vendors-header h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 3rem;
  font-weight: 400;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  margin-bottom: 1rem;
}

.vendors-header .header-line {
  width: 200px;
  height: 3px;
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  margin: 0 auto;
}

.vendors-subtitle {
  font-size: 1.2rem;
  color: #cccccc;
  max-width: 800px;
  margin: 2rem auto 0;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
}

/* Vendor Grid - override main styles for this page */
.vendors-section .selected-vendors-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin: 3rem 0;
  position: relative;
  z-index: 2;
}

.vendors-section .vendor-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
  backdrop-filter: blur(10px);
  font-family: 'Inter', 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: #ffffff;
  transition: all 0.3s ease;
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vendors-section .vendor-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.15);
  border-color: #4a90e2;
  background: rgba(255, 255, 255, 0.12);
}

/* Alternates Section */
.vendors-section .alternates-section {
  margin-top: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.vendors-section .alternates-section h3 {
  font-family: 'Roboto', sans-serif;
  font-size: 2rem;
  font-weight: 400;
  color: #4a90e2;
  text-align: center;
  margin-bottom: 2rem;
}

.vendors-section .alternates-list {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 4px solid #dc2626;
  border-radius: 10px;
  padding: 2rem 2rem 2rem 3rem;
  backdrop-filter: blur(10px);
}

.vendors-section .alternates-list li {
  font-size: 1rem;
  color: #ffffff;
  line-height: 2;
  padding: 0.4rem 0;
}

/* No Announcements State */
.no-announcements {
  text-align: center;
  padding: 4rem 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 12px;
}

.no-announcements p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.6);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .vendors-hero-content h1 {
    font-size: 2.5rem;
  }

  .vendors-hero-subtitle {
    font-size: 1.1rem;
  }

  .vendors-header h2 {
    font-size: 2rem;
  }

  .vendors-container {
    padding: 0 1.5rem;
  }

  .vendors-section .selected-vendors-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .vendors-hero {
    min-height: 30vh;
  }

  .vendors-hero-content h1 {
    font-size: 2rem;
  }

  .vendors-section .selected-vendors-grid {
    grid-template-columns: 1fr;
  }
}
