/*
Theme Name: Impreza Child
Template: Impreza
Version: 1.0
Author:	UpSolution
Theme URI: http://impreza.us-themes.com/
Author URI: http://us-themes.com/
*/

/*Add your own styles here:*/
:root {
  /* Font family variables */
  --font-serif: baskerville-display-pt, serif;
  --font-sans: proxima-nova, sans-serif!important;
  
  --font-weight-light: 300!important;
  --font-weight-regular: 400!important;
  --font-weight-bold: 700!important;
}

.title-text  {
	font-family: baskerville-display-pt, serif!important;
	font-size: clamp(2.6rem, 2.037rem + 2.8148vw, 4.5rem)!important;
	font-weight: 400!important;
	line-height: 1.1!important;
	font-style: normal!important;
}

.main-heading {
	font-family: baskerville-display-pt, serif!important;
	font-size: clamp(2.2rem, 1.6667rem + 2.6667vw, 4rem)!important;
	font-weight: 400!important;
	line-height: 1.1!important;
	font-style: normal!important;
}

.subheadings {
	font-family: baskerville-display-pt, serif!important;
	font-size: clamp(2rem, 1.763rem + 1.1852vw, 2.8rem)!important;
	font-weight: 400!important;
	line-height: 1.1!important;
	font-style: normal!important;
}

.poi-headings {
	font-family: baskerville-display-pt, serif!important;
	font-size: clamp(1.1rem, 0.9815rem + 0.5926vw, 1.5rem)!important;
	font-weight: 400!important;
	line-height: 1.1!important;
	font-style: normal!important;
}

.paragraph-text {
	font-family: proxima-nova, sans-serif!important;
	font-size: clamp(0.95rem, 0.9056rem + 0.2222vw, 1.1rem)!important;
	font-weight: 300!important;
	line-height: 1.36!important;
}

.paragraph-text-small {
	font-family: proxima-nova, sans-serif!important;
	font-size: clamp(0.8rem, 0.7407rem + 0.2963vw, 1rem)!important;
	font-weight: 300!important;
	line-height: 1.36!important;
}

.centered-text {
	text-align: center;
	margin-left: auto;
	margin-right: auto;
}

.responsive {
  width: 100%;
  height: auto;
}

p:has(+ .responsive) {
    margin-bottom: 0;
}

.margin-zero {
	margin: 0!important;
}

.margin-zero p {
	margin: 0!important;
}

/* slider short code */
.fullscreen-slider-container {
    position: relative;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    background-color: #000000;
}

.fullscreen-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide.previous {
    opacity: 0.3;
    visibility: visible;
    z-index: 0;
}

.slide-inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.1);
    transition: transform 2s ease-out, opacity 1.5s ease-in-out;
}

.slide-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.35);  /* Adjust opacity here if needed */
}

.slide.active .slide-inner {
    transform: scale(1);
}

.slide-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    width: 60%;
    padding: 0;
}

.slide-title .title-text {
    color: white;
    font-size: var(--headings-title);
    font-family: "Sree Krushnadevaraya", serif;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-in-out 0.8s, transform 0.8s ease-in-out 0.8s;
    width: 100%;
    margin: 0 auto;
}

.slide.active .slide-title .title-text {
    opacity: 1;
    transform: translateY(0);
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: background-color 0.3s ease;
}

.slider-nav:hover {
    background: rgba(0, 0, 0, 0.6);
}

.slider-nav svg {
    width: 24px;
    height: 24px;
}

.slider-nav.prev {
    left: 20px;
}

.slider-nav.next {
    right: 20px;
}

@media (max-width: 768px) {
    .slide-title .title-text {
        font-size: 2.5rem;
    }

    .slider-nav {
        width: 40px;
        height: 40px;
    }

    .slider-nav.prev {
        left: 10px;
    }

    .slider-nav.next {
        right: 10px;
    }
}

/* poi css */
.my_poi_images img {
    filter: brightness(60%) contrast(110%);
}