/* Event Detail - Beyaz Tema ile Mavi Butonlar ve Hover Efektleri */

:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-hover: #60a5fa;
    --text-primary: #000000;
  --text-secondary: #000000;
}

.event-detail-container {
max-width: 1400px;
  margin: 0 auto;
    padding: 2rem 1.5rem;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 2rem;
}

/* Main Content */
.event-detail-main {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.event-detail-image {
 width: 100%;
  height: 400px;
    overflow: hidden;
 position: relative;
}

.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-category {
 position: absolute;
  top: 1.5rem;
    left: 1.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary);
    color: white;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
text-transform: uppercase;
 letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.event-detail-content {
    padding: 2rem;
}

.event-detail-title {
    font-size: 2rem;
  font-weight: 700;
   color: var(--text-primary);
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.event-detail-meta {
  display: flex;
    flex-wrap: wrap;
    gap: 2rem;
padding: 1.5rem 0;
    margin-bottom: 1.5rem;
 border-bottom: 1px solid #e5e7eb;
}

.event-meta-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.event-meta-icon {
    width: 40px;
    height: 40px;
    border-radius: 0.5rem;
    background: rgba(59, 130, 246, 0.1);
    display: flex;
  align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.event-meta-item:hover .event-meta-icon {
    background: var(--primary);
}

.event-meta-item:hover .event-meta-icon .material-icons {
    color: white;
}

.event-meta-icon .material-icons {
    color: #000000;
    font-size: 1.25rem;
    transition: color 0.3s;
}

.event-meta-text {
    display: flex;
  flex-direction: column;
}

.event-meta-label {
    font-size: 0.75rem;
   color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.event-meta-value {
 font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-primary);
}

.event-detail-description {
    font-size: 1rem;
   color: #374151;
    line-height: 1.8;
  margin-bottom: 2rem;
}

.event-detail-description p {
    margin-bottom: 1rem;
}

/* Artists Section */
.event-artists-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
}

.event-section-title {
    font-size: 1.25rem;
 font-weight: 700;
   color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
gap: 0.5rem;
}

.event-section-title .material-icons {
    color: #000000;
}

.event-artists-grid {
    display: grid;
grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
 gap: 1.5rem;
}

.event-artist-card {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.25rem;
 text-align: center;
    border: 1px solid #e5e7eb;
    transition: all 0.3s;
 text-decoration: none;
    display: block;
}

.event-artist-card:hover {
    background: white;
    border-color: var(--primary);
 transform: translateY(-4px);
 box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.event-artist-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    overflow: hidden;
 border: 3px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.event-artist-card:hover .event-artist-image {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.event-artist-image img {
width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-artist-name {
    font-size: 1rem;
 font-weight: 600;
 color: var(--text-primary);
    margin: 0;
    transition: color 0.3s;
}

.event-artist-card:hover .event-artist-name {
    color: var(--primary);
}

/* Sidebar */
.event-detail-sidebar {
 display: flex;
    flex-direction: column;
  gap: 1.5rem;
}

.event-info-card {
    background: #ffffff;
    border-radius: 0.75rem;
    padding: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.event-info-title {
    font-size: 1.125rem;
  font-weight: 700;
    color: var(--text-primary);
    margin: 0 0 1.5rem 0;
    display: flex;
    align-items: center;
gap: 0.5rem;
}

.event-info-title .material-icons {
 color: #000000;
}

.event-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #f3f4f6;
}

.event-info-row:last-child {
  border-bottom: none;
}

.event-info-label {
    font-size: 0.875rem;
color: var(--text-secondary);
}

.event-info-value {
    font-size: 0.9375rem;
  font-weight: 600;
    color: var(--text-primary);
}

/* Price Card */
.event-price-card {
    background: #ffffff;
  border-radius: 0.75rem;
    padding: 1.5rem;
    border: 2px solid var(--primary);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.15);
}

.event-price-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.event-price-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
  margin-bottom: 1.5rem;
}

.event-buy-button {
    width: 100%;
    padding: 1rem;
    background: var(--primary);
    color: #000000;
border: none;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
}

.event-buy-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
    color: #000000;
}

/* Venue Card */
.event-venue-card {
    background: #f9fafb;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #e5e7eb;
    text-decoration: none;
display: block;
    transition: all 0.3s;
}

.event-venue-card:hover {
  background: white;
    border-color: var(--primary);
 box-shadow: 0 4px 12px rgba(59, 130, 246, 0.1);
}

.event-venue-name {
  font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-primary);
 margin: 0 0 0.5rem 0;
    display: flex;
 align-items: center;
    gap: 0.5rem;
    transition: color 0.3s;
}

.event-venue-card:hover .event-venue-name {
    color: var(--primary);
}

.event-venue-name .material-icons {
    color: #000000;
}

.event-venue-address {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Action Buttons */
.event-actions {
    display: flex;
    gap: 0.75rem;
}

.event-action-btn {
    flex: 1;
padding: 0.75rem;
    background: white;
    color: #374151;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
  align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.event-action-btn:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

.event-action-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.event-action-btn.active:hover {
    background: var(--primary-dark);
}

/* Quantity Buttons */
.qty-btn {
    transition: all 0.3s;
}

.qty-btn:hover:not(:disabled) {
    background: var(--primary);
    color: white;
 transform: scale(1.1);
}

/* Checkout Button */
.checkout-btn {
    transition: all 0.3s;
}

.checkout-btn:hover:not(:disabled) {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 130, 246, 0.3);
}

/* Info Buttons */
.info-btn {
    transition: all 0.3s;
}

.info-btn-primary:hover {
    background:#374151;
    color:white;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.info-btn-outline:hover {
    background: rgba(59, 130, 246, 0.05);
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-1px);
}

/* Ticket Options */
.ticket-option {
    transition: all 0.3s;
}

.ticket-option:hover {
    border-color: var(--primary);
    background: white;
 transform: translateX(2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
    }

  .event-detail-image {
        height: 300px;
 }
}

@media (max-width: 768px) {
    .event-detail-title {
 font-size: 1.5rem;
    }

    .event-detail-meta {
     gap: 1rem;
    }

    .event-artists-grid {
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}
