@font-face {
font-family: "Cy";
src: url("fonts/Cy_Text.otf") format("opentype");
font-weight: 400; /* normal */
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Cy";
src: url("fonts/Cy_Text_SemiBold.otf") format("opentype");
font-weight: 600; /* semibold */
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Cy";
src: url("fonts/Cy_Text_Bold.otf") format("opentype");
font-weight: 700; /* bold */
font-style: normal;
font-display: swap;
}

@font-face {
font-family: "Cy";
src: url("fonts/Cy_Text_ExtraBold.otf") format("opentype");
font-weight: 800; /* extra bold */
font-style: normal;
font-display: swap;
}

html, body {
    background-color: black;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 100%;
    font-family: "Cy", sans-serif;
    font-weight: 400;
}



.banner {
    width: 63.6%;
    height: auto; /* or a fixed height if needed */
    overflow: hidden;
    background-color: black;
    display: flex;
    justify-content: center; /* horizontal centering */
    align-items: right;
    float: right;
}

.banner img {
    display: block;
    width: 100%;
    height: 100%
}
.banner h1 {
    margin: 0;
    font-size: 3rem;
}

.banner p {
    margin: 0;
    font-size: 1.5rem;
}


.container {
    width: 63.009%;
    height: 75.4%; /* Maximum width for large screens */
    padding-top: 25px; /* Add padding inside the container */
    background-color: #0A0A0A; /* White background for content */
    padding-left: 15px;

    display: flex;
    flex-direction: column;
    align-items: center; /* center image horizontally */
    text-align: left; /* align text to the right */
    float: right;

    a:link {
        text-decoration: none;
        color: A7A6A6;
    }

    a:visited {
        text-decoration: none;
        color: A7A6A6;
    }

    a:hover {
        text-decoration: underline;
        color:darkgoldenrod;
    }

    a:active {
        text-decoration: underline;
        color:darkgoldenrod;
    }

}

.container img{
    padding-bottom: 30px;
}

.container p{
    color: #A7A6A6;
}
.container h1{
    color: darkgoldenrod;
}
.container h4{
    color: #A7A6A6;
}
.container h3{
    color: #A7A6A6;
}

.link{
    overflow: hidden;
    display: flex; /* Add this */
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 0.15fr));
    gap: 20px;
    padding: 10px;
}

/* Subcontainers */
.sub-container {
    position: relative; /* Needed for absolute ribbons */
    background-color: #0A0A0A;
    overflow: hidden;
}

/* Image */
.sub-container img {
    width: 100%;
    height: auto;
    display: block;
    /* Make sure it's not positioned or with high z-index */
    position: relative;
    z-index: 0;
}

/* Ribbons */
.ribbon {
    position: absolute;
    color: darkgoldenrod;
    padding: 5px 10px;
    font-size: 0.8rem;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(3px);
    z-index: 2;
    border-radius: 0 4px 4px 0;
    max-width: 80%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Format ribbon – bottom left */
.ribbon.format {
    font-size: .75rem;
    top: 65px;
    left: 0;
    background-color: dimgray;
}

.ribbon.artist {
    font-size: .75rem;
    top: 8px;
    left: 0px;
    background-color: dimgray;
}

.sub-link {
    text-decoration: none; /* Remove underline */
    color: inherit;         /* Inherit text color */
    display: block;         /* Let it wrap the full container */
}

.sub-link:hover .sub-container {
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    transform: scale(1.02);
    transition: transform 0.2s ease;
}


.center-image {
    align-self: center; /* only centers the image horizontally */
    align-items: center;
    flex-direction: column;
}

.sidebar{
    width: 36.4%;
    height: 100%; /* Maximum width for large screens */
    background-color: #0E0E0E; /* White background for content */

    justify-content: center;
    align-items: center;
    text-align: center;
    float: left;

    a:link {
        text-decoration: none;
        color: #A7A6A6;
    }

    a:visited {
        text-decoration: none;
        color: #A7A6A6;
    }

    a:hover {
        text-decoration: underline;
        color:darkgoldenrod;
    }

    a:active {
        text-decoration: underline;
        color:darkgoldenrod;
    }

}

.sidebar * {
    padding: 15px;
}

.sidebar h1{
    font-size: 2.5rem;
    color: goldenrod;
}

.sidebare h2{
    font-size:1.8rem
}