/*
 Theme Name:   GeneratePress Child
 Theme URI:    https://generatepress.com
 Description:  DeveloSquad's GeneratePress child theme
 Author:       Vidyut Pal
 Author URI:   https://vidyutpal.com
 Template:     generatepress
 Version:      0.1
*/





/* HELPER CLASSES */

/* Standard Shadow(s) */

.shadow-standard {
	box-shadow: 0px 5px 16px -5px rgba(33, 33, 33, 0.2);
	transition: all .2s ease-in;
}

.shadow-standard:hover {
	box-shadow: 0px 8px 32px 0px rgba(33, 33, 33, 0.1);
}

/* Max Width(s) */

.max-width-1024 {
	max-width: 1024px;
}


.max-width-768 {
	max-width: 768px;
}

.max-width-640 {
	max-width: 640px;
}

.max-width-480 {
	max-width: 480px;
}

/* Margin Auto */

.margin-auto{
	margin-left: auto;
	margin-right: auto;
}

/* Position Properties */

.relative{
	position: relative;
}

.absolute{
	position:absolute;
	top: 0px;
	left: 0px;
}

.sticky{
	position: sticky;
	top: 24px;
}

/* Image Aspect Ratios */

.aspect-1-1 img{
    aspect-ratio: 1/1;
	object-fit: cover;
}

.aspect-3-2 img{
    aspect-ratio: 3/2;
	object-fit: cover;
}

.aspect-2-3 img{
    aspect-ratio: 2/3;
	object-fit: cover;
}

.aspect-4-3 img{
    aspect-ratio: 4/3;
	object-fit: cover;
}

.aspect-3-4 img{
    aspect-ratio: 3/4;
	object-fit: cover;
}

.aspect-16-9 img{
    aspect-ratio: 16/9;
	object-fit: cover;
}

.aspect-9-16 img{
    aspect-ratio: 9/16;
	object-fit: cover;
}

/* Site Wrapper */
.site-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-inline: auto;
}


/* Vidyut's Built */

/* Root Typography Variables */

:root {
    --text-xs: clamp(0.75rem, calc(0.19vw + 0.71rem), 0.875rem);
    --text-s: 0.88rem;
    --text-base: 1rem;
    --text-h4: clamp(1.25rem, calc(0.74vw + 1.1rem), 1.313rem);
    --text-h3: clamp(1.375rem, calc(0.74vw + 1.35rem), 1.625rem);
     --text-h2: clamp(1.82rem, calc(0.93vw + 1.44rem), 2rem);
    --text-h1: clamp(2.125rem, calc(1.11vw + 1.65rem), 2.50rem);
}

/* Itinerary Accordion Before DAY Eelement */

.accordion-item__button::before {
	content: "Day " attr(data-day);
	font-weight: bold;
	padding: 2px 8px;
	background: var(--accent);
	border-radius: 5px;
	color: white;
	font-size: var(--text-base);
}

.accordion-item__button {
	justify-content: left!important;
}

.gb-button.gb-accordion__toggle .gb-icon {
	margin-left: auto;
}



/* Styled List for Inclusion & Exclusion */

.inclusion-list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
		margin-left: -10px;
		margin-bottom: 15px;
}

.inclusion-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #4CAF50; /* Green color */
    font-weight: bold;
}


.exclusion-list li {
    list-style: none;
    position: relative;
    padding-left: 25px;
		margin-left: -8px;
		margin-bottom: 15px;
}

.exclusion-list li::before {
    content: '✕';  /* Unicode X symbol */
    position: absolute;
    left: 0;
    color: #FF0000; /* Red color */
    font-weight: bold;
}



/* Inclusion & Exclusion Divider line */

@media (min-width: 800px) {
	
.sgrid-fc::after {
	content: '';
	position: absolute;
	width: 1px;
	background-color: rgba(181, 179, 179, 0.1);
	top: 0;
	bottom: 0;
	left: 50%;
	margin: 32px 0px;
}
}

@media (max-width: 760px) {
	
.sgrid-fc::after {
	content: '';
	position: absolute;
	height: 1px;
	background-color: rgba(181, 179, 179, 0.1);
	right: 0;
	left: 0;
	margin: 0px 26px;
	margin-top: 10px;
}
}



/* Ivory Search Form Style */

.is-form-style.is-form-style-3 {
	width: 24rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.is-form-style input.is-search-submit, .is-search-icon {
	background: transparent;
	margin-left: ;
	border: none !important;
	padding-right: 70px;
}

.is-form-style input.is-search-submit, .is-search-icon:hover {
	background: none;
}


.is-form-style.is-form-style-3 input.is-search-input {
	padding-left: 20px;
	border: none!important;
	opacity: 0.85;
}

.is-form-style input.is-search-input {
    height: 3.2em;
    padding: 10px 45px 10px 15px;
    border-radius: 215px;
}

.is-form-style button.is-search-submit {
    position: absolute;
    right: 0;
    height: 100%;
    width: 46px;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
}


/* Taxonomy Terms Loop Style */

/* Container for all terms */
.destination-terms-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Responsive grid */
    gap: 20px; /* Spacing between grid items */
    text-align: center; /* Center align content */
    padding: 20px 0;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual term card */
.destination-term {
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    border-radius: 8px;
    overflow: hidden; /* Keeps images within border radius */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.destination-term:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Term image */
.destination-term img {
    width: 100%;
    height: 200px;
    object-fit: cover; /* Ensures images are uniform */
}

/* Term title */
.destination-term h3 {
    margin: 10px 0 5px;
    font-size: 1.2em;
    font-weight: bold;
    color: #000; /* Adjust title color */
}

.destination-term h3 a {
	text-decoration: none;
	color: black;
}

/* Term description */
.destination-term p {
    font-size: 0.9em;
    color: #666; /* Lighter text color */
    margin: 0 10px 10px;
}

/* Button */
.destination-term-button {
    display: inline-block;
    background-color: #0057b7; /* Blue button background */
    color: #fff; /* White text */
    padding: 8px 16px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    font-size: 0.9em;
    margin-bottom: 35px;
    transition: background-color 0.3s ease;
}

.destination-term-button:hover {
    background-color: #003f88;
	color: white;
}

.destination-term {
	position: relative;
}

.destination-term h3 a::before {
	content: '';
	position: absolute;
	inset: 0;
	z-index: 1;
}










