/* oc.css

/* Main ________________ */

html, body {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
}

body {
    margin: 0;
    padding: 0;
    background-color: white;
    font-family: 'Sen', sans-serif;
    }

.page {
    top: 100px;
    left: 0px;
    right: 0px;
    position: absolute;
    box-sizing: border-box;
    max-width: 100%;
    margin: 0px auto;
    padding: 0px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

    @media screen and (max-width: 768px) {
        .page {
            left: 0px;
            right: 0px;
            margin: 0;
            flex-direction: column;
            align-items: center;
        }
    }

.page > * {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}

.separator {
    border: 1px solid #C0C0C0;
    margin: 10px 0; /* Spazio sotto la riga orizzontale */
}

.content {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    position: relative;
}

.container {
    box-sizing: border-box;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    padding: 10px;
    justify-content: space-around; /* Puoi usare anche 'center' se preferisci */
    align-items: flex-start;
    }

.box-in-2 {
    width: calc(50% - 20px); /* 50% per mostrare 2 box in orizzontale, sottrai il padding */
    margin-bottom: 0px;
    box-sizing: border-box;
}
.box-in-3 {
    width: calc(33.33% - 20px); /* 33.33% per mostrare 3 box in orizzontale, sottrai il padding */
    margin-bottom: 0px;
    box-sizing: border-box;
}

.box-in-4 {
    width: calc(25% - 20px); /* 25% per mostrare 4 box in orizzontale, sottrai il padding */
    margin-bottom: 0px;
    box-sizing: border-box;
}

    @media screen and (max-width: 768px) {
        .box-in-2, .box-in-3, .box-in-4 {
            width: 100%;
            text-align: center;
        }
    }

p, td, ul, ol, dt, button { 
    }

p { 
    line-height: 125%;
    font-size: 110%;
    color: #000000; 
    -webkit-text-size-adjust: 120%;
    margin-top: 0px;
    margin-bottom: 0px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    }

p.normal-weight {
  font-weight: 400;
}

p.bold-weight {
  font-weight: 700;
}

.title {
    font-size: 120%;
    font-weight: 800;
    font-variant: normal;
    color: #C0C0C0;
    text-align: center;
    line-height: 150%;
    margin-top: 25px;
    margin-bottom: 10px;
}

.label,
.album-details {
    font-size: 15px;
    color: #C0C0C0; 
    text-transform: uppercase;
}

.label {
    text-align: center;
    margin-bottom: 10px;
    transition: color 0.3s ease; /* Aggiungi una transizione per rendere l'effetto più fluido */
}

.label:hover {
    color: #666; /* Sostituisci con il colore più chiaro desiderato al passaggio del mouse */
}

.album-details {
    text-align: right;
}

.album-details::after {
    content: "";
    display: inline;
}

@media screen and (max-width: 768px) {
    .label, .album-details {
        font-size: 13px;
    }

    .texts { 
        margin-top: 10px;
        margin-bottom: 15px;
    }

    @media (max-width: 600px) {
        div[align="center"] div {
            width: 100%;
            float: none;
            margin-bottom: 10px;
        }
    }
}

.page-numbering,
.page-numbering a {
    color: white;
    text-decoration: none;
}

.page-numbering .link {
    color: white;
}

.page-numbering a:hover {
    color: #ffffff;
}

.page-numbering {
    font-size: 105%;
    letter-spacing: 25px;
    text-transform: uppercase;
    font-weight: lighter;
    text-align: center;
    background-color: gainsboro;
    margin-top: 5px;
    border: 0px dashed #C0C0C0;
    padding: 15px;
    display: inline-block;
    font-family: 'Arial', sans-serif;
}

.page-numbering::before {
    content: '\200B';
    letter-spacing: -25px;
    display: inline-block;
}

.credits-and-more { 
    margin: 10px 0 10px 0;
    background-color: #CCC; 
    padding: 10px 5px 5px 5px;
    }

/* Other Div's ________________ */
	
.cover {
    height: 335px;
    float: center;
    background-size: 100% auto;
    background-attachment: fixed;
    position: static;
}

/* Variety of Fonts ________________ */

.small, .photo { font-size: 90%;
    }

.smaller { font-size: 80%;
    }

.photo {
    margin: 15px 0 15px 0;
    text-align: center;
    }

.white { color: #FFF;
    }

.grey { color: #CCC;
    }

.technical-data {
    font-family: "lucida sans unicode", "lucida grande", sans-serif;
    }

/* Titles ________________ */

h1, h2, h3, h4, h5, h6 { 
    font-family: 'Sen', sans-serif;
}

h1 { font-size: 140%; } 
h2 { font-size: 130%; }
h3 { font-size: 110%; }
h4 { font-size: 100%; }
h5 { font-size: 90%; }
h6 { font-size: 90%; }

/* Images or Text Shadowing/Opacity ________________ */

.shadow {
    /* -webkit-box-shadow: 2px 2px 12px #CCC; */
    box-shadow: 1px 1px 6px #CCC;
}

.shadow-dark {
    /* -webkit-box-shadow: 2px 2px 12px #CCC; */
    box-shadow: 2px 2px 6px #666;
}

#opacity {
    opacity: 0.75;
    filter: alpha(opacity=75)
    }

    /* Si muove sempre! Quindi reimpostalo a #opacity:hover */

:hover#opacity {
    opacity: 1;
    filter: alpha(opacity=100);
    }

/* Various ________________ */

	.fb-like { float: right }
	
/* Lists ________________ */
	
li, ul, ol { color: #666;
	    margin-top: 10px;
        margin-right: 10px;
		}

/* Links ________________ */

a,
a:active,
a:link,
a:visited {
    color: #333;
    text-decoration: none;
}

a:hover,
a:hover.none {
    color: #CCC;
    text-decoration: none;
}

a:visited {
    color: #555;
}

a:link.white,
a:hover.white {
    color: #E4E4E4;
    text-decoration: none;
}

a:hover.white {
    color: #CCC;
    text-decoration: none;
}

/* Various (...) */

.collection-image {
    margin: 0 0 15px 0;
    padding: 0;
    width: 100%;
}
.folder {
    display: flex;
}
.collection-image img {
    width: 100%;
}

#video-container {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

video {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Impedisce la distorsione del video */
}

.space {
    margin-bottom: 15px;
}

.space-more {
    margin-bottom: 30px;
}

.none {
    display: none;
}

/* (cc)2002-2024 OnClassical */