:root {
    --primary_color: #61b136;
    --secondary_color: #bbdc2f;
    --tertiary_color: #e1eec7;
    --light_color: #fcfcfc;
    --dark_color: #161616;
    --full_view: 95vh;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Roboto, sans-serif;
    line-height: 1.5;
    background: var(--tertiary_color);
    color: #fff;
}

a {
    color: #fff;
    text-decoration: none;
}

p {
    padding-bottom: 1rem;
}

ul {
    list-style: none;
    color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 0.55rem;
    line-height: .75;
}

section {
    height: var(--full_view);
}

/* Utility */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 0 2rem;
    overflow: hidden;
}

.card {
    background: var(--secondary_color);
    padding: 2rem;
    display: grid;
    justify-content: center;
    align-items: center;
    grid-template-columns: 1fr 3fr;
    grid-gap: 1.5rem;
    border-radius: 10px;
}

.btn {
    background: var(--secondary_color);
    border-radius: 10px;
    color: var(--light_color);
    margin: auto;
    padding: 1rem;
}

.btn:hover {
    background: var(--light_color);
    color: var(--dark_color);
}

/* Showcase */
#showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    background: rgba(97, 177, 54, 0.5);
    height: 100vh;
    position: relative;
}

#showcase:before {
    content: '';
    background: url("../img/Neta4.jpg") no-repeat center top/cover;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.name-container {
    grid-column: 1 / span 1;
    margin: 0;
    justify-self: start;
    margin-top: 1.75rem;
}

.name-h {
    display: inline-block;
    color: #fff;
    border: 5px solid #fff;
    text-align: left;
    font-size: 3rem;
}

.name-h2 {
    display: inline-block;
    color: #fff;
    border: 5px solid #fff;
    text-align: left;
    font-size: 1rem;
    margin: .2rem;
    padding: .5rem .2rem 0 .2rem;
}

.name-h h1 {
    margin: 1.5rem .75rem;
}


/* Main Navigation */
.main-nav {
    grid-column: 3;
    display: flex;
}

.main-nav .container {
    padding: .5rem;
    margin: 2rem auto;
}

.main-nav ul {
    display: flex;
}

.main-nav ul li a {
    font-size: .75rem;
    font-weight: bold;
    padding: 0.75rem 1.75rem;
}

.main-nav ul li a:hover {
    color: var(--secondary_color);
    border-bottom: 2px solid var(--secondary_color);
}

/* Sub Navigation */

.sub-nav {
    position: sticky;
    top: 0;
    background: var(--primary_color);
}


.sub-nav .list-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-gap: 5rem;
    justify-items: center;
    align-items: center;
    margin: 0 auto;
}

.sub-nav ul li a.current {
    color: var(--secondary_color);
    border-bottom: 1px solid var(--secondary_color);
}

.sub-nav ul li a:hover {
    color: var(--tertiary_color);
    border-bottom: 1px solid var(--tertiary_color);
}

/* Footer */
.main-footer {
    background: var(--primary_color);
}

.main-footer .footer-info {
    padding: 3rem;
    display: flex;
    justify-content: center;
}

.main-footer .footer-info ul {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-footer .footer-info ul li {
    padding: 1rem;
    border-bottom: 1px solid var(--light_color);
    text-align: justify;
}

.main-footer .footer-info ul li:last-child {
    border: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 1.5rem;
}


/* Film Page */
.film-showcase {
    height: var(--full_view);
    display: grid;
    align-items: center;
    justify-content: center;
    grid-template-rows: 2fr 3fr 1fr;
}

.film-showcase .showcase-title {
    margin-bottom: 0;
    color: var(--primary_color);
    text-align: center;
}

.film-showcase .showcase-title h2 {
    color: var(--primary_color);
    padding: 2rem;
    text-align: center;
    line-height: 1.5rem;
}

.film-showcase .films {
    display: grid;
    grid-gap: 1rem;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 1fr);
}

.film-showcase .films #main-film {
    grid-column: 1/span 2;
    grid-row: 1/span 2;
    height: 100%;
    width: 100%;
}

.awards {
    height: var(--full_view);
    display: grid;
    background: url("../img/uluru.jpg") no-repeat center center/cover;
}

.awards .card .portrait {
    display: grid;
    align-items: center;
    justify-content: center;
}

.awards .card .portrait div {
    background: url("../img/Neta2.jpg") no-repeat center center/cover;
    border-radius: 50%;
    height: 200px;
    width: 200px;
}

.awards .card .portrait-text {
    text-align: center;
    color: var(--dark_color);
}

.awards .card .portrait-text span {
    font-style: italic;
}

.filmography {
    background: var(--primary_color);
    height: max-content;
    padding-bottom: 10rem;
}

.filmography .container {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 1rem;
}

.filmography .container ul li {
    padding-top: 1.2rem;
    border-bottom: 1px solid var(--light_color);
    text-align: center;
}

.filmography .container ul li:last-child {
    border: none;
}

/* Talks page */
.talks-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.talks-showcase #laurie {
    background: url("../img/neta_laurie.jpg") no-repeat top center/cover;
}

.talks-showcase p {
    padding: 4rem;
    font-size: 1.5rem;
    color: var(--primary_color);
    text-align: justify;
}

.talks-page-info {
    display: grid;
    align-items: center;
    justify-content: center;
}

.talks-page-info p {
    font-size: 1.2rem;
}

.talks-list {
    height: max-content;
    background: var(--secondary_color);
}

.talks-list .container {
    padding: 4rem;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
    color: var(--dark_color);
    text-align: center;
}

.talks-list .container ul li {
    color: var(--dark_color);
    padding-top: 1.2rem;
    border-bottom: 1px solid var(--dark_color);
    text-align: center;
}

.talks-list .container ul li:last-child {
    border: none;
}

/* Contact Page */
.contact-page {
    background: var(--tertiary_color);
    height: var(--full_view);
    display: grid;
    justify-items: center;
    align-items: center;
    grid-template-columns: 1fr 1fr;
}

.contact-page .contact-picture {
    background: url("../img/Neta1.jpg") no-repeat center right/cover;
    width: 100%;
    height: 100%;
}

.contact-page .card {
    text-align: center;
    color: var(--dark_color);
}

.contact-page .card p {
    padding-bottom: 1rem;
    text-align: justify;
}

.contact-page .card .contact-list {
    padding: 1rem;
    border-radius: 10px;
    background: var(--light_color);
}

.contact-page .card li {
    border-bottom: 1px solid var(--dark_color);
    padding-bottom: 1.5rem;
    padding-top: 1rem;
    text-align: center;
    color: var(--dark_color);
}

.contact-page .card li:last-child {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    border-bottom: none;
}

.contact-page .card li a {
    color: var(--dark_color);
}
