/* ========================
   Root Variables
======================== */
:root {
	/* Fonts */
	--font-primary: "Poppins", sans-serif;
	--font-secondary: "Marcellus", serif;

	/* Colors */
	--color-primary: #b47935;
	--color-primary-hover: rgba(180, 121, 53, 0.3);
	--color-secondary: #040943;
	--color-secondary-hover: rgba(4, 9, 67, 0.6);
	--color-dark: #262433;
	--color-dark-alt: #23212a;
	--color-light: #ffffff;
	--color-muted: #ccc;
	--color-highlight: #f2a65a;
	--color-footer: #040943;
	--color-footer-accent: #d18b48;
	--color-accent: #b98339;

	/* Backgrounds */
	--bg-light: #f9f9f9;
	--bg-muted: #faf5ef;
	--bg-muted-hover: #f4ede6;

	/* Shadows */
	--shadow-soft: 0px 4px 12px rgba(0, 0, 0, 0.1);
	--shadow-strong: 0 4px 16px rgba(0, 0, 0, 0.3);

	/* Spacing */
	--section-padding: 60px;
	--radius-sm: 5px;
	--radius-md: 12px;
	--radius-lg: 16px;

	/* Transitions */
	--transition: all 0.3s ease;
}

/* ========================
   Base Styles
======================== */
body {
	font-family: var(--font-primary);
	background: var(--color-light);
}

.theme-color {
	color: var(--color-accent);
}

.theme-color-secondary {
	color: var(--color-secondary) !important;
}

.bg-theme {
	background: var(--color-primary) !important;
	color: var(--bg-light) !important;
}

.bg-theme-secondary {
	background: var(--color-secondary) !important;
	color: var(--bg-light) !important;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--font-primary);
}

h1 {
	font-size: 3rem;
	font-weight: 500;
}

a {
	text-decoration: none;
	color: var(--color-dark);
}

/* ========================
   Top Bar
======================== */
.top-bar {
	background: var(--color-dark);
	color: var(--color-light);
	font-size: 1rem;
	padding: 12px 0;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.top-bar a {
	color: var(--color-light);
	margin: auto 15px auto 0;
	text-decoration: none;
}

.top-bar i {
	font-size: 1.5rem;
}

@media (max-width: 768px) {
	.top-bar {
		display: none;
	}
}

.theme-i {
	color: var(--color-primary);
}

/* ========================
   Navbar
======================== */
.navbar {
	background: var(--color-light);
}

.navbar-brand img {
	width: 220px;
}

.navbar-nav .nav-link {
	font-weight: 500;
	color: var(--color-dark);
}

.navbar-nav .nav-link:hover {
	color: var(--color-primary);
}

/* ========================
   Banner
======================== */
.banner-img {
	width: 100%;
	height: auto;
	object-fit: cover;
}

.main-title {
	position: absolute;
	top: 22%;
	left: 10%;
	color: var(--color-light);
	font-size: 2.8rem;
	font-weight: 700;
	text-shadow: var(--shadow-strong);
}

@media (max-width: 991px) {
	.main-title {
		font-size: 2rem;
		left: 5%;
		top: 10%;
	}
}

/* ========================
   About Section
======================== */
.about-section {
	/* background: var(--color-light); */
	padding: var(--section-padding) 0;
}

.about-section .heading-icon img {
	width: 60px;
}

.about-section h2 {
	font-size: 2rem;
	font-weight: 700;
	color: var(--color-primary);
}

.animation-btn {
	background: var(--color-primary);
	color: var(--color-light);
	border: none;
	border-radius: 0.5rem;
	animation: zoomInOut 1s infinite;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.animation-btn:hover {
	background: var(--color-light);
	color: var(--color-primary);
	border: 1px solid var(--color-primary);
	animation: none;
}

.animation-btn2 {
	background: var(--color-secondary);
	color: var(--color-light);
	border: none;
	border-radius: 0.5rem;
	animation: zoomInOut 1s infinite;
	transition: all 0.3s ease-in-out;
	cursor: pointer;
}

.animation-btn2:hover {
	background: var(--color-light);
	color: var(--color-secondary);
	border: 1px solid var(--color-secondary);
	animation: none;
}


@keyframes zoomInOut {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

/* ========================
   Feature List
======================== */
.feature-list {
	margin-bottom: 32px;
}

.feature-list .list-group-item {
	border: none;
	background: transparent;
	font-size: 1.20rem;
	color: var(--color-dark-alt);
	padding-left: 0;
	display: flex;
	align-items: center;
}

.feature-list .list-group-item img {
	width: 20px;
	margin-right: 12px;
}

.section-title {
	font-size: 2.2rem;
	font-weight: 700;
	color: var(--color-secondary);
	text-align: center;
	margin: 1rem 0 2rem 0;
}

/* ========================
   Owl Carousel
======================== */
#fourSlider .item img,
#singleSlider .item img {
	width: 100%;
}

#threeSlider .item img {
	width: 100%;
	border-radius: 1.8rem;
}

#fourSlider .item p {
	color: var(--color-light);
	text-align: center;
	margin:1rem  0 0 0 ;
	font-size: 1.2rem;
}

