* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Knockout', sans-serif;
    line-height: 1.6;
    color: #fff;
    background: #000;
    position: relative;
    min-height: 100vh;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('assets/judvelia_bg.jpg') no-repeat center 25%;
    background-size: contain;
    opacity: 0.4;
    z-index: -1;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -2;
}

header {
    background: rgba(0, 0, 0, 0.95);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 2px;
    font-family: 'Knockout', sans-serif;
}

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

nav a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: color 0.3s;
    font-family: 'Knockout', sans-serif;
}

nav a:hover {
    color: #888;
}

section {
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.7);
    padding: 5rem 5%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero {
    position: relative;
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    padding-top: 5rem;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    margin-bottom: 1rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    font-family: 'Knockout', sans-serif;
}

.hero p {
    position: relative;
    z-index: 2;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    letter-spacing: 0.1em;
    opacity: 0.9;
    font-family: 'Knockout', sans-serif;
}

.hero p:hover {
    opacity: 1;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.music-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 2rem auto;
    max-width: 1400px;
    align-items: start;
}

.music-item, .video-item {
    background: rgba(0, 0, 20, 0.3);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 0 30px rgba(0, 149, 255, 0.1);
    display: flex;
    flex-direction: column;
}

.music-item h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: #fff;
    text-align: left;
    text-transform: lowercase;
    padding-left: 20px;
    font-family: 'Knockout', sans-serif;
}

.video-item {
    position: relative;
}

.music-item iframe {
    height: 452px;
    flex-grow: 1;
}

.artist-video {
    width: 100%;
    height: 452px;
    object-fit: cover;
    border-radius: 12px;
    filter: brightness(1.1) contrast(0.95);
    transition: all 0.3s ease;
    margin-top: 0;
}

.artist-video:hover {
    filter: brightness(1.2) contrast(0.9);
    transform: scale(1.01);
}

.music-section {
    background: rgba(0, 0, 20, 0.8);
    backdrop-filter: blur(10px);
}

.music-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-transform: none;
    font-weight: normal;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-family: 'Knockout', sans-serif;
}

.about-content {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.5rem;
    background: rgba(0, 0, 20, 0.4);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: inset 0 0 100px rgba(0, 149, 255, 0.1);
}

.image-container {
    flex-shrink: 0;
    width: 100%;
    max-width: 500px;
}

.about-content img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 0 40px rgba(0, 149, 255, 0.15);
    transition: all 0.3s ease;
    filter: brightness(1.1) contrast(0.95);
    object-fit: cover;
    height: auto;
    aspect-ratio: 3/4;
}

.about-content img:hover {
    transform: scale(1.02);
    box-shadow: 0 0 50px rgba(0, 149, 255, 0.25);
    filter: brightness(1.15) contrast(0.9);
}

.about-section {
    background: rgba(0, 0, 20, 0.8);
    backdrop-filter: blur(10px);
}

.about-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    margin-top: 1rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-transform: none;
    font-weight: normal;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-family: 'Knockout', sans-serif;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Knockout', sans-serif;
}

.social-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    padding: 1rem;
    margin-top: 2rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    border: 2px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    min-width: 180px;
    justify-content: center;
    font-family: 'Knockout', sans-serif;
}

.social-link i {
    font-size: 1.4rem;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Yksilölliset hover-efektit eri palveluille */
.social-link:hover i.fa-instagram {
    color: #E1306C;
}

.social-link:hover i.fa-facebook {
    color: #4267B2;
}

.social-link:hover i.fa-spotify {
    color: #1DB954;
}

.contact-section {
    background: rgba(0, 0, 20, 0.8);
    backdrop-filter: blur(10px);
}

footer {
    text-align: center;
    padding: 2rem;
    background: #111;
    color: #fff;
}

.bio-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.bio-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #e0e0e0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-family: 'Knockout', sans-serif;
}

.bio-text p:first-of-type {
    font-size: 1.2rem;
    color: #fff;
}

.contact-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.manager-info {
    text-align: center;
    margin-bottom: 3rem;
}

.manager-info h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-family: 'Knockout', sans-serif;
}

.welcome-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-family: 'Knockout', sans-serif;
}

.invitation-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-family: 'Knockout', sans-serif;
}

