:root {
    --gold: #e39427;
    --black: #1a272f;
    --brown: #635643;
    --light: #e8e1d5;
}

/* fontok betöltése: ../font/Bitter-VariableFont_wght.ttf és ../font/Bitter-Italic-VariableFont_wght.ttf */
font-face {
    font-family: 'Bitter';
    src: url('../font/Bitter-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
}
font-face {
    font-family: 'Bitter';
    src: url('../font/Bitter-Italic-VariableFont_wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: italic;
}


body {
    background-color: var(--black);
    color: #ffffff;
    font-family: "Bitter", sans-serif;
    padding-top: 67px; /* navbar helye */
}

.mainContent {
    min-height: calc(100vh - 67px - 92px); /* navbar és footer helye */
}

.btn-primary {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}
.btn-primary:hover, .btn-primary:focus, .btn-primary:active {
    background-color: #b38f44 !important;
    border-color: #b38f44 !important;
    color: var(--black) !important;
}
.btn-link {
    color: var(--gold);
}
.btn-link:hover, .btn-link:focus, .btn-link:active {
    color: var(--gold) !important;
}

/* NAVBAR */
.navbar {
    background-color: var(--light);
    border-bottom: 1px solid var(--brown);
}

.navbar-brand {
    margin-right: 15px;
}

.navbar-brand,
.nav-link {
    color: var(--black) !important;
    font-weight: 500;
}
.navbar-dark .navbar-toggler {
    color: var(--black);
}

.nav-link {
    padding-left: 15px !important; 
    padding-right: 15px !important;
}
.nav-link:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    min-height: calc(100vh - 70px);
    background: var(--light) url('../image/hero-bg.png') no-repeat;
    background-size: contain;
    /* background-position: left 30px bottom 0px; */
    background-position: center center;
    display: flex;
    align-items: center;

    /* a tartalom középtől jobbrátolással legyen */
    justify-content: center;
    /* padding-left: 30%; */
}

.hero-logo {
    border: 2px solid var(--gold);
    padding: 40px 50px;
    background-color: rgba(0, 0, 0, 0.7);
    max-width: 1000px;
}

@media (max-width: 768px) {
    .hero {
        background-position: center;
        padding: 0px;
        padding-bottom: 30px;
    }
    .hero-logo {
        padding: 15px 20px;
        margin: 20px 15px 0px;
        max-width: none;
    }
}

.hero-logo h1 {
    color: var(--gold);
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.logo-icon {
    font-size: 5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* FOOTER */
footer {
    background-color: #000000;
    color: #777;
    font-size: 0.9rem;
    /* mindig alul legyen */
    position: relative;
    bottom: 0;
}

footer span {
    color: var(--gold);
}

section.content {
    padding: 30px 0;

    h2 {
        color: var(--gold);
        border-bottom: 2px solid var(--gold);
        padding-bottom: 5px;
        margin-bottom: 30px;
    }
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.gallery-grid a {
    margin: 5px;
}
.gallery-grid img {
    width: 100%;
    height: auto;
}

.members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.member {
    text-align: center;
}
.member a {
    text-decoration: none !important;
}
.member h3 {
    margin-top: 15px;
    font-size: 1.2rem; /* Added font size for member names */
    color: var(--gold); /* Added color for member names */
}
.member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
}
@media (min-width: 992px) {
    .member:first-child {
        grid-column: span 5; /* Make the first member span two columns */
        margin-bottom: 30px;
    }
}
.member:first-child h3 {
    margin-top: 15px;
    font-size: 1.5rem; /* Added font size for member names */
    color: var(--gold); /* Added color for member names */
    
}
.member:first-child img {
    width: 200px;
    height: 200px;
}



.news-item {
    margin-bottom: 25px;
    border-bottom: 1px solid #444;
    padding-bottom: 15px;
}

.news-item h3 {
    color: var(--gold);
    font-size: 1.5rem;
}
.news-item a {
    text-decoration: none !important;
    color: inherit;
}
.news-item .btn-link {
    padding: 0;
    font-size: 1rem;
}
.news-item .btn-link::after {
    content: ' →';
}


@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}


.rccookie-container {
    background-color: var(--light) !important;
    color: var(--black) !important;
}