
@font-face {
    font-family: 'Antonio Bold';
    src:   url('./fonts/Antonio-Bold.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Antonio Light';
    src:   url('./fonts/Antonio-Light.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Antonio Regular';
    src:   url('./fonts/Antonio-Regular.ttf');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'League Gothic Regular';
    src:   url('./fonts/LEAGUEGOTHIC-REGULAR.OTF');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'League Gothic Italic';
    src:   url('./fonts/LEAGUEGOTHIC-ITALIC.OTF');
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'League Gothic ConRegular';
    src:   url('./fonts/LEAGUEGOTHIC-CONDENSEDREGULAR.OTF');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'League Gothic ConItalic';
    src:   url('./fonts/LEAGUEGOTHIC-CONDENSEDITALIC.OTF');
    font-weight: 400;
    font-style: italic;
}

body {
    margin: 0;
    padding: 0;
    font-size: 18px;
    font-family: 'Antonio Regular';
}
img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    color: #b4975a;
}
a:focus,
a:hover {
    text-decoration: none;
    color: #9b7e41 ;
}
h2 {
    font-size: 1.8rem;
}
.with-bg {
    position: relative;
    background: #000000 url('./src/varna.jpg') no-repeat center top; /* Replace with your background image path */
    padding-bottom: 3rem;
    z-index: 1;
}

.with-bg::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);  /* Black with 50% opacity */
    z-index: -1;
}

header {
    padding: 20px;
    text-align: center;
    z-index: 10;
    margin-bottom: 3rem;
}

#site-logo {
    max-width: 100px; /* Adjust as needed */
    margin: 0 auto;
    z-index: 10;
}

.carousel-section {
    padding: 1rem 3rem;
    color: #ffffff;
    position: relative;
    overflow: hidden; /* Hide overflowing items on desktop */
    /* ... other carousel styles ... */
    z-index: 10;
}

.carousel-item {
    text-align: center;
    padding: 0rem 2rem;
}
.carousel-item img {
    max-width: 100px;
    margin: 0 auto;
}

.slick-arrow {
    position: absolute;
    top: 40%;
    background: none;
    border: none;
    font-size: 3rem;
    color: #ffffff;
    cursor: pointer;
    z-index: 20;
}
.slick-disabled {
    color: rgba(255, 255, 255, 0.51);
}
.slick-prev {
    left: 0rem;
}
.slick-next {
    right: 0rem;
}

.button-section {
    display: flex;
    justify-content: center;
    gap: 30px;
    z-index: 10;
}

.button-section a {
    z-index: 20;
    padding: 14px 40px;
    color: #fff;
    background-color: #006346 ;
    border-color: #006346 ;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'League Gothic Regular';
    font-size: 1.4rem;
    letter-spacing: 0.5px;
    text-align: center;
}

.button-section a:focus,
.button-section a:hover {
    cursor: pointer;
    background-color: #005639;
    border-color: #005639;
}


.text-section {
    padding: 1rem 3rem;
    background-color: #000000;
    color: #ffffff;
}

.image-text-block {
    background-color: #000000;
    color: #ffffff;
    display: flex;
    justify-content: center;
    flex: auto;
    flex-wrap: nowrap;
    align-items: center;
    margin-bottom: 2rem;

    @media (min-width: 1201px) {
        max-width: 1200px;
        margin-left: auto;
        margin-right: auto;
    }

    @media (max-width: 768px) {
        flex-wrap: wrap;
    }

}



.image-text-block__media {
    margin: 0rem;
}

.image-text-block__title {
    text-transform: uppercase;
}

.image-text-block__content {
    text-align: center;
}
.image-text-block__btns {
    margin-top: 2rem;
}
.image-text-block__btns a {
    color: #ffffff;
    padding: 0.5rem 3rem;
}

@media (max-width: 1200px) {
    .carousel-item {
        padding: 0rem 1rem;
    }
}
/* Responsive styles for mobile */
@media (max-width: 768px) {
    h1 {
        font-size: 1.6rem;
    }
    h2 {
        font-size: 1.5rem;
    }
    .carousel-item {
        padding: 0rem;
    }
    .carousel-item img {
        max-width: 70px;
        height: auto;
    }


    .button-section {
        margin: 0rem;
        padding: 1rem 2rem;
    }
    header {
        margin-bottom: 2rem;
    }
    .with-bg {
        padding-bottom: 1rem;
    }
    #site-logo {
        max-width: 80px
    }
    body {
        font-size: 18px;
    }
    .slick-arrow {
        font-size: 2rem;
    }
    .carousel-section {
        padding: 1rem;
    }
    .text-section {
        padding: 1rem 1.5rem;
    }
    .carousel-section {
        flex-direction: column;
    }

    .button-section {
        flex-direction: column;
    }

    .button-section button {
        margin-bottom: 10px; /* Space between stacked buttons */
    }
}
