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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #fff;
  min-height: 100vh;
  line-height: 1.6;
}

header {
  background: rgba(0, 0, 0, 0.5);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(10px);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  font-size: 2.2rem;
  font-weight: bold;
  color: #e94560;
  text-decoration: none;
}

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

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e94560;
}

main {
  max-width: 1600px;
  margin: 0 auto;
  padding: 2rem;
}

.hero {
  text-align: center;
  padding: 1.5rem 0;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  color: #e94560;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero .tagline {
  font-size: 1.5rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.about {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 10px;
  margin: 2rem 0;
  font-size: 1.15rem;
}

.about h2 {
  color: #e94560;
  margin-bottom: 1rem;
}

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

.member {
  background: rgba(255,255,255,0.1);
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
}

.member h3 {
  color: #e94560;
  margin-bottom: 0.5rem;
}

.page-title {
  text-align: center;
  font-size: 2.5rem;
  color: #e94560;
  margin-bottom: 2rem;
}

footer {
  text-align: center;
  padding: 2rem;
  background: rgba(0,0,0,0.3);
  margin-top: 3rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.social-links a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: #e94560;
}

.hero-image {
  max-width: 100%;
  max-height: 400px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  margin-top: 1rem;
}

.content-row {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-top: 1rem;
}

.content-row .hero-image {
  flex-shrink: 0;
  max-height: 500px;
}

.image-column {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
  width: 350px;
}

.image-column .hero-image {
  width: 100%;
  max-width: 100%;
}

.image-column .member {
  margin-top: 1rem;
  width: 100%;
}

.content-row .about {
  flex: 1;
  margin: 0;
}

.side-image {
  max-width: 350px;
  max-height: 500px;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  flex-shrink: 0;
}

.collage {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.collage img {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 350px;
  object-fit: contain;
  border-radius: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}

.collage img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 30px rgba(233, 69, 96, 0.3);
}

.calendar-container {
  max-width: 1080px;
  margin: 0 auto;
}

.calendar-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.calendar-nav h2 {
  color: #e94560;
  margin: 0;
  text-shadow: 0 0 20px rgba(233, 69, 96, 0.5);
  font-size: 2.2rem;
}

.cal-btn {
  background: linear-gradient(145deg, #e94560, #c73e54);
  color: #fff;
  border: none;
  padding: 0.6rem 1.2rem;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.cal-btn:hover {
  background: linear-gradient(145deg, #ff6b6b, #e94560);
  transform: translateY(-2px);
}

.calendar {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
  background: linear-gradient(145deg, rgba(30,30,50,0.9), rgba(15,15,35,0.95));
  padding: 1.2rem;
  border-radius: 10px;
  border: 1px solid rgba(233, 69, 96, 0.3);
  box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.day-header {
  text-align: center;
  font-weight: bold;
  color: #e94560;
  padding: 1rem;
  background: linear-gradient(180deg, rgba(233, 69, 96, 0.3), transparent);
}

#calendarDays {
  display: contents;
}

.day {
  min-height: 144px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.02));
  border-radius: 5px;
  padding: 5px;
  text-align: center;
  border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s ease;
}

.day.empty {
  background: transparent;
}

.day:hover:not(.empty) {
  transform: scale(1.02);
}

.day.has-gig {
  cursor: pointer;
  font-weight: bold;
}

.day-num {
  font-weight: bold;
  font-size: 1.3rem;
}

.day-band {\n  font-size: 1.4rem;
  display: block;
  margin-top: 3px;
  line-height: 1.2;
  font-weight: bold;
}

.day-venue {\n  font-size: 0.85rem;
  display: block;
  margin-top: 2px;
  line-height: 1.2;
  font-weight: bold;
}

.day-location {
  font-size: 0.9rem;
  display: block;
  color: rgba(255,255,255,0.8);
  line-height: 1.2;
}

.day.venue-johnnie-browns {
  background: linear-gradient(145deg, #3498db, #2980b9) !important;
}

.day.venue-square-grouper {
  background: linear-gradient(145deg, #228B22, #1e7a1e) !important;
  color: #fff;
}

.day.venue-margaritaville {
  background: linear-gradient(145deg, #ff69b4, #e05a9e) !important;
}

.day.venue-leftys {
  background: linear-gradient(145deg, #d2a679, #c4956a) !important;
  color: #1a1a2e;
}

.day.venue-wlp {
  background: linear-gradient(145deg, #ffffff, #e0e0e0) !important;
  color: #000 !important;
}

.day.venue-wlp .day-location {
  color: #000 !important;
}

.day.venue-other {
  background: linear-gradient(145deg, #e94560, #c73e54) !important;
}

.records-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 2rem;
  padding: 2rem 0;
}

.record-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.record-item:hover {
  transform: scale(1.1);
}

.record-item:hover .record-disc {
  animation: spin 2s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.record-disc {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle at center, #1a1a1a 0%, #1a1a1a 15%, #333 16%, #1a1a1a 17%, #333 20%, #1a1a1a 21%, #2a2a2a 25%, #1a1a1a 30%, #333 32%, #1a1a1a 35%, #2a2a2a 40%, #1a1a1a 100%);
  box-shadow: 0 8px 25px rgba(0,0,0,0.6);
  position: relative;
}

.record-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.7);
  padding: 8px;
  line-height: 1.1;
}

.record-label::after {
  content: '';
  position: absolute;
  width: 10px;
  height: 10px;
  background: #111;
  border-radius: 50%;
}

.record-title {
  margin-top: 1rem;
  color: #fff;
  font-size: 0.95rem;
  text-align: center;
  max-width: 160px;
}

.tv-container {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 3rem;
  padding: 2rem 0;
}

.tv-set {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.tv-frame {
  background: linear-gradient(145deg, #4a3728, #2d1f14);
  padding: 20px 25px 15px 25px;
  border-radius: 15px 15px 5px 5px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  position: relative;
}

.tv-frame::before {
  content: '';
  position: absolute;
  top: 12px;
  right: 15px;
  width: 8px;
  height: 8px;
  background: #e94560;
  border-radius: 50%;
  box-shadow: 0 0 10px #e94560;
}

.tv-frame::after {
  content: '';
  position: absolute;
  bottom: 10px;
  right: 20px;
  width: 30px;
  height: 30px;
  background: linear-gradient(145deg, #3a2a1a, #2a1a0a);
  border-radius: 50%;
  border: 2px solid #5a4a3a;
}

.tv-screen {
  background: #000;
  border-radius: 10px;
  overflow: hidden;
  width: 280px;
  height: 200px;
}

.tv-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}

.tv-stand {
  width: 40px;
  height: 30px;
  background: linear-gradient(180deg, #3a2a1a, #2d1f14);
  clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
}

.tv-base {
  width: 100px;
  height: 12px;
  background: linear-gradient(180deg, #4a3728, #2d1f14);
  border-radius: 0 0 5px 5px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}

.contact-info h2,
.contact-form-container h2 {
  color: #e94560;
  margin-bottom: 1rem;
  font-size: 2.2rem;
}

.contact-info p {
  color: #ccc;
  margin-bottom: 2rem;
  font-size: 1.3rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,0.05);
  padding: 1.2rem;
  border-radius: 10px;
  transition: transform 0.3s, background 0.3s;
}

.contact-item:hover {
  background: rgba(255,255,255,0.1);
  transform: translateX(5px);
}

.contact-icon {
  font-size: 2.2rem;
}

.contact-item h3 {
  color: #e94560;
  margin-bottom: 0.3rem;
  font-size: 1rem;
}

.contact-item a,
.contact-item p {
  color: #fff;
  text-decoration: none;
  font-size: 1.3rem;
}

.contact-item a:hover {
  color: #e94560;
}

.social-section {
  margin-top: 2rem;
}

.social-section h3 {
  color: #e94560;
  margin-bottom: 1rem;
}

.contact-socials {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-socials a {
  background: rgba(233, 69, 96, 0.2);
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 25px;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-socials a:hover {
  background: #e94560;
}

.contact-form-container {
  background: rgba(255,255,255,0.05);
  padding: 2rem;
  border-radius: 15px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #ccc;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #e94560;
}

.form-group textarea {
  resize: vertical;
  min-height: 144px;
}

.submit-btn {
  background: linear-gradient(145deg, #e94560, #c73e54);
  color: #fff;
  border: none;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-size: 1.3rem;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 15px rgba(233, 69, 96, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(233, 69, 96, 0.5);
}

@media (max-width: 768px) {
  .hero h1 { font-size: 2.5rem; }
  .nav-links { gap: 1rem; }
  .content-row { flex-direction: column; }
  .content-row .hero-image { max-width: 100%; }
  .contact-container { grid-template-columns: 1fr; }
  .tv-container { grid-template-columns: 1fr; }
  .records-container { grid-template-columns: repeat(2, 1fr); }
}