#banner .item img {
	width: 100%;
}

/* ========================
   Contact Section
======================== */
.contact-section {
	padding: var(--section-padding) 0;
	color: var(--color-light);
	position: relative;
	background-size: cover;
	background-position: center center;
	background-repeat: no-repeat;
	/* background-attachment: fixed; */
	z-index: 0;
}

.contact-section::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	/* background: rgba(58, 58, 58, 0.4); */
	z-index: 1;
	/* 
	background: rgba(185, 131, 57, 0.4);
	border-radius: 16px;
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
	backdrop-filter: blur(9.7px);
	-webkit-backdrop-filter: blur(9.7px);
	border: 1px solid rgba(185, 131, 57, 0.27); */
}

.contact-section>* {
	position: relative;
	z-index: 2;
}

.contact-card {
	background: var(--bg-light);
	border-radius: 0;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	overflow: hidden;
}

.map-container iframe {
	border: 0;
	width: 100%;
	height: 100%;
	min-height: 500px;
}

.contact-section h2 {
	color: var(--color-secondary);
	font-weight: 700;
}

.contact-form input,
.contact-form textarea {
	background: rgba(255, 255, 255, 0.8);
	border-radius: 6px;
}

.contact-form label {
	color: var(--color-light);
	font-weight: 600;
}

.contact-form .btn {
	background: var(--color-primary);
	border: none;
}

/* ========================
   Amenities Section
======================== */
.amenities-section {
	background: var(--bg-light);
}

.amenities-section h2 {
	color: var(--color-primary);
	font-weight: 700;
}

/* ========================
   Footer
======================== */
.footer {
	background: var(--color-footer);
	color: var(--color-light);
	padding: 50px 0 10px 0;
}

.footer-logo img {
	width: 180px;
}

.footer a {
	color: var(--color-light) !important;
	text-decoration: none;
}

.footer a:hover {
	color: var(--color-highlight) !important;
}

.footer-icon {
	width: 40px;
	height: 40px;
	background: var(--color-footer-accent);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	color: var(--color-light);
	font-size: 1.2rem;
}

.contact-icon {
	width: 50px;
	height: 50px;
	background: var(--color-footer-accent);
	border-radius: 50%;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	margin-right: 10px;
	color: var(--color-light);
	font-size: 1.4rem;
}

.btn-custom {
	background: var(--color-primary);
	color: var(--color-light);
	border: none;
}

.btn-custom:hover {
	background: var(--color-primary-hover);
	color: var(--color-muted) !important;
}

.social-icons a {
	font-size: 24px;
	margin-right: 15px;
	color: var(--color-light);
}

.social-icons a:hover {
	color: var(--color-highlight);
}

.copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	text-align: center;
	padding: 15px 0;
	font-size: 14px;
	margin-top: 20px;
	color: var(--color-muted);
}

/* ========================
   Blog Cards
======================== */
.blog-card {
	box-shadow: var(--shadow-soft);
}

.blog-img {
	position: relative;
}

.blog-img img {
	width: 100%;
	height: auto;
}

.blog-card .date-circle {
	position: absolute;
	bottom: -30px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color-light);
	border: 0.4rem solid var(--color-accent);
	border-radius: 50%;
	padding: 15px 20px;
	text-align: center;
	font-weight: bold;
	color: var(--color-accent);
}

.blog-card .date-circle span {
	display: block;
	font-size: 14px;
}

.blog-card .card-body {
	position: relative;
}

.read-btn {
	position: absolute;
	bottom: -20px;
	left: 50%;
	transform: translateX(-50%);
	display: inline-block;
	width: 90%;
	padding: 10px 20px;
	background: #2c2c38;
	color: var(--color-light);
	text-align: center;
	text-decoration: none;
	transition: background 0.3s;
}

