﻿

@font-face {
    font-family: 'montserrat-regular';
    src: url('../fonts/montserrat-regular.ttf') format('truetype');
}

@font-face {
    font-family: 'baskervville-bold';
    src: url('../fonts/baskervville-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'montserrat-bold';
    src: url('../fonts/montserrat-bold.ttf') format('truetype');
}

@font-face {
    font-family: 'baskervville-medium';
    src: url('../fonts/baskervville-medium.ttf') format('truetype');
}
@media screen and (min-width:1380px) {
    .box-container {
        flex-direction: row
    }
}

h3{
    font-family:montserrat-regular!important;
}

.divsectionabout {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
    background: white;
}
/* DEMO 1 ============================== */
.hover {
    overflow: hidden;
    position: relative;
    margin-bottom:15px;
}

.hover-overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    transition: all 0.4s;
}

.hover-1 img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.hover-1-content {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 99;
    transition: all 0.4s;
}

/*.hover-1 .hover-overlay {
    background: rgba(0, 0, 0, 0.5);
}*/

.hover-1-description {
    transform: translateY(0.5rem);
    transition: all 0.4s;
    opacity: 0;
    font-size: 15px;
}

.hover-1-title {
    transform: translateY(0.5rem);
    transition: all 0.4s;
    opacity: 0;
}

.hover-1:hover .hover-1-content {
    bottom: 2rem;
}

.hover-1:hover .hover-1-description {
    opacity: 1;
    transform: none;
}

.hover-1:hover .hover-1-title {
    opacity: 1;
    transform: none;
}

/*.hover-1:hover img {
    left: 0;
}*/

.hover-1:hover .hover-overlay {
    opacity: 1;
    background: rgba(0, 0, 0, 0.7);
}

.h3available {
    color: #2d2d2d !important;
    font-size: 1.2rem;
    text-align: left;
    margin-bottom: 0;
}
.descriptionavailable {
    color: #2d2d2d !important;
    font-size: 16px;
    text-align: left;

}
.hrefavila {
    text-decoration: none !important;
}

    .hrefavila:hover h3 {
        font-weight: bold !important;
    }

.hrefavila2 {
    color: #a5a5a5 !important;
}
    .pagination-container

{
    display: flex;
    justify-content: center; /* center horizontally */
    align-items: center; /* center vertically */
    gap: 10px;
    margin: 40px 0;
    font-family: baskervville-bold;
}

.page-link {
    display: inline-block;
    padding: 10px 18px;
    font-size: 16px;
    color: #edeae1;
    text-decoration: none;
    border-radius: 6px;
    background-color: #c9af92;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
}

    .page-link:hover {
        background-color: #edeae1;
        color: #c9af92;
        border-color: #c9af92 !important;
        transform: scale(1.2);
    }

    .page-link.active {
        background-color: #edeae1;
        color: #c9af92;
        animation: bounce 0.4s;
    }

.arrow {
    font-size: 20px;
    font-weight: bold;
    color: #edeae1;
    cursor: pointer;
    transition: transform 0.3s, color 0.3s;
}

    .arrow:hover {
        transform: scale(1.2);
        color: #c9af92;
    }

/* Bounce animation */
@keyframes bounce {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(1.4);
    }

    50% {
        transform: scale(0.9);
    }

    70% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

.status-badge {
    position: absolute;
    top: 20px;
    left: 15px;
    padding: 10px 25px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50%;
    color: #a16157;
    z-index: 2;
    background: #edeae1;
}

.hrefavila2 {
    position: relative;
    display: block;
    overflow: hidden;
}

    .hrefavila2 img {
        width: 100%;
        height: auto;
        display: block;
        height: 350px;
        object-fit: cover;
        transition: opacity 0.6s ease-in-out;
    }

        .hrefavila2 img.hover {
            position: absolute;
            top: 0;
            height: 350px;
            object-fit: cover;
            left: 0;
            opacity: 0;
        }

    .hrefavila2:hover img.hover {
        opacity: 1;
    }

    .hrefavila2:hover img.original {
        opacity: 0;
    }

.currency-header {
    align-items:end;
}
.custom-dropdown2 {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #a16157;
    border: 1px solid #a16157;
    border-radius: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    user-select: none;
    width: 200px;
}
.custom-dropdown {
    position: relative;
    display: inline-block;
    cursor: pointer;
    color: #a16157;
    border: 1px solid #a16157;
    border-radius: 10px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.1);
    user-select: none;
    width: 200px;
}
    .custom-dropdown .dropdown-list {
        display: none;
        position: absolute;
        background: #edeae1;
        border-radius: 10px;
        list-style: none;
        padding: 5px;
        margin: 5px 0 0;
        right: 0;
        left: 0;
        width: 200px;
        z-index: 10;
    }
.custom-dropdown.open .dropdown-list {
  display: block;
}
.custom-dropdown li {
  padding: 6px 10px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.custom-dropdown li:hover {
  background: rgba(255,255,255,0.1);
}
.custom-dropdown img {
  border-radius: 3px;
}

@media only screen and (max-width: 500px) {
    .currency-header {
        align-items: center!important;
    }
    .custom-dropdown2{
        width:100%!important;
    }
    .custom-dropdown{
        width: 100% !important;
    }
    .currency-header {
        text-align: left !important;
        align-items: flex-start !Important;
    }
}