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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #0F172A;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Lora', serif;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}

p {
    color: #cbd5e1;
    line-height: 1.8;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #cbd5e1;
    font-weight: 400;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #E11D48;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    right: 0;
    height: 2px;
    background: #E11D48;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.pexels.com/photos/1190298/pexels-photo-1190298.jpeg') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

.hero-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff 0%, #E11D48 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #10B981;
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
}

.btn-primary {
    background: #E11D48;
    color: white;
}

.btn-primary:hover {
    background: #BE185D;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(225, 29, 72, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #10B981;
    border: 2px solid #10B981;
}

.btn-secondary:hover {
    background: #10B981;
    color: #0F172A;
    transform: translateY(-2px);
}

.btn-accent {
    background: #10B981;
    color: #0F172A;
}

.btn-accent:hover {
    background: #059669;
    transform: translateY(-2px);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Page Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}

.page-header {
    padding: 4rem 0 2rem;
    text-align: center;
    background: linear-gradient(135deg, #1E293B 0%, #334155 100%);
}

.page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-subtitle {
    font-size: 1.2rem;
    color: #94a3b8;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #fff;
}

/* Featured Section */
.featured {
    padding: 4rem 0;
    background: #1E293B;
}

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

.featured-card {
    background: #334155;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.featured-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card-content {
    padding: 1.5rem;
}

.card-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.card-content p {
    margin-bottom: 1rem;
    color: #94a3b8;
}

/* Music Page Styles */
.albums {
    padding: 4rem 0;
    background: #1E293B;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.album-card {
    background: #334155;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.album-cover {
    position: relative;
    overflow: hidden;
}

.album-cover img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.album-card:hover .album-cover img {
    transform: scale(1.05);
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.album-card:hover .play-overlay {
    opacity: 1;
}

.play-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #E11D48;
    color: white;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-btn:hover {
    background: #BE185D;
    transform: scale(1.1);
}

.album-info {
    padding: 1.5rem;
}

.album-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.album-info p {
    color: #94a3b8;
}

/* Tracklist Styles */
.tracklist {
    padding: 4rem 0;
    background: #0F172A;
}

.tracklist-container {
    max-width: 800px;
    margin: 0 auto;
}

.tracklist-album {
    background: #1E293B;
    border-radius: 15px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.tracklist-album h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #E11D48;
}

.tracks {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.track-item {
    display: grid;
    grid-template-columns: 40px 1fr 60px 40px;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    background: #334155;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.track-item:hover {
    background: #475569;
    transform: translateX(5px);
}

.track-number {
    color: #94a3b8;
    font-weight: 600;
}

.track-name {
    color: #fff;
    font-weight: 500;
}

.track-duration {
    color: #94a3b8;
    text-align: right;
}

.track-play {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #E11D48;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.8rem;
}

.track-play:hover {
    background: #BE185D;
    transform: scale(1.1);
}

/* Video Page Styles */
.videos {
    padding: 4rem 0;
    background: #1E293B;
}

.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.video-card {
    background: #334155;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-thumbnail iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-info {
    padding: 1.5rem;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.video-info p {
    color: #94a3b8;
}

/* Tour Page Styles */
.tour-dates {
    padding: 4rem 0;
    background: #1E293B;
}

.tour-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.tour-item {
    display: grid;
    grid-template-columns: 80px 1fr auto;
    gap: 2rem;
    align-items: center;
    background: #334155;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.tour-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.tour-date {
    text-align: center;
    background: #E11D48;
    border-radius: 10px;
    padding: 1rem;
    color: white;
}

.tour-date .month {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
}

.tour-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.tour-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.venue-location {
    color: #10B981;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.tour-time {
    color: #94a3b8;
    font-size: 0.9rem;
}

.ticket-btn {
    min-width: 120px;
}

.tour-cta {
    padding: 4rem 0;
    background: #0F172A;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #94a3b8;
}

/* About Page Styles */
.about-hero {
    padding: 4rem 0;
    background: #1E293B;
}

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

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-bio p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.musical-journey {
    padding: 4rem 0;
    background: #0F172A;
}

.timeline {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #E11D48;
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    background: #E11D48;
    color: white;
    padding: 0.5rem;
    border-radius: 25px;
    text-align: center;
    font-weight: 600;
    height: fit-content;
    position: relative;
    z-index: 2;
}

.timeline-content {
    background: #1E293B;
    padding: 2rem;
    border-radius: 15px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #10B981;
}

.quote-section {
    padding: 4rem 0;
    background: #1E293B;
    text-align: center;
}

.artist-quote {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.5rem;
    font-style: italic;
    color: #fff;
    position: relative;
}

.artist-quote::before {
    content: '"';
    font-size: 4rem;
    color: #E11D48;
    position: absolute;
    top: -20px;
    left: -30px;
}

.artist-quote cite {
    display: block;
    margin-top: 1rem;
    font-size: 1rem;
    color: #10B981;
    font-style: normal;
}

/* Contact Page Styles */
.contact-section {
    padding: 4rem 0;
    background: #1E293B;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    color: #E11D48;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #94a3b8;
    margin-bottom: 0.25rem;
}

.contact-form {
    background: #334155;
    padding: 2rem;
    border-radius: 15px;
}

.contact-form h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #fff;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #475569;
    border-radius: 8px;
    background: #1E293B;
    color: #fff;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #E11D48;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #0F172A;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 3rem;
    align-items: start;
}

.footer-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-info p {
    color: #64748b;
    font-size: 0.9rem;
}

.footer-links h4,
.footer-social h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #E11D48;
}

.footer-links a,
.footer-social a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-social a:hover {
    color: #10B981;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

.fade-in-delay-1 { animation-delay: 0.2s; }
.fade-in-delay-2 { animation-delay: 0.4s; }
.fade-in-delay-3 { animation-delay: 0.6s; }
.fade-in-delay-4 { animation-delay: 0.8s; }
.fade-in-delay-5 { animation-delay: 1.0s; }
.fade-in-delay-6 { animation-delay: 1.2s; }
.fade-in-delay-7 { animation-delay: 1.4s; }

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding: 2rem 0;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .albums-grid {
        grid-template-columns: 1fr;
    }

    .videos-grid {
        grid-template-columns: 1fr;
    }

    .tour-item {
        grid-template-columns: 60px 1fr;
        gap: 1rem;
    }

    .tour-action {
        grid-column: 1 / -1;
        margin-top: 1rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .about-image img {
        height: 300px;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-item {
        grid-template-columns: 80px 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .page-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
}

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

    .nav {
        padding: 1rem 1rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .tour-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }

    .tour-date {
        margin: 0 auto;
        width: fit-content;
    }

    .videos-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .albums-grid {
        gap: 1.5rem;
    }
}

/* Loading and Interaction States */
.loading {
    opacity: 0.7;
    pointer-events: none;
}

.btn:active {
    transform: scale(0.95);
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #E11D48;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #10B981;
}

/* Success message for contact form */
.success-message {
    background: #10B981;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    text-align: center;
    display: none;
}

.success-message.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}