/*!
Theme Name: Serenomelides
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: serenomelides
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned.

Serenomelides is based on Underscores https://underscores.me/, (C) 2012-2020 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal https://necolas.github.io/normalize.css/
*/
@font-face {
    font-family: 'Hollens';
   src: url('fonts/hollens.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Catchy Mager';
    src: url('fonts/Catchy Mager Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Le Jour Serif';
    src: url('fonts/Le Jour Serif.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
body {
	margin: 0;
	background-color: #bcac9c;
	color: #472916;
}
img {
	width:100%;
	height: auto;
}
a {
	text-decoration: none;
}
/*header styles*/
p.site-title {
    display: none;
}
#masthead {
    display: flex;
    position: relative;
    z-index: 999999;
	position: absolute;
    top: 40px;
    right: 40px;
}
.main-navigation ul {
    display: flex;
    gap: 10px;
}
li.menu-item {
    list-style: none;
}
.menu-item a {
    text-decoration: none;
	color: #c6b6a2;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    font-family: 'Catchy Mager';
	letter-spacing: 0.5px;
}
li#menu-item-351::after {
    content: '|';
	color: #b9a996;
    margin-left: 8px;
    font-weight: 500;
}
button.menu-toggle {
    border: none;
    background: none;
    display: none;
}
/*Homepage styles*/
.language-selector {
    display: flex;
    justify-content: flex-end;
    margin-right: 125px;
    margin-top: 30px;
    gap: 10px;
    color: #fff;
}
a.nturl.single-language {
    border: 0;
    color: #c4b5a1;
    font-family: 'Catchy Mager';
    letter-spacing: 3px;
	font-weight: 600;
    font-size: 20px;
}
.Language::after {
    content: '|';
    margin-left: 10px;
}
.section {
	padding: 40px 0;
}
.container {
	max-width: 90%;
	padding: 0 15px;
	margin: 0 auto;
	overflow: hidden;
	position: relative;
	z-index: 1; /* Ensure the content is above the video */
}
.hero {
	position: relative;
	overflow: hidden;
	height: 100vh;
	margin-top: -66px;
}
.hero-video {
		position: absolute;
		top: 50%;
		left: 50%;
		width: 100%;
		height: 100%;
		object-fit: cover;
		transform: translate(-50%, -50%);
		z-index: -1; /* Place the video behind the content */
	}

.HeroContents {
    max-width: 32%;
    position: relative;
    top: 2%;
    left: 8%;
}
.herotitle {
    font-family: 'Hollens';
    font-size: 235px;
    font-weight: 500;
}
.herosubtitle {
    font-family: 'Catchy Mager';
    padding-left: 122px;
    margin-top: -45px;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: 6px;
}
.AboutContainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
}
.AboutImageWrapper {
    max-width: 57%;
}
.sectiontitle {
    font-family: 'Le Jour serif';
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 500;
	line-height: 1;
	Letter-spacing: 1px;
}
.sectionContent {
    font-size: 18px;
    font-family: 'Catchy Mager';
    line-height: 1.4;
	text-align: justify;
	padding-top: 20px;
	letter-spacing: 0.5px;
} 
/* img.BalconyImage {
    height: 920px;
} */
/*Gallerysection*/
.gallerySection {
    background: #472916;
}
.GallerySectionContainer {
	max-width: 1290px;
}
.gallerytitle {
    text-align: center;
    color: #c6b6a2;
}
.AboutImageWrapper {
    width: 200%;
}
.GalleryImagesRepeater {
    display: grid;
/*     grid-template-columns: repeat(5, 1fr); */
	grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
    gap: 0px;
    grid-row-gap: 10px;
    padding: 20px;
}
.GalleryImageWrapper {
    overflow: hidden;
    position: relative;
}
.GalleryImageWrapper:hover .GalleryImg {
    transform: scale(1.1);
}
img.GalleryImg {
    height: 200px;
    object-fit: cover;
    width: 100%;
	transition: transform 0.3s ease;
}
/* Modal styles */
.modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 999;
    padding-top: 100px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 65%;
    max-height: 80%;
    animation: zoom 0.6s;
}

@keyframes zoom {
    from {transform: scale(0.7);}
    to {transform: scale(1);}
}

