/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Tinos:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* General CSS attributes for the page */

a {
    text-decoration: none;
}

.backgroundPic {
    position: fixed;
    background-image: url("resources/IMG_3011.jpg");
    background-position: 85%;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

main a {
    color: rgb(184, 121, 92);
    font-weight: bold;
}

/* Header nav bar for all pages */

header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    width: 100.1vw;
    background-color: rgba(0, 0, 0, 0.5);
    margin-left: -9px;
    font-family: 'Tinos';
}

header a {
    color:rgba(190, 87, 41, 1);
}

/* Actual content of the page */

/* "Works" page title */

main {
    color: rgba(190, 87, 41, 1);
    font-family: "Tinos";
}

/* Work Squares */

#workList {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;

    gap: 5rem;

    max-width: 100vw;
    font-size: 1.2rem;

    margin-top: 20px;
}

.film {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.film a {
    text-decoration: none;
    color: rgb(255, 255, 255);
    font-weight: normal;
}

.filmSquare {
    min-height: 170px;
    min-width: 170px;


    position: relative;
    text-align: center;

    border: 2.5px solid rgba(255, 255, 255, 1); /* unhovered solid border */

    display: grid;
    place-items: center; /* Make inside text centered */

    opacity: 0.8;

    font-family: "Playfair Display";
}

.filmCredits {
    font-size: 1rem;
}

.filmCredits a {
    color: rgb(184, 121, 92);
    font-weight: bold;
}

.filmDescription {
    font-size: 1.2rem;
    text-align: justify;
    background-color: rgba(0, 0, 0, 0.5);
    padding-left: 0.6rem;
    padding-right: 0.6rem;
    text-indent: 2rem;
}

.filmDescription a {
    color: rgb(184, 121, 92);
    font-weight: bold;
}

hr {
    width: 50%;
}

.divBar {
    background-color: rgba(190, 88, 41, 0.5);
    color: rgba(190, 88, 41, 0);
    font-size: 0.5rem;
    text-align: center;
    width: 100%;
}





/* Define pictures for each work square */

.filmSquare.ursula {
    background-image: url(/resources/ursula.png);
    background-size: cover;
}

.filmSquare.rowanVessels {
    background-image: url(/resources/Vessels-of-Home_Stills_Rowan-Moonlion-07.jpg);
    background-size: cover;
}

.filmSquare.rowanQueer {

    background-image: url(/resources/Queer-Utopia_NMoonlion-59.jpg);
    background-size: cover;
}

.filmSquare.queerpera {

    background-image: url(/resources/);
    background-size: cover;
}
