@import url('https://fonts.googleapis.com/css2?family=Noto+Serif:wght@700&display=swap');

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    background-color: #fff;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 15px;
    background-color: #fff;
    width: 100%;
    height: 45px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.logo {
    font-family: 'Noto Serif', serif;
    font-weight: 700;
    font-size: 14px;
    color: #8E0101;
    letter-spacing: 0.5px;
}

.actions {
    display: flex;
    align-items: center;
    gap: 19px;
}

.icon {
    width: 16px;
    height: 16px;
    cursor: pointer;
}

/* Hero Section */
.hero {
    width: 100%;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero-image-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    animation: zoomOut 1.5s ease-out forwards;
}

.hero-content {
    padding: 24px 20px;
    background-color: #fff;
    text-align: center;
}

.concert-title {
    font-family: 'Noto Serif', serif;
    font-size: 32px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.concert-subtitle {
    font-size: 16px;
    color: #8E0101;
    margin-bottom: 32px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.concert-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
}

.detail-label {
    color: #666;
}

.detail-value {
    font-weight: 600;
    color: #000;
}

.cta-button {
    width: 100%;
    padding: 16px;
    background-color: #8E0101;
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button:active {
    background-color: #6d0101;
}

/* Animations */
@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Responsive */
@media (min-width: 768px) {
    .hero {
        flex-direction: row;
        align-items: center;
        max-width: 1000px;
        margin: 0 auto;
    }

    .hero-image-container {
        flex: 1;
    }

    .hero-content {
        flex: 1;
        padding: 40px;
        text-align: left;
    }

    .concert-details {
        align-items: flex-start;
    }
    
    .detail-item {
        width: 100%;
    }
}

@media (max-width: 320px) {
    header {
        padding: 10px;
    }
}