/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #333;
    line-height: 1.6;
}


@media screen and (max-width: 768px) {
    #parallax-header {
        display: none;
    }
}

/* Parallax Header */
#parallax-header {
    position: relative;
    height: 250px;
    background-image: url('img/milenamilenkohero.png'); /* Replace with your image */
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.header-content {
    z-index: 2;
}

#parallax-header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.1);
    z-index: 1;
}
h1{
    margin-top:50px;
    font-size:46px;
    text-align:center;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
h2{
    margin-top:30px;
    font-size:46px;
    text-align:center;
    font-family: "Poiret One", sans-serif;
    font-weight: 400;
    font-style: normal;
}
p{
    font-family: "Funnel Display", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
/* Main Container */
main {
    padding: 20px;
    display: flex;
    justify-content: center;
}

.link-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    width: 100%;
    max-width: 1200px;
    padding-bottom:50px;
}

.link-card {
    position: relative;
    background-size: cover;
    background-position: center;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.link-card:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.link-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4); /* Dark overlay for readability */
    z-index: 1;
}

.card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 15px;
    text-align: center;
}

.card-content h2 {
    font-size: 1.5em;
    margin-bottom: 8px;
}

.card-content p {
    font-size: 0.9em;
    margin: 0;
    opacity: 0.85;
}

/* Footer */
footer {
    text-align: center;
    padding: 10px;
    background-color: #f4f4f4;
    color: #555;
    font-size: 0.9em;
}