.services-list {
    color: white;
    list-style: none;
    margin: 2rem 0;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 2rem auto;
}

.services-list li {
    margin-bottom: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.services-list li:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.1);
}

.services-list a {
    color: white;
    text-decoration: none;
}

.services-list a:hover {
    color: #4A90E2;
}

.manager-contact {
    margin: 3rem 0;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    display: inline-block;
}

.contact-intro {
    margin-bottom: 1.5rem;
    color: #e0e0e0;
    font-family: 'Knockout', sans-serif;
}

.manager-name {
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: #fff;
    font-family: 'Knockout', sans-serif;
}

.manager-phone, .manager-email {
    color: #e0e0e0;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    font-family: 'Knockout', sans-serif;
}

.manager-phone:hover, .manager-email:hover {
    color: #fff;
}

.manager-phone a,
.manager-email a {
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.manager-phone i,
.manager-email i {
    font-size: 1.2rem;
    width: 1.5rem;
    text-align: center;
}

.manager-phone a:hover {
    color: #25D366; /* WhatsApp vihreä */
}

.manager-email a:hover {
    color: #4A90E2; /* Sähköpostin sininen */
}

.closing-text {
    font-style: italic;
    color: #e0e0e0;
    margin-top: 2rem;
    line-height: 1.8;
    font-family: 'Knockout', sans-serif;
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    letter-spacing: 0.1em;
    text-transform: none;
    font-weight: normal;
    text-shadow: 0 0 15px rgba(255, 255, 255, 0.3);
    font-family: 'Knockout', sans-serif;
}

@media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 0.5rem;
    }
    
    nav ul {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin: 1rem 0;
    }
    
    nav a {
        display: block;
        padding: 0.5rem;
        text-align: center;
    }

    .language-selector {
        margin: 1rem 0;
        width: 100%;
    }

    .language-btn {
        width: 100%;
        justify-content: center;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 8vw, 4rem);
        margin-top: 2rem;
    }

    .hero p {
        font-size: 1.2rem;
        padding: 0 1rem;
    }

    .music-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
    
    .music-item iframe,
    .artist-video {
        height: 300px;
    }

    .about-content {
        flex-direction: column;
        padding: 1rem;
        gap: 2rem;
    }
    
    .image-container {
        width: 100%;
        max-width: 100%;
    }

    .bio-text {
        padding: 0;
    }

    .bio-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .social-links {
        flex-direction: column;
        gap: 0.5rem;
    }

    .social-link {
        width: 100%;
        padding: 0.8rem;
        font-size: 1rem;
    }

    .manager-info {
        padding: 1rem;
    }

    .services-list li {
        padding: 0.8rem;
        font-size: 0.9rem;
    }

    .manager-contact {
        padding: 1rem;
        margin: 1.5rem 0;
    }

    section {
        padding: 3rem 1rem;
    }

    h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(2rem, 7vw, 3rem);
    }

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

    .music-item iframe,
    .artist-video {
        height: 250px;
    }

    .manager-contact {
        font-size: 0.9rem;
    }

    .manager-phone a,
    .manager-email a {
        gap: 0.5rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .music-grid {
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .about-content {
        padding: 2rem;
        gap: 3rem;
    }

    .bio-text p {
        font-size: 0.95rem;
    }
}

.language-selector {
    position: relative;
    margin-left: 2rem;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    cursor: pointer;
    color: #fff;
    transition: all 0.3s ease;
    font-family: 'Knockout', sans-serif;
}

.language-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.current-flag {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    border-radius: 10px;
    padding: 0.5rem;
    margin-top: 0.5rem;
    display: none;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.language-dropdown.show {
    display: block;
}

.lang-option {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 1rem;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
    font-family: 'Knockout', sans-serif;
}

.lang-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lang-option img {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
}

@font-face {
    font-family: 'Knockout';
    src: url('assets/fonts/Knockout-HTF94-UltmtSumo.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

/* Varmistetaan että otsikot käyttävät Knockoutia */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Knockout', sans-serif;
}

/* Varmistetaan että navigaatio käyttää Knockoutia */
.nav-links a {
    font-family: 'Knockout', sans-serif;
}

/* Muut elementit joissa halutaan käyttää Knockoutia */
.logo {
    font-family: 'Knockout', sans-serif;
} 