.read-btn:hover {
	background: #1a1a24;
}

/* ========================
   Blog Detail Cards
======================== */
.blog-detail-card {
	border: none;
	transition: var(--transition);
}

.blog-detail-card .date-circle {
	position: absolute;
	bottom: -30px;
	right: 5%;
	background: var(--color-light);
	border: 0.4rem solid var(--color-accent);
	border-radius: 50%;
	padding: 15px 20px;
	text-align: center;
	font-weight: bold;
	color: var(--color-accent);
	transition: var(--transition);
}

.blog-detail-card .date-circle:hover {
	background: var(--color-accent);
	color: var(--color-light);
	transform: scale(1.1);
}

.blog-detail-card .date-circle span {
	display: block;
	font-size: 14px;
}

.blog-detail-card .card-body {
	position: relative;
}

/* ========================
   Recent Posts
======================== */
.recent-posts {
	background: var(--bg-muted);
	padding: 20px;
	transition: var(--transition);
}

.recent-posts:hover {
	background: var(--bg-muted-hover);
}

.recent-posts h4 {
	font-weight: lighter;
	margin-bottom: 20px;
	text-transform: uppercase;
	position: relative;
}

.recent-posts h4::after {
	content: "";
	display: block;
	width: 25%;
	height: 2px;
	background-color: var(--color-primary);
	margin-top: 5px;
	transition: width 0.3s ease;
}

.recent-posts h4:hover::after {
	width: 50%;
}

.post-item {
	display: flex;
	margin-bottom: 20px;
	align-items: center;
	transition: var(--transition);
}

.post-item:hover {
	transform: translateX(5px);
}

.post-item img {
	width: 70px;
	height: 70px;
	object-fit: cover;
	margin-right: 10px;
	border-radius: var(--radius-sm);
	transition: transform 0.3s ease;
}

.post-item img:hover {
	transform: scale(1.05);
}

/* Custom nav arrows */
#threeSlider .owl-nav {
	position: absolute;
	top: 40%;
	width: 100%;
	display: flex;
	justify-content: space-between;
}

#threeSlider .owl-nav button {
	background: var(--color-secondary) !important;
	color: var(--color-light) !important;
	border-radius: 50% !important;
	width: 45px;
	height: 45px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 22px !important;
	margin-left: -4%;
	margin-right: -4%;
}

/* Medium screens */
@media (max-width: 1024px) {
	#threeSlider .owl-nav button {
		margin-left: -4%;
		margin-right: -4%;
	}
}

/* Small screens */
@media (max-width: 768px) {
	#threeSlider .owl-nav button {
		margin-left: -6%;
		margin-right: -6%;
	}
}

/* Extra small screens */
@media (max-width: 480px) {
	#threeSlider .owl-nav button {
		margin-left: -8%;
		margin-right: -8%;
	}
}


#threeSlider .owl-nav button:hover {
	background: var(--color-primary) !important;
}

#banner .owl-dots {
	position: absolute;
	bottom: 20px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1000;
}

#banner .owl-dots .owl-dot span {
	width: 12px;
	height: 12px;
	background: var(--color-muted);
	display: block;
	border-radius: 50%;
	margin: 5px;
}

#banner .owl-dots .owl-dot.active span {
	background: var(--color-highlight);
}

.amenities-parent {
	display: flex;
	flex-direction: column;
	justify-content: center;
	padding: auto;
}

.amenities-items {
	justify-content: center;
	margin: auto;
}

.amenities-items .item {
	text-align: center;
	padding: 1rem;
}

.amenities-items .item img {
	width: 25%;
	transition: transform 0.3s ease;
}

.amenities-items .item p {
	font-size: 1.2rem;
	transition: transform 0.3s ease;
}

.amenities-items .item:hover img {
	animation: pulse 2.5s ease-in-out infinite;
}

.location-items li {
	font-size: 1.3rem;
	margin: 1rem 0;
}

.location-items li::marker {
	color: var(--color-primary);
}

.location-points {
	padding: 5rem 0 0 4.5rem;
}

@keyframes pulse {

	0%,
	100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.1);
	}
}

.amenities-items p {
	margin: 1rem 0 0 0;
	color: var(--color-light);
	padding: 0 2rem;
	font-size: 1.5rem;
}

