@layer reset, variables, components, utilities;

@import "./reset.css" layer(reset);
@import "./variables.css" layer(variables);
@import "./utilities.css" layer(utilities);

@import "../component/AccProfiles/style.css" layer(components);
@import "../component/NavBar/style.css" layer(components);
@import "../component/Categories/style.css" layer(components);
@import "../component/Cards/style.css" layer(components);
@import "../component/NoMovie/style.css" layer(components);
@import "../component/MovieDetail/style.css" layer(components);

body{
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--ff-roobert);
    color: var(--color-text);
    background: var(--color-bg);
}

header{
    position: sticky;
    top: 0;
    z-index: 10;
    width: 100%;
}

.card__container{
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding-inline: 0.5rem;
}

.footer {
    display: flex;
    width: 100%;
    margin-top: 2rem;
    padding: 1rem;
    color: white;
    background-color: var(--color-dark-blue);
}

.footer__content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__left {
    display: flex;
    align-items: center;
    margin-right: 1rem;
}

.footer__right {
    display: flex;
    gap: 2rem;
}

.footer__right a {
    display: flex;
    flex-direction: row;
    align-items: center;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer__right a:hover {
    text-decoration: underline;
}