@import "colors.css";
@import "typography.css";

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--body-bg-color);
    padding: 0;
    margin: 0;
}

.img-background {
    z-index: -1;
    position: fixed;
    width: auto;
    height: 100vh;
}

.main-column {
    box-shadow: 0 12px 18px rgba(0, 0, 0, 0.2);
    margin-top: 64px;
    margin-bottom: 64px;
    padding: 32px;
    border-radius: 32px;
    background-color: var(--main-bg-color);
    max-width: 55vw;
    display: flex;
    flex-direction: column;
}

.nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
    margin-bottom: 12px;
}

.nav-decor-img {
    width: 5vw;
    height: auto;
}

.panel {
    display: flex;
    flex-direction: row;
    gap: 12px;
    justify-content: space-evenly;
}

.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    gap: 0;
    margin-bottom: 16px;
}

.hero-logo {
    width: 24vw;
    height: auto;
    min-width: 64px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 54px;
    line-height: 1.0;
    color: var(--hero-title-font-color);
    text-shadow: 0 4px 8px rgba(24, 24, 24, 0.5);
}

.descrition-features-list {
    list-style-type: circle;
}

.articles-container {
    width: 24vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.article-card {
    aspect-ratio: 1.0;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    text-decoration: none;
    cursor: pointer;
    background-color: rgb(204, 158, 110);
    border: 1px solid rgb(140, 112, 19);
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.article-card:hover {
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.article-card:active {
    box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    transform: translateY(1px);
}

.article-icon {
    width: auto;
    height: 4.5vw;
}

.article-title {
    font-size: 1.5vw;
    font-weight: bold;
}

.footer-container {
    margin-top: 32px;
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
}

.footer-icon {
    width: auto;
    height: 48px;
}

.footer-caption {
    margin-top: 12px;
    text-align: center;
}