:root {
  --accent: #d8ff69;
  --bg: #000;
  --text: #f5f5f5;
  --grey: #777;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2 {
  font-family: 'Josefin Sans', sans-serif;
}

.container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0 1rem 2rem 0;
}

header {
  display: flex;
  align-items: left;
  justify-content: left;
  height: 200px;
  min-height: 200px;
}

.logo {
  height: 180px;
  object-fit: contain;
  object-position: left center;
}

h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  margin: 0 0 1rem 0;
  text-align: left;
  line-height: 1.2;
}

h1 .accent {
  color: var(--accent);
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0 0 1rem 0;
  color: var(--accent);
}

p {
  margin: 0 0 1.5rem 0;
  font-size: 1rem;
}

a {
  color: var(--accent);
  text-decoration: none;
}

.btn {
  display: inline-block;
  background: transparent;
  color: var(--accent);
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn:hover {
  background: rgba(216, 255, 105, 0.1);
  color: var(--accent);
}

section {
    padding-bottom: 4rem;
}

.event-card {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid var(--accent);
  border-right-style: dashed;
  border-radius: 16px 0 0 16px;
  padding: 2rem;
  position: relative;
  overflow: visible;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 0 1px rgba(216, 255, 105, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: perspective(1000px) rotateX(5deg) rotateY(0deg);
  transition: box-shadow 0.3s ease;
  max-width: 600px;
  width: 100%;
}

.event-card:hover {
  transform: perspective(1000px) rotateX(0deg) translateY(-5px);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(216, 255, 105, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.ticket-main {
  display: flex;
  align-items: center;
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.ticket-info {
  flex: 1;
}

.ticket-header {
  margin-bottom: 1rem;
}

.ticket-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 0.5rem 0;
}

.ticket-date {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.ticket-details {
  margin-bottom: 1rem;
}

.ticket-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticket-details li {
  margin: 0;
  font-size: 0.95rem;
  color: #e0e0e0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.ticket-details li::before {
  content: '•';
  color: var(--accent);
  font-weight: bold;
  font-size: 1.2rem;
}

.ticket-price {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--accent);
}

.ticket-cta {
  flex-shrink: 0;
}

.ticket-btn {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent) 0%, #b8e85a 100%);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 4px 15px rgba(216, 255, 105, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
}

.ticket-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(255, 255, 255, 0.2) 50%, 
    transparent 100%);
  transition: left 0.5s ease;
}

.ticket-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(216, 255, 105, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

.ticket-btn:hover::before {
  left: 100%;
}

.ticket-perforation {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: var(--bg);
  border-radius: 50%;
  border: 3px solid var(--accent);
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.ticket-perforation::before,
.ticket-perforation::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
}

.ticket-perforation::after {
  width: 8px;
  height: 8px;
  background: var(--bg);
}

.ticket-stub {
  position: absolute;
  top: -2px;
  right: -82px;
  width: 80px;
  height: calc(100% + 4px);
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 2px solid var(--accent);
  border-left: none;
  border-radius: 0 16px 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.5rem;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.ticket-stub::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(216, 255, 105, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(216, 255, 105, 0.05) 0%, transparent 50%);
  z-index: 0;
  opacity: 0.8;
}

.stub-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.event-info {
  padding-top: 1rem;
}

.event-photo {
  margin: 2rem 0;
  text-align: center;
}

.event-image {
  width: 70%;
  max-width: 400px;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* Testimonials section */
.testimonials {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
  position: relative;
  padding: 0 0 3rem 0;
}

.testimonials .container {
  max-width: 750px;
  margin: 0 auto;
  padding: 0px 1rem 0.2rem 0px;
}

.testimonials::before,
.testimonials::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.testimonials::before {
  left: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.testimonials::after {
  right: 0;
  background: linear-gradient(270deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
}

.testimonials-track {
  display: flex;
  gap: 2rem;
  animation: scroll-testimonials 60s linear infinite;
  width: max-content;
}

.testimonials-track:hover {
  animation-play-state: paused;
}

@keyframes scroll-testimonials {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.testimonial-box {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  border: 1px solid rgba(216, 255, 105, 0.2);
  border-radius: 12px;
  padding: 1.5rem;
  min-width: 320px;
  max-width: 400px;
  box-shadow: 
    0 8px 25px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.testimonial-box:hover {
  transform: translateY(-5px);
  border-color: rgba(216, 255, 105, 0.4);
  box-shadow: 
    0 12px 35px rgba(0, 0, 0, 0.4),
    0 0 20px rgba(216, 255, 105, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.testimonial-quote {
  font-size: 1.00rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
  font-style: italic;
  position: relative;
  padding: 0 14px;
}

.testimonial-quote::before {
  content: '';
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8ff69' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M3 21c3 0 7-1 7-8V5c0-1.25-.756-2.017-2-2H4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2 1 0 1 0 1 1v1c0 1-1 2-2 2s-1 .008-1 1.031V20c0 1 0 1 1 1z'/%3e%3cpath d='M15 21c3 0 7-1 7-8V5c0-1.25-.757-2.017-2-2h-4c-1.25 0-2 .75-2 1.972V11c0 1.25.75 2 2 2h.75c0 2.25.25 4-2.75 4v3c0 1 0 1 1 1z'/%3e%3c/svg%3e");
  position: absolute;
  top: -32px;
  left: -2px;
  width: 26px;
  height: 26px;
  opacity: 0.6;
}

.testimonial-author {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  font-style: normal;
  text-align: right;
}

.venue-photo {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 8px;
  margin-top: 1rem;
}

.venue-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.venue-text {
  flex: 1;
}

.newsletter {
  padding: 2rem 0;
  margin-bottom: 2rem;
}

.email-form {
  margin-top: 1.5rem;
}

.email-form form {
  display: flex;
  gap: 1rem;
}

.email-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(216, 255, 105, 0.3);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  color: var(--text);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 3px rgba(216, 255, 105, 0.1);
}

.email-input::placeholder {
  color: var(--grey);
}

.email-btn {
  background: linear-gradient(135deg, var(--accent) 0%, #b8e85a 100%);
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 
    0 4px 15px rgba(216, 255, 105, 0.3),
    0 2px 4px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.email-btn:hover {
  transform: translateY(-2px);
  box-shadow: 
    0 8px 25px rgba(216, 255, 105, 0.4),
    0 4px 8px rgba(0, 0, 0, 0.3);
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  color: var(--grey);
}

.consent-checkbox input[type="checkbox"] {
  margin: 0;
  width: 16px;
  height: 16px;
  accent-color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.consent-checkbox label {
  line-height: 1.4;
  cursor: pointer;
}

.newsletter-confirm {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  color: var(--accent);
  font-weight: 600;
  text-align: center;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s ease;
}

.newsletter-confirm.show {
  opacity: 1;
  transform: translateY(0);
}

/* Accessibility - respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .testimonials-track {
    animation: none;
  }
  
  .testimonials-track:hover {
    animation: none;
  }
}

/* Mobile testimonials */
@media (max-width: 767px) {
  .testimonials {
    padding: 2rem 0;
  }
  
  .testimonials::before,
  .testimonials::after {
    width: 50px;
  }
  
  .testimonial-box {
    min-width: 280px;
    max-width: 320px;
    padding: 1rem;
  }
  
  .testimonial-quote {
    font-size: 0.875rem;
  }
  
  .testimonials-track {
    gap: 1.5rem;
    animation-duration: 45s;
  }
}

/* Mobile-specific styles */
@media (max-width: 767px) {
  .container {
    padding: 0 1rem;
  }
  
  .newsletter {
    padding: 1.5rem;
  }
  
  .email-form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .email-form form {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .email-input {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
  
  .email-btn {
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .event-card {
    padding: 1rem;
    margin-right: 0;
    max-width: calc(100% - 52px);
    width: calc(100% - 52px);
    overflow: visible;
  }
  
  .ticket-main {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .ticket-cta {
    width: 100%;
  }
  
  .ticket-btn {
    width: 100%;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
  }
  
  .ticket-date {
    font-size: 1.1rem;
  }
  
  .ticket-title {
    font-size: 0.75rem;
  }
  
  .ticket-details li {
    font-size: 0.85rem;
  }
  
  .ticket-perforation {
    right: -10px;
    width: 20px;
    height: 20px;
    border-width: 2px;
  }
  
  .ticket-perforation::before {
    width: 10px;
    height: 10px;
  }
  
  .ticket-perforation::after {
    width: 5px;
    height: 5px;
  }
  
  .ticket-stub {
    right: -52px;
    width: 50px;
    padding: 0.5rem 0.25rem;
  }
  
  .stub-content {
    font-size: 0.6rem;
  }
  
  .logo {
    height: 120px;
  }
  
  header {
    height: 140px;
    min-height: 140px;
  }
}

@media (min-width: 768px) {
  .venue-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .venue-photo {
    width: 50%;
    max-width: none;
    margin-top: 0;
    flex-shrink: 0;
  }

  .venue-text {
    flex: 1;
    width: 50%;
  }
}

footer {
  text-align: center;
  font-size: 0.875rem;
  color: var(--grey);
  padding: 3rem 1rem;
}

@media (min-width: 768px) {
  .event-card {
    flex-shrink: 0;
    width: 100%;
    max-width: 600px;
  }
} 