/* Fonte medieval */
@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&display=swap');

/* Layout base */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    background: url('../img/background.jpg') no-repeat center center fixed;
    background-size: cover;
    color: #f5e6c8;
    font-family: 'MedievalSharp', cursive;
}

/* Área central cresce para empurrar o footer */
.main-content {
    flex: 1;
    display: flex;
    justify-content: center;   /* centraliza horizontalmente */
    align-items: center;       /* centraliza verticalmente */
    flex-direction: column;
    position: relative;
    z-index: 2;
}

/* Camada escura */
.overlay {
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none; /* impede que bloqueie cliques */
}

/* Títulos */
h1, h2, h3 {
    text-shadow: 3px 3px 8px #000;
}

/* Botões estilo medieval */
.btn-medieval {
    width: 250px;
    margin: 10px;
    font-size: 1.3rem;
    padding: 12px;
    border: 2px solid #d4b483;
    background: rgba(60, 40, 20, 0.8);
    color: #f5e6c8;
    transition: 0.3s;
}

.btn-medieval:hover {
    background: rgba(120, 80, 40, 0.9);
    transform: scale(1.05);
}

/* Cards e caixas */
.box-medieval {
    background: rgba(0, 0, 0, 0.65);
    border: 2px solid #d4b483;
    padding: 20px;
    border-radius: 10px;
}

/* MENU SUPERIOR MEDIEVAL */
.medieval-nav {
    background: rgba(40, 20, 10, 0.85);
    border-bottom: 3px solid #d4b483;
    font-family: 'MedievalSharp', cursive;
    position: relative;
    z-index: 3;
}

.medieval-title {
    font-size: 1.8rem;
    color: #d4b483 !important;
    text-shadow: 2px 2px 4px #000;
}

.medieval-link {
    color: #f5e6c8 !important;
    font-size: 1.2rem;
    margin-left: 15px;
    transition: 0.3s;
}

.medieval-link:hover {
    color: #d4b483 !important;
    transform: scale(1.05);
}

/* RODAPÉ MEDIEVAL */
.medieval-footer {
    background: rgba(40, 20, 10, 0.85);
    border-top: 3px solid #d4b483;
    color: #f5e6c8;
    font-family: 'MedievalSharp', cursive;
    text-shadow: 2px 2px 4px #000;
    position: relative;
    z-index: 3;
}
