/* latin-ext */
@font-face {
font-family: 'Abril Fatface';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Abril Fatface'), local('AbrilFatface-Regular'), url(/vendor/fonts/zOL64pLDlL1D99S8g8PtiKchq-lmjdLh.woff2) format('woff2');
unicode-range: U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
font-family: 'Abril Fatface';
font-style: normal;
font-weight: 400;
font-display: swap;
src: local('Abril Fatface'), local('AbrilFatface-Regular'), url(/vendor/fonts/zOL64pLDlL1D99S8g8PtiKchq-dmjQ.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122                                                                                        , U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
.full-page-background {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.full-page-background:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(27, 26, 26, 0.3);
    background-image: -webkit-linear-gradient(180deg, rgba(27, 26, 26, 0.3) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%, rgba(27, 26, 26, 0) 100%);
    background-image: -moz-linear-gradient(180deg, rgba(27, 26, 26, 0.3) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%, rgba(27, 26, 26, 0) 100%);
    background-image: -o-linear-gradient(180deg, rgba(27, 26, 26, 0.3) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%, rgba(27, 26, 26, 0) 100%);
    background-image: linear-gradient(180deg, rgba(27, 26, 26, 0.3) 0%, rgba(27, 26, 26, 0) 34%, rgba(27, 26, 26, 0) 82%, rgba(27, 26, 26, 0) 100%);
}
#youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.full-page-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
}
.content-overlay {
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    user-select: none;
}
.content-overlay h1 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1rem;
}
.content-overlay p {
    font-family: 'Droid Serif', serif;
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.btn,
.form-control {
    outline: none !important;
    box-shadow: none !important;
}

.btn:focus, .btn:active {
    outline: none !important;
    box-shadow: none !important;
}
.form-control:focus {
    outline: none !important;
    box-shadow: none !important;
}


.transparent-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}
.site-name {
    font-family: 'Abril Fatface', cursive;
    font-weight: 400;
    color: #fff;
    line-height: 1;
    margin: 0;
}
.site-slogan {
    color: #fff;
    font-size: 1rem;
    margin: 0;
    line-height: 1.2;
}
.transparent-header a {
    color: #fff;
    text-decoration: none;
}

.transparent-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    font-size: 0.95rem;
}
.footer-text {
    font-size: 0.85rem;
    color: #fff;
    margin: 0;
}
.footer-link {
    font-size: 0.85rem;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
    margin: 0 10px;
    white-space: nowrap;
}
.footer-link:hover {
    opacity: 0.7;
}
.fs--1 {
    font-size: 0.9rem;
}
.font-poppins {
    font-family: 'Poppins', sans-serif;
}

.form-control:focus {
    border-color: #222;
}

::placeholder {
    color: #999!important;
    opacity: 1; /* Firefox */
}

::-webkit-input-placeholder { /* Chrome/Opera/Safari */
            color: #999!important;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #999!important;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #999!important;
}

:-moz-placeholder { /* Firefox 18- */
    color: #999!important;
}


@media (min-width: 768px) {
    
}
@media (min-width: 992px) {
    .content-overlay h1 {
        font-size: 3.7rem;
    }
    .content-overlay p {
        font-size: 1.4rem;
    }
}
@media (min-width: 1200px) {
    .content-overlay h1 {
        font-size: 4rem;
    }
    .content-overlay p {
        font-size: 1.5rem;
    }
}
