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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid #ff0041;
}

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

.nav-logo h1 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 900;
    color: #ff0041;
    text-shadow: 0 0 20px #ff0041;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #ff0041;
    text-shadow: 0 0 10px #ff0041;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff0041;
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ff0041;
    margin: 3px 0;
    transition: 0.3s;
}

/* Smoke Animation */
.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 1;
    transition: opacity 2s ease-out;
}

.smoke-container.fade-out {
    opacity: 0;
}

.smoke-particle {
    position: absolute;
    background: radial-gradient(circle, rgba(255, 0, 65, 0.3) 0%, rgba(255, 0, 65, 0.1) 50%, transparent 100%);
    border-radius: 50%;
    animation: smokeRise 4s ease-out forwards;
}

@keyframes smokeRise {
    0% {
        transform: translateY(100vh) scale(0.5);
        opacity: 0;
    }
    10% {
        opacity: 0.8;
    }
    50% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-20vh) scale(1.5);
        opacity: 0;
    }
}

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

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="graffiti" patternUnits="userSpaceOnUse" width="100" height="100"><rect width="100" height="100" fill="%23111"/><circle cx="20" cy="20" r="2" fill="%23ff0041" opacity="0.3"/><circle cx="80" cy="60" r="1" fill="%23ff0080" opacity="0.2"/></pattern></defs><rect width="100%" height="100%" fill="url(%23graffiti)"/><rect x="0" y="600" width="100%" height="200" fill="%23000"/><polygon points="0,600 200,580 400,590 600,570 800,585 1000,575 1200,580 1200,800 0,800" fill="%23111"/></svg>') center/cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 65, 0.1), rgba(255, 0, 128, 0.1));
}

.hero-content {
    z-index: 2;
    position: relative;
    margin-top: 80px;
    width: 100%;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 2rem;
}

/* Service Banner */
.service-banner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: 2rem;
    gap: 1rem;
}

.service-label {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 0 20px #ff0041;
    letter-spacing: 3px;
}

.service-lines {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.service-line {
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #ff0041, transparent);
    animation: pulse 2s ease-in-out infinite;
}

.service-line:nth-child(2) {
    animation-delay: 0.3s;
}

.service-line:nth-child(3) {
    animation-delay: 0.6s;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Hero Main Layout */
.hero-main {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem auto;
}

.hero-text {
    text-align: center;
    width: 100%;
}

.hero-title {
    font-family: 'Orbitron', monospace;
    font-size: 6rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 0 30px #ff0041, 0 0 60px #ff0041;
    margin-bottom: 1rem;
    animation: glow 2s ease-in-out infinite alternate;
    line-height: 1;
}

@keyframes glow {
    from { text-shadow: 0 0 30px #ff0041, 0 0 60px #ff0041; }
    to { text-shadow: 0 0 40px #ff0041, 0 0 80px #ff0041, 0 0 100px #ff0041; }
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #cccccc;
    margin-bottom: 1rem;
    letter-spacing: 3px;
    font-weight: 300;
}

.hero-description {
    margin-bottom: 2rem;
}

.hero-description p {
    font-size: 1.1rem;
    color: #aaaaaa;
    line-height: 1.6;
    margin: 0;
}

/* Hero Image Container */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-frame {
    position: relative;
    width: 400px;
    height: 500px;
    border: 2px solid rgba(255, 0, 65, 0.4);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(255, 0, 65, 0.2);
    transform: perspective(1000px) rotateY(-5deg);
    transition: all 0.3s ease;
    backdrop-filter: blur(1px);
}

.hero-image-frame:hover {
    transform: perspective(1000px) rotateY(0deg);
    box-shadow: 0 0 50px rgba(255, 0, 65, 0.5);
}

.hero-artist-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%; /* Focus on face area */
    opacity: 0.3; /* Low opacity for background effect */
    transform: scale(1.2); /* Zoom in on the face */
    transition: all 0.3s ease;
}

.hero-image-frame:hover .hero-artist-image {
    transform: scale(1.25); /* Slightly more zoom on hover */
    opacity: 0.4; /* Slightly more visible on hover */
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 0, 65, 0.05), transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.hero-decorative {
    position: absolute;
    top: -20px;
    right: -20px;
    z-index: -1;
}

.deco-element {
    width: 100px;
    height: 100px;
    border: 2px solid #ff0041;
    border-radius: 50%;
    position: absolute;
    opacity: 0.3;
    animation: rotate 10s linear infinite;
}

.deco-element:nth-child(2) {
    width: 150px;
    height: 150px;
    top: 50px;
    right: 50px;
    animation-delay: -5s;
    animation-duration: 15s;
}

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

/* Content Indicator */
.content-indicator {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin-top: 2rem;
}

.content-indicator span {
    font-size: 0.9rem;
    color: #888888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.indicator-lines {
    display: flex;
    gap: 0.3rem;
    align-items: center;
}

.indicator-line {
    width: 20px;
    height: 1px;
    background: #888888;
    animation: indicatorPulse 3s ease-in-out infinite;
}

.indicator-line:nth-child(2) {
    animation-delay: 0.5s;
}

.indicator-line:nth-child(3) {
    animation-delay: 1s;
}

@keyframes indicatorPulse {
    0%, 100% { opacity: 0.3; transform: scaleX(1); }
    50% { opacity: 1; transform: scaleX(1.5); }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .content-indicator {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .indicator-lines {
        display: none;
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    background: none;
    font-size: 1rem;
}

.btn-primary {
    background: #ff0041;
    color: #000;
    border-color: #ff0041;
}

.btn-primary:hover {
    background: transparent;
    color: #ff0041;
    box-shadow: 0 0 20px #ff0041;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border-color: #ffffff;
}

.btn-secondary:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 20px #ffffff;
}

.btn-youtube {
    background: #ff0000;
    color: #ffffff;
    border-color: #ff0000;
}

.btn-youtube:hover {
    background: transparent;
    color: #ff0000;
    box-shadow: 0 0 20px #ff0000;
}

.btn-small {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Section Styles */
.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #ff0041;
    text-shadow: 0 0 20px #ff0041;
}

/* Music Section */
.music-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a);
}

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

.track-card {
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #333;
    position: relative;
    overflow: hidden;
}

.track-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 65, 0.1), transparent);
    transition: left 0.5s ease;
}

