/* Event Page Specific Styles */

.event-main {
    padding: 0;
}

/* Hero Section - Old styles removed, now handled by artist-hero-animation.css */
#event-hero-section .hero-image-container {
    background-image: url('group.jpg');
    background-size: cover;
    background-position: center;
}

/* Intro Section */
.event-intro {
    padding: 100px 15%;
    background-color: #000;
    text-align: center;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.event-intro h2 {
    font-size: 3rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.3;
}

.event-intro p {
    font-size: 1rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto 30px;
    color: #ccc;
    text-transform: uppercase;
    opacity: 0.7;
}

/* Pricing Packages */
.pricing-packages {
    padding: 40px 5% 100px 5%;
    background-color: #111;
}

.pricing-packages h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.3;
}

.footnote {
    text-align: center;
    color: #888;
    margin-top: 40px;
    font-size: 0.9rem;
}

.event-hero-header {
    text-align: center;
    margin-bottom: 30px;
    margin-top: 0;
}

.event-hero-title {
    font-size: 6vw;
    font-weight: bold;
    color: #fff;
    opacity: 0.15;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 18px 0;
    line-height: 1.1;
}

.event-description {
    font-size: 1.1rem;
    color: #fff;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 22px;
    margin-top: 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.event-packages-title {
    font-size: 1.5rem !important;
    color: #fff !important;
    opacity: 1 !important;
    margin-bottom: 18px !important;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 0;
}

/* Responsive grid for package cards */
.package-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    background: linear-gradient(145deg, #1a1a1a, #222);
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(40px) scale(0.98);
    transition: opacity 0.7s cubic-bezier(.77,0,.18,1), transform 0.7s cubic-bezier(.77,0,.18,1);
    position: relative;
    overflow: hidden;
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: #555;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.package-card.featured {
    border-color: #00aaff;
    background: linear-gradient(145deg, #1a1a1a, #1a2a3a);
}

.package-card.featured::after {
    content: 'POPULÄR';
    position: absolute;
    top: 20px;
    right: -30px;
    background: linear-gradient(135deg, #fdfcfe, #d7d7d7, #fdfcfe, #b8b8b8, #fdfcfe);
    background-size: 400% 400%;
    animation: perlmut-shine 5s ease infinite;
    color: #111;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    text-shadow: 0 0 2px rgba(0,0,0,0.2);
}

@keyframes perlmut-shine {
    0%{background-position:0% 50%}
    50%{background-position:100% 50%}
    100%{background-position:0% 50%}
}

.package-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #111;
    text-transform: uppercase;
    text-shadow: 0 0 3px rgba(255, 255, 255, 0.5), 0 0 8px rgba(255, 255, 255, 0.3);
    opacity: 0.3;
}

.package-card h4 {
    font-size: 1.8rem;
    margin-bottom: 25px;
    text-transform: none;
    letter-spacing: 1px;
    color: #fff;
    text-shadow: 2px 2px 5px #000;
}

.package-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.package-card li {
    padding: 8px 0;
    border-bottom: 1px solid #333;
    color: #ccc;
}

.package-card li:last-child {
    border-bottom: none;
}

.package-card li::before {
    content: '✓';
    color: #fff;
    font-weight: bold;
    margin-right: 10px;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #fff;
    margin-bottom: 15px;
}

.additional-info {
    font-size: 0.9rem;
    color: #888;
    line-height: 1.4;
}

/* Comparison Table Section */
.comparison-section {
    padding: 0 5% 40px 5%;
}

.comparison-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 60px;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.3;
}

.table-scroll-wrapper {
    overflow-x: auto;
    border: 1px solid #333;
    border-radius: 10px;
    -webkit-overflow-scrolling: touch;
}

table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

th, td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #2a2a2a;
    white-space: nowrap;
}

th {
    background-color: #1a1a1a;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

td {
    background-color: #222;
}

tbody tr:hover td {
    background-color: #2f2f2f;
}

td:first-child, th:first-child {
    text-align: left;
    font-weight: bold;
    background-color: #181818;
    position: sticky;
    left: 0;
    z-index: 1;
}

td:first-child {
    color: #00aaff;
}

.check {
    color: #2ecc71;
    font-size: 1.5rem;
    font-weight: bold;
}

.cross {
    color: #666;
}

/* Booking Info */
.booking-info {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.booking-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #ccc;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #00aaff, #0077cc);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,170,255,0.3);
    background: linear-gradient(45deg, #0077cc, #00aaff);
}

/* Animation classes */
.event-intro.is-visible,
.package-card.is-visible,
.booking-info.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
    .event-intro {
        padding: 80px 5%;
    }
    
    .event-intro h2 {
        font-size: 2rem;
    }
    
    .package-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card {
        padding: 30px 20px;
    }
}

@media (max-width: 600px) {
    .event-title,
    .event-hero-title {
        font-size: 2.2rem !important;
    }
    .booking-info-title {
        word-break: break-all;
        font-size: 1.2rem;
    }
    .desktop-only { display: none; }
    .mobile-only { display: inline; }
}

.package-card.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: flex-start;
}
.modal[aria-hidden="false"] {
  display: flex;
}
.modal-content {
  background: #181818;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  max-width: 95vw;
  width: 400px;
  position: relative;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  margin: 32vh 0 0 0;
  top: 0;
  left: 0;
  transform: none;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .modal-content {
    margin-top: 15vh;
  }
}

.desktop-only { display: inline; }
.mobile-only { display: none; }

@media (max-width: 600px) {
  .desktop-only { display: none; }
  .mobile-only { display: inline; }
}
