:root {
    --bg_color: #221D21;
    --white: #FFFFFF;
    --secondarytext_color: #D1D1D1;
    --hero_bg: url('imgs/dark-hero-bg.jpg');
    --button_inset: rgba(0, 0, 0, 0.25);
    --black: #000000;
}

.light-mode {
    --bg_color: #DDE2DE;
    --white: #000000;
    --secondarytext_color: #221D21;
    --hero_bg: url('imgs/light-hero-bg.jpg');
    --button_inset: rgba(255, 255, 255, 0.25);
    --black: #ffffff;
}

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

body {
    position: relative;
    margin: 0 auto;
    background-color: var(--bg_color);
}

/* text styles */

@font-face {
    font-family: "Marishka";
    src: url(fonts/Marishka\ Roseville.ttf);
}

@font-face {
    font-family: "Roberto";
    src: url(fonts/Roberto-Regular.ttf);
}

h1 {
    font-size: 96px;
    color: var(--secondarytext_color);
    text-align: center;
}

h2 {
    font-size: 42px;
    color: var(--white);
}

h3 {
    font-size: 36px;
    color: var(--white);
}

h4 {
    font-size: 24px;
    color: var(--white);
}

h5 {
    font-size: 20px;
    color: var(--white);
}

.marishka-font {
    font-family: "Marishka";
}

.roberto-font {
    font-family: "Roberto";
}

.josefin-med {
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
}

/* text styles */


/* header start */

header {
    position: fixed;
    padding-right: 100px;
    padding-left: 100px;
    width: 100%;
    height: 100px;
    background-color: var(--bg_color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-shadow: 1px 1px 6px var(--white);
}

/* dark-light */
  
.dark-light-button {
    position: relative;
    width: 78px;
    height: 36px;
    background: var(--white);
    border: none;
    border-radius: 40px;
    cursor: pointer;
    box-shadow: 0 2px 2px 0 var(--button_inset) inset;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: space-between;
    padding: 2px 4px;
    transition: all 0.4s ease;
}
  
.icon {
    width: 30px;
    height: 30px;
}
  
.slider {
    position: absolute;
    top: 3px;
    left: 4px;
    width: 30px;
    height: 30px;
    background: var(--bg_color);
    border-radius: 40px;
    transition: all 0.4s ease;
}
  
.light-mode .slider {
    left: 45px;
    background: var(--black);
}

/* dark-light */


/* header end */


/* hero start */

main {
    padding-top: 100px;
}

.hero {
    background-image: var(--hero_bg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 100px;
}

#hero-text1 {
    color: var(--secondarytext_color);
}

/* hero end */


/* movies start */

.movies {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    padding-bottom: 48px;
}

#movie-date1 {
    font-family: "Josefin Sans";
    font-weight: 700;
    padding-left: 32px;
}

#movie-date2 {
    font-family: "Josefin Sans";
    font-weight: 700;
    padding-left: 32px;
}

#fridayMovies {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 32px;
}

#saturdayMovies {
    display: flex;
    gap: 36px;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    padding-left: 32px;
}

.movie {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
}

.movie img {
    width: 360px;
    height: auto;
}

.movie-title {
    font-family: "Josefin Sans";
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    max-width: 360px;
}

.movie-director {
    font-family: "Josefin Sans";
    font-weight: 400;
    color: var(--white);
}

.info-button {
    background-color: var(--secondarytext_color);
    color: var(--bg_color);
    border: none;
    border-radius: 8px;
    box-shadow: 0 2px 14.1px 0 var(--button_inset) inset, 0 4px 4px 0;
    padding: 12px 24px;
    cursor: pointer;
    font-family: "Josefin Sans";
    font-size: 20px;
    font-weight: 700;
}

/* movies end */


/* footer start */

footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 32px 100px;
    background-color: var(--black);
    gap: 32px;
}

.footer-content {
    display: flex;
    align-items: center;
    gap: 200px;
}

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.platforms {
    display: flex;
    gap: 12px;
}

.line {
    width: 100%;
    height: 1px;
    background-color: var(--white);
}

#socials {
    font-family: "Josefin Sans";
    font-weight: 400;
    line-height: 150%;
    color: var(--white);
}

#copyrights {
    font-family: "Josefin Sans";
    font-weight: 200;
    color: var(--white);
    font-size: 16px;
}

/* footer end */


