/* -----------------------------------------------------------
 * 1. FONTIT
 * ----------------------------------------------------------- */
@font-face {
    font-family: 'JunicodeVF';
    src: url('JunicodeVF-Roman.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}
/* eb-garamond-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'EB Garamond';
  font-style: normal;
  font-weight: 400;
  src: url('eb-garamond-v33-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* -----------------------------------------------------------
 * 2. YLEISET ASETUKSET (BODY)
 * ----------------------------------------------------------- */
body {
    background-color: #f7e6f6; /* VENUS */
    color: #222222; /* Ei aivan pikimusta teksti, retrotyylissä luettavampi */
    font-family: 'EB Garamond', serif; /* Oletusfonttina leipätekstille EB Garamond */
    margin: 0; /* Poistaa selaimeen vakiona tulevat valkoiset reunat */
    padding: 30px 15px; /* Antaa tilaa ylös ja sivuille, ettei teksti osu ruudun reunaan */
}
/* -----------------------------------------------------------
 * 3. PÄÄSÄILIÖ (JOKA PITÄÄ KAIKEN LINJASSA)
 * ----------------------------------------------------------- */
.container {
    max-width: 960px; 
    margin: 0 auto; /* Tämä pitää huolen, että kavennettu laatikko pysyy keskellä ruutua */
}

/* -----------------------------------------------------------
 * 4. YLÄKUVA / LOMITELLUT SVG-PENTAGRAMMIT
 * ----------------------------------------------------------- */
.top-image-container {
    text-align: center;
    margin-bottom: 30px;
}

.top-symbol-svg {
    width: 7em;  /* Kasvatin hieman kokoa suhteessa alakuviin, muuta jos tarpeen */
    height: 7em;
    display: inline-block;
}




/* -----------------------------------------------------------
 * 5. PÄÄOTSIKKO
 * ----------------------------------------------------------- */
.main-title {
    font-family: 'JunicodeVF', 'Times New Roman', serif; /* Käyttää Junicodea, tai varafonttina Times New Romania */
    text-align: center; /* Keskittää otsikon */
    font-size: 2.8em; /* Otsikon koko */
    font-weight: normal; 
    margin-bottom: 20px;
}

/* -----------------------------------------------------------
 * 6. PÄÄLEIPÄTEKSTI (OTSIKON ALLA)
 * ----------------------------------------------------------- */
.main-text {
    font-size: 1.2em; /* Tekstin koko */
    line-height: 1.6; /* Riviväli, tekee tekstistä helppolukuista */
    margin-bottom: 50px; /* Tyhjä tila ennen kolmen kuvan rivistöä */
    text-align: justify; /* Tekstin tasaus molempiin reunoihin (klassinen kirjatyyli) */
    white-space: pre-line;
    /* TAVUTUS LISÄTTY TÄHÄN: */
    -webkit-hyphens: auto; /* Varmistaa toimivuuden Safarilla / Applen laitteilla */
    hyphens: auto;         /* Standardikomento kaikille nykyselaimille */
}

/* -----------------------------------------------------------
 * 7. KOLMEN KUVAN ASSETELU (RIVISTÖ)
 * ----------------------------------------------------------- */
.three-column-grid {
    display: flex; /* Flexbox mahdollistaa asioiden laittamisen rinnakkain joustavasti */
    gap: 30px; /* Kunkin kolmen kuvan/sarakkeen väliin jäävä tyhjä tila */
}

/* -----------------------------------------------------------
 * 8. ALARIVIN KOLME SVG-SYMBOLIA
 * ----------------------------------------------------------- */
.column {
    flex: 1; 
    display: flex;
    flex-direction: column; 
}

.column-symbol-svg {
    width: 10em; /* Voit säätää symbolien visuaalista kokoa ruudulla tästä */
    height: 10em;
    display: block;
    margin: 0 auto 15px auto;
}

/* YHTEISET ASETUKSET KAIKILLE KOLMELLE MERKILLE */
.symbol-left-path,
.symbol-center-path,
.symbol-right-path {
    fill: none;
    stroke-width: 9px;   /*  alkuperäinen 8px! */
    stroke-linecap: butt; /* Takaa, että viivojen päät ovat terävät eivätkä työnny ympyrästä yli */
}

/* Vasen: Punainen Merkurius */
.symbol-left-path {
    stroke: #cc0000; 
}

/* Keski: Valkoinen Maa/Aurinkoristi */
.symbol-center-path {
    stroke: #ffffff; 
}

/* Oikea: Musta Venus */
.symbol-right-path {
    stroke: #222222; 
}
.column-text {
    font-size: 1.1em;
    line-height: 1.5;
    margin: 0;
    text-align: justify;
    white-space: pre-line;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* -----------------------------------------------------------
 * 9. MOBIILIYSTÄVÄLLISYYS (MEDIA QUERY)
 * ----------------------------------------------------------- */
@media (max-width: 768px) {
    .three-column-grid {
        flex-direction: column;
        gap: 40px;
    }

    .main-title {
        font-size: 2.2em;
    }

    /* Lisätty .footer-text tähän samaan sääntöön .main-text kanssa */
    .main-text {
        text-align: left; 
    }
}
/* -----------------------------------------------------------
 * 10. ALAREUNAN TEKSTIKENTTÄ
 * ----------------------------------------------------------- */
.footer-text {
    font-size: 1.2em;
    line-height: 1.6;
    margin-top: 60px; 
    margin-bottom: 20px;
    
    text-align: center; 
    white-space: pre-line; 
    /* TAVUTUS LISÄTTY TÄHÄN: */
    -webkit-hyphens: auto; /* Varmistaa toimivuuden Safarilla / Applen laitteilla */
    hyphens: auto;         /* Standardikomento kaikille nykyselaimille */
}
