* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --accent-color: #C8B08A;
}

body {
    background: #0a0a0a;
    color: #f2f2f2;
    font-family: "Montserrat", sans-serif;
}
h1, h2 {
    font-family: "Playfair Display", serif;
    font-weight: 400;
}

/* NAVIGATION */

header nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.logo img {
    width: 140px;
    height: auto;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: .5px;
}

nav {
    z-index: 10;
}

/* HERO */

.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background-image:
        linear-gradient(
            rgba(0,0,0,.72),
            rgba(0,0,0,.50),
            rgba(0,0,0,.70)
        ),
        url("../images/hero.jpg");

    background-size:cover;
    background-position:center;
}

    .hero h1 {
        font-size: clamp(65px, 10vw, 130px);
        letter-spacing: -1px;
        font-weight: 400;
        line-height: 1;
        text-transform: none;
    }

    .hero p{
        margin-top:22px;
        font-size:15px;
        letter-spacing:2px;
        font-weight:300;
        color: var(--accent-color);
    }

    .hero-content {
        animation: fadeIn 2s ease forwards;
        max-width:1200px;
        padding:0 30px;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
 
/* PORTFOLIO SECTION */

.portfolio-section {

    min-height:80vh;
    padding:140px 80px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;

}

.section-content h2 {

    font-family:"Playfair Display", serif;
    font-size:clamp(60px, 10vw, 120px);
    font-weight:400;
    letter-spacing:-3px;

}

.section-content p {

    margin-top:20px;
    color:var(--accent-color);
    letter-spacing:0px;

}

.section-content a {

    display:inline-block;
    margin-top:50px;
    color:white;
    text-decoration:none;
    font-size:14px;

}

/* ACTRESS SECTION */

.actress-section {

    display:flex;
    justify-content:center;
    align-items:center;
    gap:60px;

}

.actress-image img {

    width:220px;
    height:330px;
    object-fit:cover;

}

.actress-image.left {

    transform:translateY(-40px);

}

.actress-image.right {

    transform:translateY(40px);

}

/* FILMMAKER SECTION */

.filmmaker-section {
    background: #0a0a0a;
}

.director-statement {
    margin: 35px auto;
    max-width: 620px;
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-style: italic;
    font-weight: 400;
    line-height: 1.4;
    color: white!important;
    text-transform: lowercase;
}

.current-projects{
    width:100%;
    max-width:1200px;
    margin:90px auto 0;
    text-align:left;
}

.current-projects h3{
    font-family:"Montserrat",sans-serif;
    font-size:20px;
    letter-spacing:0px;
    margin-bottom:10px;
    text-align:left;
}

.projects-grid{
    display:grid;
    grid-template-columns:repeat(2, minmax(0,1fr));
    gap:60px 100px;
}

.project-link{
    display:block;
    text-decoration:none;
    color:inherit;
    transition:opacity .25s ease;
}

.project-link:hover{
    opacity:.65;
}

.project h4{
    font-family:"Playfair Display",serif;
    font-size:30px;
    font-weight:400;
    line-height:1.2;
    letter-spacing:0px;
    margin:0;
}

.project-number{
    font-family:"Montserrat",sans-serif;
    font-size:14px;
    letter-spacing:2px;
    color:var(--accent-color);
    display:inline-block;
    width:75px;
    margin-right:5px;
    vertical-align:super;
}

.project p{
    margin-left: 90px;
    font-family:"Montserrat",sans-serif;
    font-size:14px;
    letter-spacing:3px;
    text-transform:uppercase;
    color:var(--accent-color);
}

/* FOOTER */

footer {

    border-top:1px solid rgba(255,255,255,.08);
    margin-top:120px;
    padding:80px 60px;
    text-align:center;

}


.footer-name {

    font-family:"Montserrat", serif;
    font-size:18px;
    font-weight:200;
    letter-spacing:0px;
    margin-bottom:1px;

}


.footer-role {

    color:var(--accent-color);
    font-size:12px;
    letter-spacing:2px;
    text-transform:lowercase;
    font-weight:200;
    margin-bottom:15px;

}


.footer-links {

    display:flex;
    justify-content:center;
    gap:35px;

}


.footer-links a {

    color:#f2f2f2;
    text-decoration:none;
    font-size:13px;
    letter-spacing:0px;
    font-weight:500;
    transition:color .3s ease;

}


.footer-links a:hover {

    color:var(--accent-color);

}

/*FOR PHONES*/
@media (max-width:768px) {

    nav {
        padding:25px;
    }

    .nav-links {
        gap:15px;
    }

    .actress-section {
        flex-direction:column;
    }

    .projects-grid {
        grid-template-columns:1fr;
    }

}