/* Close button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Navigation buttons */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    margin-top: -50px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    user-select: none;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}
.MasterplanSection {
    padding-bottom: 0px;
}
.MasterPlanImageWrapper {
    margin-bottom: 70px;
	position: relative;
}
.DownloadPdfBtnWrapper {
    display: flex;
    justify-content: end;
    margin-right: 40px;
    margin-top: -38px;
}
.VillasContainer {
    display: flex;
    flex-direction: column;
    font-family: 'Catchy Mager';
    font-size: 16px;
	letter-spacing: 0.5px;
}
.VillaName:nth-child(1) {
    position: absolute;
    top: 10%;
}
.VillaName:nth-child(2) {
    position: absolute;
    top: 26%;
    left: 10%;
}
.VillaName:nth-child(3) {
    position: absolute;
    top: 38%;
    left: 18%;
}
.VillaName:nth-child(4) {
    position: absolute;
    top: 48%;
    left: 26%;
}
.VillaName:nth-child(5) {
    position: absolute;
    top: 58%;
    left: 32%;
}
.VillaName:nth-child(6) {
    position: absolute;
    top: 69%;
    left: 40%;
}
.VillaName:nth-child(7) {
    position: absolute;
    top: 84%;
    left: 50%;
}
.VillaName:hover {
	transform: scale(1.2);	
}
.VillaPlanPDF {
    text-decoration: none;
    color: #472916;
    border: 1px solid #472916;
    padding: 2px 15px;
    border-radius: 12px;
	text-align: center;
	display: flex;
    justify-content: center;
    align-items: center;
}
.VillaPlanPDF:hover {
	background: #472916;
	color: #bcac9c;
}
.MasterplanContainer {
    position: relative;
}
.MasterPlanContents {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.VillaTitleWrapper {
    display: flex;
    gap: 30px;
    align-items: center;
	margin-bottom: 10px;
}
a.DownLoadPdfBtn {
    text-decoration: none;
    background: #472916;
    color: #fff;
    padding: 10px 25px;
    border-radius: 26px;
    font-family: 'Le Jour Serif';
}
/* villa page */
.VillaTitle {
    font-size: 38px;
}
/*Location section*/
.Location.section {
    padding-bottom: 60px;
}
.MapWrapper {
    margin-top: 48px;
}
.AboutContents.LocationContents {
    flex: 1;
}
.MapWrapper {
    margin-top: 48px;
    max-width: 100%;
    flex: 1;
}

.Footersection {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    padding: 25% 0;
}
.footerWrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
	margin-top: -20%;
}
.Footertitle {
    padding: 0 30%;
}
.PrimaryButtonWrapper {
    margin-top: 30px;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}
a.PrimaryButton {
    border: 1px solid #472916;
    padding: 10px 40px;
    border-radius: 26px;
    color: #472916;
    text-transform: uppercase;
    font-family: 'Le Jour Serif';
    font-size: 18px;
    letter-spacing: 2px;
	transition: transform 0.3s ease;
}
.PrimaryButton:hover {
	transform: scale(1.2);
	background: #472916;
	color: #bcac9c;
}
.footerWrapper .PrimaryButton {
    color: #fff;
    border: 1px solid #fff;
}
.footerWrapper .PrimaryButton:hover {
     border: 1px solid #472916;
}
.SocialMediaInfoWrapper {
    display: flex;
    gap: 50px;
}
.MediaIconWrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
a.SocialMediaLink {
    border: 1px solid #fff !important;
    padding: 4px 4px !important;
    border-radius: 27px !important;
	-webkit-border-radius: 27px; /* Safari compatibility */
}
.site-info-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 100px;
    padding: 12px; 
	background: #472916;
	font-family: 'Catchy Mager';
    letter-spacing: 0.5px;
}
.Address, .WebLink, .EmailLink  {
	color: #bbab92;
}
.EnquiryForm {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.EnquiryForm .row {
    display: flex;
    gap: 9px;
}
.EnquiryForm input[type="text"], .EnquiryForm input[type="email"], .EnquiryForm input[type="tel"] {
    padding: 12px 10px;
    width: 460px;
    border: none;
    border-radius: 14px;
}
textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 10px 10px;
    width: 460px;
    border: none;
    border-radius: 14px;
    font-family: sans-serif;
}
.EnquiryForm input[type="submit"] {
    padding: 10px 4px;
    width: 460px;
    display: flex;
    justify-content: center;
    background: #472916;
    color: #bbab92;
    border-radius: 14px;
    font-weight: 600;
    font-family: 'Catchy Mager';
    letter-spacing: 1px;
    margin-top: 5px;
    cursor: pointer;
	border: none;
}
.CopyrightContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    font-size: 12px;
	font-family: 'Catchy Mager';
    letter-spacing: 1px;
}
/* .CR:after {
    content: '|';
    margin-left: 2px;
} */
a.CESLink {
    color: #472916;
    text-decoration: none;
    cursor: pointer;
}
.pum-theme-11 .pum-container, .pum-theme-lightbox .pum-container {
	display: flex !important;
	justify-content: center !important;
}
.pum-container.pum-responsive {
	width: unset !important;
}
#pum-453 {
    z-index: 1 !important;
}
    .forminator-iti-input .iti--flexible-dropdown-width .iti__country-list {
        z-index: 2 !important;
    }
