/* ------------------------------
   FONTIT & PERUSASETUKSET
------------------------------ */

html, body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto Condensed', Arial, sans-serif;
    color: #b0b0b0;
    background-color: #0d0d0d;
    text-align: center;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Etusivun tausta */

.index-bg {
    background-color: #000000;
}

/* ------------------------------
   NAVIGAATIO
------------------------------ */

nav {
    background-color: #000;
    padding: 18px 0;
}

nav a {
    color: #b0b0b0;
    text-decoration: none;
    margin: 0 30px;
    font-size: 30px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.2s;
    font-family: 'Bebas Neue', sans-serif;
}

nav a:hover {
    color: #8f1c11;
    transform: scale(1.08);
}

/* ------------------------------
   HERO (etusivu)
------------------------------ */

.hero {
    width: 100%;
    overflow: hidden;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
    filter: brightness(1.0);
}

.hero-content {
    margin-top: 30px;
    margin-bottom: 60px;
}

.hero-content .btn {
    margin-bottom: 35px;
}

.hero-content h2 {
    font-size: 56px;
    color: #bfb6af;
    letter-spacing: 3px;
    font-family: 'Bebas Neue', sans-serif;
    margin-top: 5px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 22px;
    max-width: 850px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ------------------------------
   CTA-NAPPI
------------------------------ */

.btn {
    background: #000;
    color: #b0b0b0;
    padding: 26px 78px;
    text-decoration: none;
    font-size: 32px;
    border-radius: 6px;
    font-weight: bold;
    letter-spacing: 2px;
    transition: 0.25s;
    border: 3px solid #b0b0b0;
    box-shadow:
        inset 0 0 14px rgba(122, 0, 255, 0.45),
        inset 0 0 6px rgba(255, 255, 255, 0.12),
        0 5px 12px rgba(0, 0, 0, 0.7);
    display: inline-block;
}

.btn:hover {
    border: 2px solid #8f1c11;
    box-shadow:
        inset 0 0 18px rgba(143, 28, 17, 0.45),
        inset 0 0 8px rgba(255, 255, 255, 0.18),
        0 7px 16px rgba(143, 28, 17, 0.55);
    transform: scale(1.03);
}

/* ------------------------------
   SISÄSIVUT
------------------------------ */

.inner-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #000;
    filter: contrast(1.15);
}


.inner-page h2 {
    font-size: 56px;
    margin-bottom: 25px;
    color: #bfb6af;
    letter-spacing: 2.5px;
    font-family: 'Bebas Neue', sans-serif;
}

/* ------------------------------
   FOOTER
------------------------------ */

footer {
    background-color: #222;
    padding: 20px 0;
    width: 100%;
    text-align: center;
    margin-top: auto;
}

footer p {
    font-size: 20px;
    margin: 0;
}

/* ------------------------------
   HERRAT – KORTIT
------------------------------ */

.band-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.band-member {
    width: 200px;
    height: 300px;
    background: #111;
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.band-member img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 4px;
    display: block;
}

.band-member p {
    font-size: 18px;
    margin: 0;
    line-height: 1.3;
}

.band-member .bio {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(
        135deg,
        rgba(30, 30, 30, 0.85),
        rgba(50, 50, 50, 0.85)
    );
    border: 1px solid #777;
    border-radius: 6px;
    padding: 4px 6px;
    font-size: 12px;
    line-height: 1.3;
    margin-top: 4px;
    color: #b0b0b0;
    box-shadow:
        inset 0 0 3px rgba(255,255,255,0.15),
        inset 0 0 6px rgba(0,0,0,0.6),
        0 0 4px rgba(0,0,0,0.7);
    overflow: hidden;
    max-height: 55px;
}

/* ------------------------------
   TILAAJALLE & YHTEYS
------------------------------ */

.tilaa-content {
    max-width: 850px;
    padding: 20px 30px;
}

.tilaa-block {
    margin-bottom: 40px;
}

.tilaa-block h3 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #8f1c11;
    letter-spacing: 2px;
    font-family: 'Bebas Neue', sans-serif;
}

.tilaa-block p {
    line-height: 1.6;
    font-size: 22px;
}

/* ------------------------------
   ROCK-REUNUS
------------------------------ */