.location-items p {
	margin: 1rem 0 0 0;
	color: var(--color-light);
	padding: 0 2rem;
	font-size: 1.5rem;
}

.video-thumbnail {
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
}

.play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 70px;
	height: 70px;
	background: var(--color-secondary);
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	transition: background 0.3s;
}

.play-btn span {
	display: block;
	margin-left: 5px;
	width: 0;
	height: 0;
	border-left: 18px solid var(--color-light);
	border-top: 12px solid transparent;
	border-bottom: 12px solid transparent;
}

.play-btn::before,
.play-btn::after {
	content: '';
	position: absolute;
	border: 2px solid rgba(255, 255, 255, 0.7);
	border-radius: 50%;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	animation: pulse2 1.5s infinite;
}

.play-btn::after {
	animation-delay: 0.75s;
}

@keyframes pulse2 {
	0% {
		transform: scale(1);
		opacity: 1;
	}

	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

.play-btn:hover {
	background: var(--color-secondary-hover);
}

.discover-list li {
	margin-bottom: 2rem;
}

.discover-list li::marker {
	color: var(--color-primary);
}

.img-cover {
	width: 100%;
	height: 100%;
	/* set desired height */
	overflow: hidden;
}

.img-cover img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.discover {
	border-radius: 5rem;
	box-sizing: border-box;
	border: 3px solid var(--color-primary-hover);
}

.table-custom th,
.table-custom td {
	text-align: center;
	vertical-align: middle;
	border: 1px solid var(--color-primary);
	padding: 0.95rem;
}

.table-custom thead th {
	background-color: var(--color-primary-hover);
	font-weight: 600;
	color: var(--color-primary);
	border-bottom: 2px solid var(--color-primary);
	text-transform: uppercase;
}

.table-custom tbody tr:nth-child(odd) {
	background-color: var(--color-primary);
}

.table-custom tbody tr:hover {
	background-color: var(--color-primary);
}

.animate-i{
	animation: zoomInOut 1s infinite;
	transition: all 0.3s ease-in-out;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 0;
    }
  
    #threeSlider .owl-nav button {
    	margin-left: -2%;
    	margin-right: -2%;
    }
    
    .location-points {
	    padding: 5rem 0 0 1.5rem !important;
    }
}

@keyframes float {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (min-width: 992px) {
  .brochure-mocup {
    animation: float 3s ease-in-out infinite;
  }
}
/*WhatsApp Button*/
.whatsapp-orbiter {
            cursor: pointer;
            border: none;
            background: linear-gradient(135deg, #25D366, #128C7E);
            color: #fff;
            width: 80px;
            height: 80px;
            border-radius: 50%;
            position: fixed;
            bottom: 20px;
            right: 20px;
            display: grid;
            place-content: center;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2),
                0 0 0 5px rgba(37, 211, 102, 0.1),
                0 0 0 10px rgba(37, 211, 102, 0.05);
            z-index: 10;
        }

        .whatsapp-orbiter:hover {
            transform: scale(1.1) translateY(-5px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3),
                0 0 0 10px rgba(37, 211, 102, 0.15),
                0 0 0 20px rgba(37, 211, 102, 0.05);
        }

        .orbiter-text-ring {
            position: absolute;
            inset: 0;
            animation: text-orbit 15s linear infinite;
        }

        .orbiter-text-ring span {
            position: absolute;
            transform: rotate(calc(20deg * var(--index)));
            inset: 5px;
            font-size: 10px;
            font-weight: 700;
            text-transform: uppercase;
            color: white;
            opacity: 0.8;
            pointer-events: none;
        }

        .orbiter-core {
            position: relative;
            width: 40px;
            height: 40px;
            /*background: #212121;*/
            background: #f9f5df;
            overflow: hidden;
            color: #25D366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
        }

        .orbiter-icon {
            transition: transform 0.4s ease-in-out, color 0.3s;
        }

        .orbiter-icon--clone {
            position: absolute;
            transform: translate(150%, -150%);
        }

        .whatsapp-orbiter:hover .orbiter-icon:first-child {
            transform: translate(-150%, 150%);
        }

        .whatsapp-orbiter:hover .orbiter-icon--clone {
            transform: translate(0);
            /*color: #fff;*/
        }

        @keyframes text-orbit {
            to {
                rotate: 360deg;
            }
        }

        .whatsapp-orbiter:active {
            transform: scale(0.95);
        }