/**
 * Kurdevents Homepage - Exact Clone CSS
 * Version: 3.0.1
 */

/* ============================================
   HERO SECTION - Blue Background
   ============================================ */
.eventseat-hero {
    position: relative;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    padding: 60px 20px;
    text-align: center;
}

.eventseat-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.svg') center/cover;
    opacity: 0.22;
}

.eventseat-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
}

.eventseat-hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.2;
}
.eventseat-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

/* Hero Search Bar */
.eventseat-hero-search {
    display: flex;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    max-width: 600px;
    margin: 0 auto 24px;
}

.eventseat-hero-search input {
    flex: 1;
    border: none;
    padding: 16px 20px;
    font-size: 1rem;
    outline: none;
}

.eventseat-hero-search select {
    border: none;
    border-left: 1px solid #e5e7eb;
    padding: 16px 20px;
    font-size: 1rem;
    background: #fff;
    cursor: pointer;
    outline: none;
    min-width: 140px;
}

.eventseat-hero-search button {
    background: #2563eb;
    color: #ffffff;
    border: none;
    padding: 16px 32px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.eventseat-hero-search button:hover {
    background: #1d4ed8;
}

/* Hero Categories */
.eventseat-hero-categories {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.eventseat-hero-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 100px;
}

.eventseat-hero-category:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.eventseat-hero-category-icon {
    font-size: 1.5rem;
}

.eventseat-hero-category-label {
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   FEATURED EVENT - Large Card
   ============================================ */
.eventseat-featured-section {
    padding: 40px 20px;
    background: #ffffff;
}

.eventseat-featured-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

.section-link {
    color: #2563eb;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
}

.eventseat-featured-event {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: #0f172a;
    border-radius: 16px;
    overflow: hidden;
    min-height: 360px;
}

.eventseat-featured-event-image {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 300px;
}

.eventseat-featured-event-date {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
    min-width: 60px;
}

.eventseat-featured-event-date-day {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.eventseat-featured-event-date-month {
    font-size: 0.75rem;
    color: #666;
    text-transform: uppercase;
    margin-top: 4px;
}

.eventseat-featured-event-content {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.eventseat-featured-event-city {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 8px;
}

.eventseat-featured-event-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.eventseat-featured-event-artist {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.eventseat-featured-event-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1d4ed8;
    color: #ffffff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    width: fit-content;
    transition: background 0.18s, transform 0.12s;
}

.eventseat-featured-event-button:hover {
    background: #1d4ed8;
}

/* ============================================
   CITIES ROW - Horizontal Scroll
   ============================================ */
.eventseat-cities-section {
    padding: 30px 20px;
    background: #f8fafc;
}

.eventseat-cities-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.eventseat-cities-row {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.eventseat-city-card {
    flex: 0 0 auto;
    width: 200px;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16/10;
}

.eventseat-city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.eventseat-city-card:hover img {
    transform: scale(1.05);
}

.eventseat-city-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
}

.eventseat-city-card-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

/* ============================================
   EVENTS GRID - Small Cards
   ============================================ */
.eventseat-events-section {
    padding: 40px 20px;
    background: #f8fafc;
}

.eventseat-events-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.eventseat-events-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

@media (min-width: 768px) {
    .eventseat-events-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.eventseat-event-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s, box-shadow 0.2s;
}

.eventseat-event-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(2,6,23,0.18);
}

.eventseat-event-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.eventseat-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.eventseat-event-city-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #1e293b;
    color: #fff;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.eventseat-event-date-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px 12px;
    text-align: center;
    min-width: 50px;
}

.eventseat-event-date-day {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1;
}

.eventseat-event-date-month {
    font-size: 0.625rem;
    color: #666;
    text-transform: uppercase;
}

.eventseat-event-content {
    padding: 16px;
}

.eventseat-event-date {
    font-size: 0.75rem;
    color: #2563eb;
    font-weight: 500;
    margin-bottom: 6px;
}

.eventseat-event-title {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
    line-height: 1.4;
}

.eventseat-event-artist {
    font-size: 0.8125rem;
    color: #64748b;
    margin-bottom: 12px;
}

.eventseat-event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.eventseat-event-price {
    font-weight: 700;
    color: #0f172a;
    font-size: 0.9375rem;
}

.eventseat-event-button {
    background: #2563eb;
    color: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.8125rem;
    font-weight: 500;
    transition: background 0.2s;
}

.eventseat-event-button:hover {
    background: #1d4ed8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
    .eventseat-hero {
        min-height: 400px;
        padding: 40px 16px;
    }
    
    .eventseat-hero-title {
        font-size: 1.5rem;
    }
    
    .eventseat-hero-search {
        flex-direction: column;
    }
    
    .eventseat-hero-search select {
        border-left: none;
        border-top: 1px solid #e5e7eb;
    }
    
    .eventseat-featured-event {
        grid-template-columns: 1fr;
    }
    
    .eventseat-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}