.rock-border {
    border: 2px solid #0b0403;
    border-radius: 4px;
    padding: 6px;
    background: #111;
    box-shadow: 0 0 18px rgba(255,0,0,0.35);
    transition: all 0.25s ease-in-out;
}

.rock-border:hover {
    box-shadow: 0 0 30px rgba(180,10,15,0.75);
    transform: scale(1.03);
    filter: brightness(110%);
}

/* ------------------------------
   KEIKAT
------------------------------ */

.vuosirivi {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
}

.vuosi {
    cursor: pointer;
    font-size: 1.4em;
    font-weight: bold;
    padding: 10px 15px;
    border-bottom: 2px solid transparent;
    transition: 0.3s;
}

.vuosi:hover {
    color: #cc0000;
    border-color: #cc0000;
}

.keikkalista {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
}

.keikkalista.open {
    max-height: 2000px;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* ------------------------------
   HERO – SOME
------------------------------ */

.hero-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    margin-top: 20px;
}

.hero-title {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-icon {
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    color: black;
    padding: 5px 10px;
    border: 2px solid black;
    border-radius: 6px;
    transition: 0.2s;
}

.social-icon:hover {
    background: black;
    color: white;
}

/* ------------------------------
   BIISILISTA (artistivalinta)
------------------------------ */

#biisilista {
    margin-top: 30px;
}

.biisiotsikko {
    font-size: 18px;
    font-family: 'Bebas Neue', sans-serif;
    cursor: pointer;
    background: #333;
    color: #fff;
    padding: 10px 15px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.biisilista {
    display: none;
    background: rgba(0,0,0,0.6);
    padding: 20px;
    border-radius: 4px;
    margin-top: 10px;
}

.biisilista.open {
    display: block;
}

.biisilista ul {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 4px 20px;
}

/* ------------------------------
   BIISILISTA – ANIMAATIOT
------------------------------ */

@keyframes fadeSlide {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes songSlide {
    0% {
        opacity: 0;
        transform: translateX(-10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.song-title {
    font-size: 26px;
    font-weight: bold;
    margin-bottom: 10px;
    animation: fadeSlide 0.4s ease-out;
}

.song-list li {
    font-size: 20px;
    padding: 6px 0;
    animation: songSlide 0.35s ease-out;
}

/* ------------------------------
   YHTEYS-BOXI
------------------------------ */

.yhteys-box {
    font-size: 24px;
    line-height: 1.7;
    margin-top: 10px;
}

.yhteys-box .icon {
    color: #cc0000;
    margin-right: 10px;
    font-size: 26px;
}

/* ------------------------------
   VIDEORIVI
------------------------------ */

.video-row {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.video-row iframe {
    width: 300px;
    height: 170px;
    border: 3px solid #8f1c11;
    box-shadow: 0 0 10px #8f1c11;
}

/* ------------------------------
   TILAAJALLE-SIVUN LAYOUT
------------------------------ */

.info-section {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 12px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: 0 0 15px rgba(255, 68, 68, 0.2);
    max-width: 900px;
    margin: 30px auto;
    color: #e6e6e6;
    line-height: 1.7;
}

.info-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: #b0b0b0;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #8f1c11;
    border-bottom: 2px solid #8f1c11;
    padding-bottom: 6px;
}

.info-section p {
    font-size: 20px;
    line-height: 1.7;
}

/* ------------------------------
   YHTEYSTIEDOT
------------------------------ */

.contact-section {
    max-width: 900px;
    margin: 30px auto;
    text-align: left;
}

.contact-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 42px;
    color: #b0b0b0;
    margin-bottom: 15px;
}

.yhteys-box {
    background: #222;
    padding: 20px;
    border-radius: 10px;
    border: 2px solid rgba(255, 68, 68, 0.4);
    box-shadow: 0 0 12px rgba(255, 68, 68, 0.25);
}

.yhteys-box p {
    font-size: 20px;
    margin: 8px 0;
    color: #e6e6e6;
}

.icon {
    margin-right: 10px;
}
.partner-logos {
  display: flex;
  gap: 20px;        /* väli logojen väliin */
  margin-top: 15px; /* tilaa some-ikonien alle */
}

.partner-logos img {
  height: 50px;     /* säädä logojen koko */
  object-fit: contain;
}
