// abstracts (global variable, function, mixin and placeholder)
@import "abstracts/mixins.scss";
@import "abstracts/variables.scss";
// component (for smaller components like buttons, carousel, widgets, loader)
@import "components/header.scss";
@import "components/footer.scss";
//page (page-specific styles)
@import "pages/home.scss";
@import "pages/category.scss";
@import "pages/package-single.scss";
@import "pages/about-us.scss";
@import "pages/blog.scss";
@import "pages/contact.scss";
@import "pages/404.scss";

:root {
	--font1: "Inter", sans-serif;
	--primary: #08c8ff; //#0aa8b0 // light blue
	--secondary: #001f3f; //deep blue
	--tertiary : #3a0ba3; //blue
	
}
/* =====global css starts=====*/
html {
	scroll-behavior: smooth;
	counter-reset: section;   
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	font-family: var(--font1);
	
}
body{
	background-color: #14151b;
	color: #fff;
}
/* =====typography=====*/
a, i, button{
	@include transition (.3s);	
}
a, a:hover{
	text-decoration: none;	
}
/* =====layout=====*/
ul{
	margin: 0;
}
p, li{
	font-weight: 300;
	b, strong{
		font-weight: 700;
	}
}
img{
	object-fit: cover;
	@include transition (.4s);
	max-width: 100%;
	height: auto;	
}
.sp-tb{
	padding: 5% 0;
	@include breakpoint (smaller)
	{
		padding: 8% 0;
	}
}
.sp-t{
	padding-top: 5%;
	@include breakpoint (smaller)
	{
		padding-top: 8%;
	}
}
.sp-b{
	padding-bottom: 5%;
	@include breakpoint (smaller)
	{
		padding-bottom: 8%;
	}
}
.maincontainer{
	width: 86%;
	margin: 0 auto;
	max-width: 1440px;
	@include breakpoint (wider)
	{
		width: 90%;
	}
}
#page{
	max-width: 1600px;
	margin: 0 auto;
}
/* =====components=====*/
.btn:focus, .btn-link, button:focus, .form-select:focus{
	box-shadow: none;
	outline: none;
	text-decoration: none;
}
button{
	background-color: unset;
	border: none;
}
.btn-link{
	&:hover{
		text-decoration: none;
	}
}
.form-control:focus, button:focus, .slick-slide:focus, a:focus, .accordion-button:focus, .accordion-button:not(.collapsed){
	box-shadow: none;
	outline: none;
}
.mt{
	margin-top: 24px;
	@include breakpoint (small)
	{
		margin-top: 20px;
	}
	@include breakpoint (smaller)
	{
		margin-top: 16px;
	}
}
.mb{
	margin-bottom: 24px;
	@include breakpoint (small)
	{
		margin-bottom: 20px;
	}
	@include breakpoint (smaller)
	{
		margin-bottom: 16px;
	}
}
.btn-one{
	display: inline-block;
	padding: 16px 24px;
	//background-image: linear-gradient(to right, var(--tertiary) 10%, var(--primary) 50%, var(--tertiary) 100%);
	// background-size: 200% 100%;
	//background-position: left center;
	background-color: var(--tertiary);
	color: #fff;
	border-radius: 30px;
	font-size: 18px;
	text-align: center;
	@include breakpoint (smaller)
	{
		font-size: 16px;
		padding: 10px 24px;
	}
	&:hover{
		// background-position: right center;
		background-color: var(--primary);
	}
	&.md{
		font-size: 16px;
		padding: 12px 24px;
		@include breakpoint (smaller)
		{
			padding: 8px 20px;
		}
	}
	&.sm{
		font-size: 15px;
		padding: 8px 16px;
		@include breakpoint (smaller)
		{
			font-size: 11px;
			padding: 6px;
			line-height: normal;
		}
	}
}
.section-heading{
	span{
		text-transform: uppercase;
		color: var(--primary);
		font-size: 20px;
		@include breakpoint (small)
		{
			font-size: 18px;
		}
		@include breakpoint (smaller)
		{
			font-size: 16px;
		}
	}
	h2{
		font-size: 30px;
		font-weight: 700;
		margin: 10px 0 0;
		color: #fff;
		@include breakpoint (smaller)
		{
			font-size: 22px;
			margin: 4px 0 0;
		}
	}
}
.entry-title{
	font-size: 28px;
	font-weight: 700;
	margin-bottom: 20px;
	@include breakpoint (wider)
	{
		font-size: 26px;
	}
	@include breakpoint (medium)
	{
		font-size: 24px;
	}
	@include breakpoint (small)
	{
		font-size: 22px;
	}
	@include breakpoint (smaller)
	{
		margin-bottom: 10px;
		font-size: 20px;
	}
}
.site-main{
	padding: 6%;
	background-color: #101118;
	border-radius: 20px;
	@include breakpoint (smaller)
	{
		background-color: transparent;
		padding: 0;
	}
	p{
		text-align: justify;
		@include breakpoint (smaller)
		{
			text-align: left;
		}
	}	
}
.site-format{
	h1, h2, h3, h4, h5, h6{
		&:not(.entry-title){
			font-size: 20px;
		}
	}
	ol, ul{
		margin-bottom: 1rem;
		li{
			margin-bottom: 8px;
		}
	}
	b, strong{
		font-weight: 600;
	}
}
.google-map{
	position: relative;
	width: 100%;
	height: 300px;
	margin-top: 5%;
	@include breakpoint (smaller)
	{
		height: 300px;
	}
	iframe{
		@include overlay;
	}
}
form{
	label{
		margin-bottom: 4px;
		span{
			color: red;
		}
	}
	input, select{
		height: 50px;
		@include breakpoint (smaller)
		{
			height: 44px;
		}
	}
	input, select, textarea, .form-control{
		margin-bottom: 12px;
		background-color: #23252f;
		border: none;
		border-radius: 4px;
		color: #fff;
		&::placeholder{
			color: #666;
		}
		&:focus{
			background-color: #23252f;
			border: none;
			color: #fff;
		}
		
	}
	textarea{
		height: 100px;
	}
	input[type=submit]{
		display: inline-block;
		padding: 0 20px;
		//background-image: linear-gradient(to right, var(--tertiary) 10%, var(--primary) 50%, var(--tertiary) 100%);
		background-color: #3a0ba3;
		background-size: 200% 100%;
		color: #fff;
		border-radius: 4px;
		@include transition (.3s);
		&:hover{
			// background-position: right center;
			color: #fff;
			background-color: var(--primary);
		}
	}
}
.wpcf7 form .wpcf7-response-output{
	margin: 0;
}
section, header, footer{
	ul{
		padding: 0;
		margin: 0;
		li{
			list-style-type: none;
		}
	}
}
code{
	font-size: inherit;
	color: var(--primary);
	font-family: inherit;
	font-weight: inherit;
}
.wp-block-columns{
	margin-bottom: 24px;
	@include breakpoint (smaller)
	{
		margin-bottom: 0;
	}
	figure, img{
		height: 100%;
		@include breakpoint(smaller)
		{
			height: auto;
		}
	}
}
:where(.wp-block-columns.is-layout-flex){
	@include breakpoint (smaller)
	{
		gap: 1em;
	}
}