
/* Block 1 */
.hero-banner {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.8) 0%, rgba(102, 126, 234, 0.6) 100%);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-text {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a2e;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
    background: linear-gradient(135deg, #ffed4e 0%, #ffd700 100%);
}

.hero-cta:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 500px;
    }
    
    .hero-content {
        padding: 1.5rem;
    }
    
    .hero-cta {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1rem;
    }
    
    .hero-cta {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/* Block 2 */
.featured-events {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f2ff 100%);
    min-height: 100vh;
}

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

.events-header {
    text-align: center;
    margin-bottom: 4rem;
}

.events-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.events-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.event-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.event-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.event-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.event-card:hover .event-image {
    transform: scale(1.1);
}

.event-badge {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 2;
}

.event-details {
    padding: 1.5rem;
}

.event-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.event-location {
    color: #666;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.event-location::before {
    content: "📍";
    margin-right: 0.5rem;
}

.event-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 0.75rem;
    background: #f8f9ff;
    border-radius: 12px;
}

.event-date {
    color: #667eea;
    font-weight: 600;
    font-size: 0.95rem;
}

.event-price {
    color: #1a1a2e;
    font-weight: 700;
    font-size: 1.2rem;
}

.event-btn {
    width: 100%;
    padding: 0.875rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.event-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.events-cta {
    text-align: center;
    margin-top: 3rem;
}

.view-all-btn {
    padding: 1rem 3rem;
    background: transparent;
    color: #667eea;
    border: 2px solid #667eea;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #667eea;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

@media (max-width: 768px) {
    .featured-events {
        padding: 3rem 1rem;
    }
    
    .events-title {
        font-size: 2rem;
    }
    
    .events-subtitle {
        font-size: 1rem;
    }
    
    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .event-meta {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .view-all-btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .event-details {
        padding: 1rem;
    }
    
    .event-name {
        font-size: 1.2rem;
    }
    
    .events-header {
        margin-bottom: 2.5rem;
    }
}

/* Block 3 */
.artist-spotlight {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.spotlight-header {
    text-align: center;
    margin-bottom: 4rem;
}

.spotlight-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 1rem;
}

.spotlight-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

.artists-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.artist-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
}

.artist-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.artist-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.artist-card:hover .artist-image {
    transform: scale(1.1);
}

.artist-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.8));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.artist-card:hover .artist-overlay {
    opacity: 1;
}

.play-button {
    width: 60px;
    height: 60px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #667eea;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.play-button:hover {
    transform: scale(1.1);
}

.artist-info {
    padding: 2rem;
}

.artist-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 0.5rem;
}

.artist-genre {
    font-size: 0.9rem;
    color: #667eea;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.artist-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.artist-stats {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #495057;
    font-size: 0.9rem;
}

.stat-item i {
    color: #667eea;
}

.artist-follow-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.artist-follow-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
}

.featured-playlist {
    background: #1a1a2e;
    border-radius: 20px;
    overflow: hidden;
    margin-top: 3rem;
}

.playlist-content {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: center;
}

.playlist-info {
    padding: 3rem;
}

.playlist-title {
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.playlist-description {
    color: #e0e0e0;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.playlist-tracks {
    margin-bottom: 2rem;
}

.track-item {
    display: grid;
    grid-template-columns: 40px 1fr 60px;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background 0.3s ease;
    cursor: pointer;
}

.track-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.track-number {
    color: #667eea;
    font-weight: 600;
}

.track-details {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.track-title {
    color: #ffffff;
    font-weight: 500;
}

.track-artist {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.track-duration {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.playlist-play-btn {
    background: #ffd700;
    color: #1a1a2e;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.playlist-play-btn:hover {
    background: #ffed4e;
    transform: translateY(-2px);
}

.playlist-visual {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.playlist-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 768px) {
    .spotlight-title {
        font-size: 2rem;
    }

    .artists-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .playlist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .playlist-visual {
        order: -1;
    }

    .playlist-image {
        width: 200px;
        height: 200px;
    }

    .artist-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .track-item {
        grid-template-columns: 30px 1fr 50px;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .spotlight-container {
        padding: 0 1rem;
    }

    .playlist-info {
        padding: 2rem 1.5rem;
    }

    .playlist-title {
        font-size: 1.5rem;
    }
}

/* Block 4 */
.order-form-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f8f9ff 0%, #e8f0ff 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

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

.form-header {
    text-align: center;
    margin-bottom: 4rem;
}

.form-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.form-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.form-visual {
    position: relative;
}

.form-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(102, 126, 234, 0.15);
}

.form-benefits {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item i {
    color: #667eea;
    font-size: 1.5rem;
    width: 24px;
    text-align: center;
}

.benefit-item span {
    font-weight: 600;
    color: #333;
}

.form-wrapper {
    background: #ffffff;
    border-radius: 25px;
    padding: 3rem;
    box-shadow: 0 30px 80px rgba(102, 126, 234, 0.1);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    border: 2px solid #e1e5e9;
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #f8f9ff;
    font-family: inherit;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: #ffffff;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
    padding-top: 1.2rem;
}

.form-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 1.1rem;
    pointer-events: none;
}

.form-group:has(.form-textarea) .form-icon {
    top: 3.5rem;
    transform: none;
}

.form-checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}

.form-checkbox {
    display: none;
}

.checkbox-custom {
    width: 24px;
    height: 24px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    background: #f8f9ff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.form-checkbox:checked + .checkbox-custom {
    background: #667eea;
    border-color: #667eea;
}

.form-checkbox:checked + .checkbox-custom::after {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #ffffff;
    font-size: 0.8rem;
}

.checkbox-text {
    color: #666;
    line-height: 1.5;
}

.form-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    border: none;
    padding: 1.5rem 2rem;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    margin-top: 1rem;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.3);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-disclaimer {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-top: 1.5rem;
}

.disclaimer-link {
    color: #667eea;
    text-decoration: none;
}

.disclaimer-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .form-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-title {
        font-size: 2rem;
    }
    
    .form-wrapper {
        padding: 2rem;
    }
    
    .form-header {
        margin-bottom: 2rem;
    }
    
    .order-form-section {
        padding: 3rem 0;
    }
}

@media (max-width: 480px) {
    .form-container {
        padding: 0 1rem;
    }
    
    .form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        padding: 1rem 1rem 1rem 3rem;
    }
}
