:root {
  --color-primary: #4f46e5;
  --color-primary-hover: #4338ca;

  --color-text: #111827;
  --color-text-muted: #6b7280;
  --color-text-inverse: #ffffff;

  --color-bg: #ffffff;
  --color-bg-disabled: rgb(222, 222, 222);
  --color-surface: #f9fafb;

  --color-border: #e5e7eb;

  /* --success: #16a34a;
  --warning: #d97706;
  --error: #dc2626; */
}

body {
    padding: 0;
    margin: 0;
    width: 100%;
    min-height: 100vh;
    font-family:Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#main-content {
    flex: 1;
    display: flex;
    width: 100%;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: var(--color-bg);
}

#header {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 10vh;
    background-color: var(--color-surface);
}

#links-dropdown-btn {
    display: none;
    margin-right: 25px;
}

#links-container {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.page-link {
    text-align: center;
    text-decoration: none;
    color: var(--color-text);
    margin: 0px 20px;
    transition: transform 0.1s ease;
}

.page-link:hover {
    color: var(--color-primary-hover);
    transform: scale(1.1);
}

.current-page {
    font-weight: bold;
    color: var(--color-primary);
}

#logo-container {
    width: 60px;
    height: 60px;
    margin-left: 50px;
    background-image: url("jojobrico.png");
    background-size: contain;
}

#title {
    font-size: 1.6rem;
    display: flex;
    justify-content: center;
    margin: 50px;
    font-weight: bold;
}

#footer {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    width: 100%;
    height: 10vh;
    color: var(--color-text);
    background-color: var(--color-surface);
}

.horizontal-center {
    display: flex; 
    flex-direction: row; 
    justify-content: center;
}


@media (max-width: 768px) {
    #links-dropdown-btn {
        display: block;
    }

    #links-container {
        position: absolute;
        flex-direction: column;
        height: 40vh;
        background-color: var(--color-bg);
        top: 50px;
        right: 10px;
        display: none;
        border: 1px solid var(--color-border);
        border-radius: 10px;
    }
}
