/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #3b82f6;
    --secondary-color: #64748b;
    --background-color: #0f172a;
    --background-secondary: #1e293b;
    --background-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --border-color: #334155;
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    --accent-music: #8b5cf6;
    --card-background: #1e293b;
    --hover-background: #334155;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-color);
    color: var(--text-primary);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-primary);
    position: relative;
    z-index: 2;
}

.section-title::before {
    content: attr(data-bg-text);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    font-weight: 900;
    color: rgba(139, 92, 246, 0.05);
    white-space: nowrap;
    z-index: -1;
    pointer-events: none;
    user-select: none;
    letter-spacing: 0.1em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-music));
    border-radius: 2px;
    z-index: 1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.logo-text::after {
    content: '♪';
    position: absolute;
    top: -5px;
    right: -15px;
    font-size: 1rem;
    color: var(--accent-music);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-music));
    transition: width 0.3s ease;
}

.nav-link:hover::before {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: 0.3s;
}

section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-music), var(--primary-color), transparent);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--background-color) 0%, var(--background-secondary) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-music), var(--primary-color), transparent);
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 25% 75%, rgba(139, 92, 246, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 75% 25%, rgba(37, 99, 235, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse at 50% 50%, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    animation: pulse-bg 8s ease-in-out infinite;
    z-index: -2;
}

@keyframes pulse-bg {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(139, 92, 246, 0.03) 2px,
            rgba(139, 92, 246, 0.03) 4px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 2px,
            rgba(37, 99, 235, 0.03) 2px,
            rgba(37, 99, 235, 0.03) 4px
        );
    z-index: -1;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(20px, 20px);
    }
}

@keyframes wave-flow {
    0%, 100% {
        transform: translate(-50%, -50%) scaleX(1);
    }
    50% {
        transform: translate(-50%, -50%) scaleX(1.1);
    }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: hero-fade-in 1.5s ease-out;
}

@keyframes hero-fade-in {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    position: relative;
    text-shadow: 
        0 0 10px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.1);
    animation: title-glow 3s ease-in-out infinite alternate;
}

@keyframes title-glow {
    0% {
        text-shadow: 
            0 0 10px rgba(139, 92, 246, 0.3),
            0 0 20px rgba(139, 92, 246, 0.2),
            0 0 30px rgba(139, 92, 246, 0.1);
    }
    100% {
        text-shadow: 
            0 0 15px rgba(139, 92, 246, 0.4),
            0 0 25px rgba(139, 92, 246, 0.3),
            0 0 35px rgba(139, 92, 246, 0.2);
    }
}

.hero-title::before {
    content: '🎸';
    position: absolute;
    top: -20px;
    left: -40px;
    font-size: 2rem;
    animation: rock 3s ease-in-out infinite;
    opacity: 0.7;
}

.hero-title::after {
    content: '🎵';
    position: absolute;
    top: -10px;
    right: -40px;
    font-size: 1.5rem;
    animation: float-note 4s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes rock {
    0%, 100% {
        transform: rotate(-5deg);
    }
    50% {
        transform: rotate(5deg);
    }
}

@keyframes float-note {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-10px) rotate(10deg);
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.5s ease;
    z-index: 0;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-music));
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-music));
    color: white;
    transform: translateY(-2px);
}

/* Floating Music Elements */
.music-floating {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    font-size: 2rem;
    opacity: 0.15;
    animation: float-around 15s linear infinite;
    color: var(--accent-music);
}

.music-floating:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    font-size: 1.5rem;
}

.music-floating:nth-child(2) {
    top: 25%;
    right: 15%;
    animation-delay: -5s;
    font-size: 2.2rem;
}

.music-floating:nth-child(3) {
    bottom: 30%;
    left: 20%;
    animation-delay: -10s;
    font-size: 1.8rem;
}

.music-floating:nth-child(4) {
    top: 60%;
    left: 80%;
    animation-delay: -7s;
    font-size: 1.3rem;
}

.music-floating:nth-child(5) {
    bottom: 20%;
    right: 25%;
    animation-delay: -12s;
    font-size: 2rem;
}