@media (min-width: 320px) and (max-width: 767px) {
	.section {
		overflow: hidden;
		 padding: 20px 0;
	}
	
	.AboutContainer {
    display: flex;
    flex-direction: column;
    justify-content: center;
	gap:0;
}
	.VillaTitle {
		font-size:20px !important;
	}
.VillasContainer {
    font-size: 10px;
}
	
.VillaName:nth-child(1) {
        left: -12%;
}
    .VillaName:nth-child(2) {
        left: -4%;
        top: 23%;
    }
.VillaName:nth-child(3) {
    left: 4%;
    top: 36%;
}
.VillaName:nth-child(4) {
    left: 13%;
}
.VillaName:nth-child(5) {
        left: 21%;
        top: 60%;
}
.VillaName:nth-child(6) {
    left: 30%;
	top: 72%;
}
.VillaName:nth-child(7) {
        top: 84%;
        left: 38%;
    }
a.VillaPlanPDF {
        padding: 3px 8px 3px 8px;
    }
.AboutImageWrapper {
    max-width: 100%;
	order: 2;
}
.AboutContents {
    width: 100%;
    padding: 0px 0px;
	order: 1;
}
	.sectiontitle {
    text-align: start;
    font-size: 30px;
	margin-top: 20px;
}
.sectionContent {
    font-size: 15px;
	text-align: center;
	padding: 0;
	padding-top: 0;
}
.sectionContent p {
        text-align: left !important;
    }
    img.BalconyImage {
        width: 100%;
        height: auto;
    }
.gallerytitle {
    text-align: center !important;
}
	.GalleryImagesRepeater {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

.MasterPlanImageWrapper {
    margin-bottom: 0;
	margin-left: 30px;
	
}
a.PrimaryButton {
    padding: 10px 5px;
    font-size: 14px;
}
.PrimaryButtonWrapper {
	margin-top: 10px;
    margin-bottom: 30px;
	margin: 20px 0;
    display: flex;
    justify-content: center;
}
.MapWrapper {
    padding-top: 0px;
    order: 2;
}
	.desktopMap {
		display: none;
	}
iframe {
    width: 100%;
}
	.MobileMap {
		display: flex;
		justify-content: center;
	}
.Footersection {
        background-size: cover;
        padding: 40% 0;
}
	.Footertitle {
    text-align: center;
		padding: 0 8%;
}
    .site-info-wrapper {
        flex-direction: column;
        gap: 1px;
        padding: 5px;
    }
.Address, .WebLink, .EmailLink {
    font-size: 12px;
}
.EnquiryForm input[type="text"], .EnquiryForm input[type="email"], .EnquiryForm input[type="tel"] {
        width: 260px !important;
    }
textarea.wpcf7-form-control.wpcf7-textarea {
    padding: 10px 10px;
    width: 265px;
    border: none;
    border-radius: 14px;
}
	.EnquiryForm input[type="submit"] {
    width: 260px;
}
	.modal-content {
    max-width: 75%;
}
	.CopyrightContainer {
    flex-direction: column;
    gap: 0;
}
	.CR:after {
    display: none;
}

/* .forminator-iti-input.iti--fullscreen-popup .iti__dropdown-content {
    max-height: 55% !important;
} */
}
@media (min-width: 320px) and (max-width: 430px) {
.HeroContents {
    max-width: 78%;
    top: 23%;
    left: -3%;
}
}
@media (min-width: 431px) and (max-width: 768px) {
	.HeroContents {
    max-width: 43%;
    top: 20%;
    left: 11%;
}
}

 @media (min-width: 768px) and (max-width: 1149px) {
.sectiontitle {
    font-size: 32px;
}
	 .sectionContent {
    padding: 0;
    font-size: 15px;
}
	 .AboutImageWrapper {
    width: 220%;
}
	 img.BalconyImage {
    height: 579px;
}
	 .LocationContents {
    max-width: 52%;
}
	 .desktopMap {
    max-width: 100%;
}

/* 	 iframe {
    width: 100%;
} */
	 .Footersection {
    background-size: cover;
    width: 100%;
    height: 520px;
}
	 a.VillaPlanPDF {
    padding: 2px 9px;
}
	 .VillasContainer {
    font-size: 12px;
}
	 .VillaName:nth-child(1) {
    left: -1%;
}
	 .VillaName:nth-child(2) { 
    left: 9%;
}
	 .VillaName:nth-child(3) {
    left: 17%;
}
	 .VillaName:nth-child(4) {
    left: 24%;
}
	 .VillaName:nth-child(5) {
    left: 30%;
}
.VillaName:nth-child(6) {
    left: 38%;
}
.VillaName:nth-child(7) {
    left: 48%;
}	 
}

@media (min-width: 1149px) and (max-width: 1300px) {
.VillaName:nth-child(1) {
    left: -1%;
}
	.VillaName:nth-child(2) {
    left: 9%;
}
.VillaName:nth-child(3) {
    left: 17%;
}	
.VillaName:nth-child(4) {
    left: 24%;
}
	.VillaName:nth-child(5) {
    left: 31%;
}
	.VillaName:nth-child(6) {
    left: 39%;
}
.VillaName:nth-child(7) {
    left: 49%;
}
}
