/* 
    ALAPVETŐ BEÁLLÍTÁSOK ÉS TIPOGRÁFIA
    Ez a fájl felel az oldal „csontvázáért” és a mindenhol megjelenő gombokért.
*/
body, html {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-family: 'Montserrat', sans-serif;
    background-color: #f4f4f4;
}

main {
    flex: 1 0 auto;
    padding-top: 76px; /* A fix navbar miatt */
}

.main-footer {
    flex-shrink: 0;
}

h1, h2, h3 {
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #111111;
}

/* GOMB ÉS FÉNYCSÍK ANIMÁCIÓ */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #314152; 
    color: #c2a370; 
    border: none;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.4s ease;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right, 
        rgba(255, 255, 255, 0) 0%, 
        rgba(255, 255, 255, 0.3) 50%, 
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% { left: -150%; }
    80% { left: 150%; }
    100% { left: 150%; }
}