@keyframes float-around {
    0% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(90deg);
    }
    50% {
        transform: translateY(0px) rotate(180deg);
    }
    75% {
        transform: translateY(-10px) rotate(270deg);
    }
    100% {
        transform: translateY(0px) rotate(360deg);
    }
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--background-secondary);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-music), var(--primary-color), var(--accent-music), transparent);
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: var(--background-tertiary);
    position: relative;
}

/* Services Layout */
.services-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-top: 2rem;
    min-height: 600px;
}

/* Vertical Accordion Styles */
.services-accordion {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-item.active {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    border-left: 4px solid var(--accent-music);
}

.accordion-header {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.accordion-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.1), transparent);
    transition: left 0.5s ease;
}

.accordion-header:hover::before {
    left: 100%;
}

.accordion-header:hover {
    background: var(--hover-background);
}

.accordion-item.active .accordion-header {
    background: transparent;
}

.service-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-music));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-right: 1rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.accordion-header:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.accordion-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.accordion-text h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
}

.accordion-text p {
    color: var(--text-secondary);
    margin: 0;
    font-size: 0.875rem;
}

.accordion-arrow {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.accordion-arrow i {
    color: var(--accent-music);
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    background: var(--accent-music);
    transform: rotate(90deg);
}

.accordion-item.active .accordion-arrow i {
    color: white;
}

/* Services Content Area */
.services-content {
    background: var(--card-background);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-detail {
    padding: 2.5rem;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow-y: auto;
}

.service-detail.active {
    opacity: 1;
    transform: translateX(0);
    position: static;
}

.service-detail h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    position: relative;
}

.service-detail h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-music));
    border-radius: 2px;
}

.service-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.service-section {
    margin-bottom: 2rem;
}

.service-section h4 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-section h4::before {
    content: '♪';
    color: var(--accent-music);
    font-size: 1rem;
}

.service-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-section li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.5;
}

.service-section li:last-child {
    border-bottom: none;
}

.service-section li::before {
    content: '▶';
    position: absolute;
    left: 0;
    top: 0.75rem;
    color: var(--accent-music);
    font-size: 0.75rem;
}

.service-section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.service-pricing {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(139, 92, 246, 0.05));
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-music);
    margin-top: 2rem;
}

.service-pricing h4 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.service-pricing h4::before {
    content: '€';
    color: var(--accent-music);
    font-size: 1rem;
}

.service-pricing p {
    margin: 0;
    font-weight: 500;
    color: var(--text-primary);
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--background-secondary) 0%, var(--background-tertiary) 100%);
    position: relative;
}

.contact::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), var(--accent-music), var(--primary-color), transparent);
}

.contact-content {
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full-width {
    width: 100%;
}

.form-group.full-width .btn {
    width: auto;
    padding: 14px 32px;
    align-self: flex-start;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    background: var(--card-background);
    color: var(--text-primary);
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-music);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Inter', sans-serif;
}

/* Footer */
.footer {
    background: var(--background-color);
    color: white;
    text-align: center;
    padding: calc(2rem + 10px) 0;
    position: relative;
}

.footer::before {
    content: '♪ ♫ ♪ ♫ ♪';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.8rem;
    opacity: 0.3;
    letter-spacing: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--background-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-title::before,
    .hero-title::after {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .section-title::before {
        font-size: 6rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .services-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-accordion {
        order: 2;
    }
    
    .services-content {
        order: 1;
        min-height: 400px;
    }
    
    .service-detail {
        padding: 2rem;
    }
    
    .service-detail h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .services-layout {
        gap: 1.5rem;
    }
    
    .accordion-header {
        padding: 1rem;
    }
    
    .service-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .accordion-text h3 {
        font-size: 1.125rem;
    }
    
    .accordion-text p {
        font-size: 0.8rem;
    }
    
    .service-detail {
        padding: 1.5rem;
    }
    
    .service-detail h3 {
        font-size: 1.25rem;
    }
    
    .service-intro {
        font-size: 1rem;
    }
    
    .section-title::before {
        font-size: 4rem;
        opacity: 0.5;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 