.track-card:hover::before {
    left: 100%;
}

.track-card:hover {
    transform: translateY(-10px);
    border-color: #ff0041;
    box-shadow: 0 10px 30px rgba(255, 0, 65, 0.3);
}

.track-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(45deg, #ff0041, #ff0080);
    border-radius: 10px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.play-btn {
    font-size: 3rem;
    color: #000000;
    transition: all 0.3s ease;
}

.track-image:hover .play-btn {
    transform: scale(1.2);
}

.track-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.track-info p {
    color: #888888;
    font-size: 0.9rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

.stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat {
    text-align: center;
}

.stat h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #ff0041;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #888888;
    font-size: 0.9rem;
}

.about-image {
    display: flex;
    justify-content: center;
}

.artist-image {
    width: 300px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ff0041;
    box-shadow: 0 0 30px rgba(255, 0, 65, 0.3);
    transition: all 0.3s ease;
}

.artist-image:hover {
    box-shadow: 0 0 40px rgba(255, 0, 65, 0.5);
    transform: scale(1.02);
}

.image-placeholder {
    width: 300px;
    height: 400px;
    background: linear-gradient(45deg, #1a1a1a, #333333);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ff0041;
    box-shadow: 0 0 30px rgba(255, 0, 65, 0.3);
}

.image-placeholder i {
    font-size: 4rem;
    color: #ff0041;
}

/* Tours Section */
.tours-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
}

.tour-list {
    max-width: 800px;
    margin: 0 auto;
}

.tour-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    margin-bottom: 1rem;
    background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
    border-radius: 10px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.tour-item:hover {
    border-color: #ff0041;
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(255, 0, 65, 0.2);
}

.tour-date {
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

.tour-date .month {
    display: block;
    font-size: 0.9rem;
    color: #ff0041;
    font-weight: 600;
}

.tour-date .day {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.tour-info {
    flex: 1;
}

.tour-info h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.tour-info p {
    color: #888888;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #0a0a0a;
}

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

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ff0041;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #cccccc;
}

.contact-item i {
    color: #ff0041;
    font-size: 1.2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 5px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff0041;
    box-shadow: 0 0 10px rgba(255, 0, 65, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid #ff0041;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo h2 {
    font-family: 'Orbitron', monospace;
    color: #ff0041;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #888888;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.social-link:hover {
    background: #ff0041;
    color: #000000;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 0, 65, 0.4);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #888888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .tour-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .tour-date {
        margin-right: 0;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .music-grid {
        grid-template-columns: 1fr;
    }
    
    .track-image {
        width: 120px;
        height: 120px;
    }
    
    .stats {
        flex-direction: column;
        gap: 1rem;
    }
}