* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: auto !important;
}

::-webkit-scrollbar {
  display: none;
}

/* header css starts */

header {
    background: #FFF7EE;
    padding: 16px 0;
}

header .container {
    max-width: 1240px;
    width: 100%;
    margin: auto;
}

header .d-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo {
    height: 72px;
}

header .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .nav-right-side {
    display: flex;
    gap: 32px;
    justify-content: center;
    align-items: center;
}

header .main-nav ul {
    display: flex;
    gap: 32px;
    align-content: center;
}

header .main-nav ul li {
    list-style-type: none;
}

header .main-nav ul li a {
    font-weight: 400;
    font-size: 16px;
    color: #313131;

}

header .book-btn {
    display: block;
    background: #FEBC10;
    padding: 12px 24px;
    border: none;
    border-radius: 100px;
    color: #313131;
}

header span.menu-line {
    height: 16px;
    width: 1px;
    background: #8B8B8B;
}

.nav-links {
    position: fixed;
    top: 0;
    right: 0;
    width: 600px;
    height: 100vh;
    background: #F8F2EF;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    padding: 40px 60px;
    overflow-y: auto;
}

.nav-links.open {
    transform: translateX(0);
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    cursor: pointer;
}

header .hamburger {
    cursor: pointer;
}

.nav-links-container h4.sub-head {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 8%;
    text-transform: uppercase;
    color: #B4ADA9;
    text-align: left;
    margin-bottom: 20px;
}

.nav-links-container .explore ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

.nav-links-container .explore ul li a {
    font-family: Elsie;
    font-weight: 400;
    font-size: 32px;
    line-height: 40px;
    letter-spacing: -1px;
    color: #322019;
}

.nav-links-container .stay-touch {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-links-container .stay-touch ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

.nav-links-container .stay-touch ul li a {
    font-family: DM Sans;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    leading-trim: NONE;
    line-height: 24px;
    letter-spacing: 0%;
    color: #493933;
}

.nav-links-container .stay ul li a strong {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #493933;
}

.nav-links-container .stay ul li a span {
    font-weight: 400;
    font-size: 18px;
    color: #493933;
}

.nav-links-container .contact-title {
    font-weight: 600;
    font-size: 18px;
    line-height: 100%;
    color: #322019;
    margin-bottom: 15px;
}

.nav-links-container .contact-address {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #493933;
    margin-bottom: 15px;
}

.nav-links-container .contact-links {
    display: flex;
    gap: 23px;
    align-items: center;
	flex-wrap:wrap;
}

.nav-links-container .contact-links a {
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0D5B43;
}

.nav-links-container .contact-links a.phone-no {
    color: #493933;
}

.nav-links-container .contact-links a.direct {
    text-decoration: underline;
}

.nav-links-container .d-flex{
	align-items:flex-start;
}

/* home */
.hero-slider {
    height: 800px;
    position: relative;
}

.swiper-slide {
    position: relative;
    overflow: hidden;
}

.slide-img {
    height: 100%;
}

.slide-img img {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    display: block;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    max-width: 650px;
    padding: 20px;
}

.slide-content h1 {
    font-family: Elsie;
    font-weight: 400;
    font-size: 88px;
    line-height: 96px;
    letter-spacing: -1px;
    text-align: center;
    color: #ffff;
    margin-bottom: 16px;
}

.slide-content h2 {
    font-family: Elsie;
    font-weight: 400;
    font-size: 40px;
    line-height: 48px;
    letter-spacing: -1px;
    text-align: center;
    color: #FEBC10;
    margin-bottom: 16px;
}

.slide-content p {
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 32px;
    text-align: center;
    color: #F0E8CF;
    margin-bottom: 64px;
}

.slide-content p br{
	display:none;
}

.dot {
  margin: 0 16px;
}

.slider-btn {
    display: inline-block;
    background: #f4b400;
    font-weight: 400;
    font-size: 16px;
    color: #313131;
    padding: 16px;
    border-radius: 100px;
	width: max-content;
}

.swiper-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    z-index: 10;
}



/* Desktop arrows */

.desktop-prev {
    left: 170px;
}

.desktop-next {
    right: 170px;
}

/* Hide mobile arrows on desktop */

.mobile-prev,
.mobile-next {
    display: none;
}

/* Mobile */

@media(max-width:768px) {

    .desktop-prev,
    .desktop-next {
        display: none;
    }

    .mobile-prev,
    .mobile-next {
        display: block;
    }

    .mobile-prev {
        left: 7px;
    }

    .mobile-next {
        right: 7px;
    }

}


/* footer css */
footer {
    background: #FFF7EE;
}

footer .footer-wrapper {
    padding: 80px 0;
}

.footer-container {
    max-width: 1240px;
    margin: auto;
}

.footer-container .d-flex {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
    gap: 60px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}

.footer-brand img.footer-logo {
    height: 72px;
    width: 100%;
    object-fit: contain;
}

.footer-brand p {
    font-weight: 400;
    font-size: 14px;
    line-height: 22px;
    color: #493933;

}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons img {
    width: 24px;
    height: 24px;
}

.footer-col h4 {
    font-weight: 500;
    font-size: 13px;
    letter-spacing: 8%;
    text-transform: uppercase;
    color: #B4ADA9;
    text-align: left;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-col span {
    font-size: 13px;
    color: #777;
}

.email {
    display: block;
    margin-top: 10px;
    color: #1b7c6b;
}

.direction {
    display: inline-block;
    margin-top: 10px;
    font-size: 12px;
    border-bottom: 1px solid #1b7c6b;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
}

.footer-top-border img,
.footer-bottom-border img {
    width: 100%;
}

footer .explore ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

footer .explore ul li a {
    font-family: Elsie;
    font-weight: 400;
    font-size: 24px;
    line-height: 32px;
    letter-spacing: -0.5px;
    color: #322019;
}

footer .stay ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

footer .stay ul li a strong {
    font-weight: 400;
    font-size: 20px;
    line-height: 24px;
    color: #493933;
}

footer .stay ul li a span {
    font-weight: 400;
    font-size: 14px;
    color: #493933;
}

footer .get-in-touch ul li {
    list-style-type: none;
    margin-bottom: 15px;
}

footer .get-in-touch ul li a {
    font-family: DM Sans;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    color: #493933;
}

.phone-no{
display: flex;
	align-items:center;
	gap:7px;
font-weight: 500;
font-size: 14px;
line-height: 20px;
color: #493933;
margin-bottom: 16px;
}

.phone-no img{
	width:16px;
	height:16px;
	object-fit:contain;
}

.footer-col .footer-mail{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0D5B43;
    display: block;
    margin-bottom: 16px;
	word-break: break-word;
}

.footer-col .direct{
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    color: #0D5B43;
    text-decoration: underline;
}
.footer-bottom-border {
    margin: 64px 0;
}

/* gallery */

.eael-filter-gallery-control ul {
    margin-bottom: 48px !important;
}

/* packages-grid */

.packages-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.packages-grid .package-card {
    width: calc((100% - 40px) / 3);
    height: 440px;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding: 80px 40px 80px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    position: relative;
}

.packages-grid .package-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #2A2A2A;
    opacity: 0.25;
}

.package-card h3 {
    font-family: "Elsie", Sans-serif;
    font-size: 40px;
    line-height: 40px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.package-card p {
    font-size: 14px;
    line-height: 22px;
    color: #FFFFFF;
    margin: 0;
    text-align: center;
}

.package-card .package-link {
    background-color: #FEBC10;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    border-radius: 100px;
    padding: 16px;
    z-index: 1;
}

/* experience css starts */

.experiences-grid {
    display: flex;
    gap: 120px;
    flex-direction: row;
    flex-wrap: wrap;
}

.experiences-grid .experience-card {
    width: calc((100% - 120px) / 2);
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.experience-card h2 {
    font-family: "Elsie", Sans-serif;
    font-size: 40px;
    font-weight: 400;
    line-height: 40px;
    letter-spacing: -1px;
    color: #FFFFFF;
    margin: 0;
}

.experience-card .experience-image {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center center;
}

.experience-card .experience-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.experience-content .experience p {
    padding-left: 24px;
}

.experience-content ul{
	margin-bottom:40px;
}

.experience-content li {
    font-size: 16px;
    line-height: 26px;
    color: #FFEFE7;
    font-weight: 400;
    display: flex;
    align-items: center;
	list-style-type:none;
	border-top: 1px solid #ECD3C6;
	padding:8px 0;
}

.experience-content li:last-child {
  border-bottom: 1px solid #ECD3C6;
}

.experience-content li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2026/03/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
}

.experience-card .experience-content p {
    font-size: 16px;
    line-height: 26px;
    color: #FFEFE7;
    font-weight: 400;
}

.experience-card .experience-content hr {
    border: none;
    border-top: 1px solid #ECD3C6;
}

.card-slider{
	width:100%;
	height:600px;
}
.card-slider .elementor-image-carousel-wrapper{
	height:100%;
}

.card-slider .elementor-image-carousel-wrapper .swiper-slide-inner{
	height:100%;
}

.card-slider .elementor-image-carousel-wrapper .swiper-slide-image{
	height:100%;
	object-fit:cover;
}

/* packages popup */
.pum-overlay {
    background-color: #FFF7EE !important;
}

.pum-container {
    border: none !important;
    box-shadow: none !important;
    background-color: #FFF7EE !important;
}

#popmake-1271 .packages {
    background-color: #FFF7EE;
}

#popmake-1271 .packages .container {
    max-width: 1240px;
    margin: auto;
    text-align: center;
}

#popmake-1271 .packages .title {
    font-family: 'Elsie';
    font-weight: 400;
    font-size: 40px;
    line-height: 40px;
    letter-spacing: -1px;
    text-align: center;
    color: #493933;
    margin-bottom: 16px;
}

#popmake-1271 .packages .subtitle {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    text-align: center;
    color: #493933;
    margin-bottom: 56px;
}

#popmake-1271 .packages .cards {
    display: flex;
    gap: 56px;
    justify-content: center;
    flex-wrap: wrap;
}

#popmake-1271 .packages .card {
    width: calc((100% - 112px) / 3);
    background-color: #FFFFFF;
    border: 2px solid #FEBC10;
    border-radius: 20px;
    padding: 16px 16px 32px 16px;
}

#popmake-1271 .packages .card-inner {
    background-color: #F2E6DF;
    padding: 40px 32px;
    border-radius: 15px;
}

#popmake-1271 .packages .card h2 {
    font-family: "Elsie", Sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 34px;
    color: #493933;
    text-align: left;
    margin: 0;
	min-height:4rem;
}

#popmake-1271 .packages .divider {
    width: 100%;
    height: 2px;
    background: #ED7C1F;
    margin: 24px auto;
}

#popmake-1271 .packages .label {
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AD7253;
    margin-bottom: 8px;
    text-align: left;
}

#popmake-1271 .packages .text {
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    color: #493933;
    text-align: left;
    margin-bottom: 24px;
	min-height:4rem;
}

#popmake-1271 .packages .duration {
    font-family: 'DM Sans';
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 32px;
    color: #493933;
    text-align: left;
    margin-bottom: 24px;
}

#popmake-1271 .packages .btn {
    display: table;
    width: auto;
    background-color: #FEBC10;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    border-radius: 100px;
    padding: 16px;
    text-align: left;
}

.packages .includes {
    text-align: left;
    margin-top: 24px;
    padding: 0 20px;
}

.packages .includes li {
    list-style: none;
    margin-bottom: 10px;
    border-bottom: 1px solid #ECD3C6;
    padding-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    color: #493933;
}

.packages .includes li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2026/03/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pum-container .pum-content+.pum-close {
    background: transparent !important;
    color: #ED7C1F !important;
    border: 2px solid #ED7C1F !important;
    border-radius: 100% !important;
    width: 54px !important;
    font-size: 20px !important;
    box-shadow: none !important;
    text-shadow: none !important;
}

/* wedding and events card styles */

.event-grid .cards {
    display: flex;
    gap: 56px;
    justify-content: center;
    flex-wrap: wrap;
}

.event-grid .cards .card {
    width: calc((100% - 112px) / 3);
    background-color: #FFFFFF;
    border: 2px solid #FEBC10;
    border-radius: 20px;
    padding: 16px 16px 32px 16px;
}

.event-grid .cards .card .card-inner {
    background-color: #F2E6DF;
    padding: 40px 32px;
    border-radius: 15px;
}

.event-grid .cards .card .pkg-title {
    font-family: "Elsie", Sans-serif;
    font-size: 34px;
    font-weight: 400;
    line-height: 34px;
    color: #493933;
    text-align: left;
    margin: 0;
	min-height:7rem;
}

.event-grid .cards .card .divider {
    width: 100%;
    height: 2px;
    background: #ED7C1F;
    margin: 24px auto;
}

.event-grid .cards .card .label {
    font-family: 'DM Sans';
    font-weight: 500;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #AD7253;
    margin-bottom: 8px;
    text-align: left;
}

.event-grid .cards .card .text {
    font-family: 'DM Sans';
    font-weight: 500;
    font-style: Medium;
    font-size: 24px;
    line-height: 32px;
    text-transform: capitalize;
    color: #493933;
    text-align: left;
    margin-bottom: 24px;
}

.event-grid .cards .card .btn {
    display: table;
    width: auto;
    background-color: #FEBC10;
    font-family: "DM Sans", Sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #313131;
    border-radius: 100px;
    padding: 16px;
    text-align: left;
}

.event-grid .cards .card .includes {
    text-align: left;
    margin-top: 24px;
    padding: 0 20px;
}

.event-grid .cards .card .includes li {
    list-style: none;
    margin-bottom: 10px;
    border-bottom: 1px solid #ECD3C6;
    padding-bottom: 10px;
    font-size: 16px;
    display: flex;
    align-items: flex-start;
    color: #493933;
}

.event-grid .cards .card .includes li::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url('/wp-content/uploads/2026/03/Vector.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 8px;
    margin-top: 3px;
    flex-shrink: 0;
}

.event-grid .cards .card p {
    font-family: 'DM Sans';
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    letter-spacing: 0%;
    color: #493933;
    margin: 24px 0;
    padding: 0 20px;
}


/* gallery css */
/* Gallery Filters */
.wings-gallery-container .filter-graphic {
    width: 100%;
}

.wings-gallery-filters {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 16px 0;
}

.wings-filter-btn {
    font-weight: 400;
    font-size: 16px;
    line-height: 26px;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.1s ease;
    color: #8B6B60;
    padding: 0;
}

.wings-filter-btn.active,
.wings-filter-btn:hover {
    color: #493933;
    text-shadow: 0 0 1px #493933;
    /* fake bold */
    background: none;
}

/* Gallery Wrapper */
.wings-gallery-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    width: 1240px;
    margin: auto;
    margin-top: 48px;
}

.wings-gallery-item {
    width: 400px;
    height: 304px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #f0f0f0;
    aspect-ratio: 1/1;
}

.wings-gallery-item .wings-lightbox-trigger {
    height: 100%;
    width: 100%;
}

.wings-gallery-item img,
.wings-gallery-item video,
.wings-gallery-item iframe {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.wings-gallery-item:hover img,
.wings-gallery-item:hover video {
    transform: scale(1.1);
}

/* Overlay */
.wings-media-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.wings-gallery-item:hover .wings-media-overlay {
    opacity: 1;
}

.zoom-icon,
.play-icon {
    color: #fff;
    font-size: 40px;
}

/* Lightbox */
.wings-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    justify-content: center;
    align-items: center;
}

.wings-lightbox-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
}

.wings-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 80%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#wings-lightbox-media-container img,
#wings-lightbox-media-container video {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 4px;
}

#wings-lightbox-media-container iframe {
    width: 80vw;
    height: 45vw;
    max-width: 1000px;
    max-height: 562px;
}

.wings-lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 50px;
    cursor: pointer;
    z-index: 10;
}

.wings-lightbox-nav button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    padding: 20px 15px;
    cursor: pointer;
    font-size: 30px;
    transition: background 0.3s;
}

.wings-lightbox-nav button:hover {
    background: rgba(255, 255, 255, 0.3);
}

.wings-lightbox-prev {
    left: -60px;
}

.wings-lightbox-next {
    right: -60px;
}

.wpcf7 form.sent .wpcf7-response-output{
	color: green;
}

@media (max-width: 768px) {
    .wings-lightbox-prev {
        left: 10px;
    }

    .wings-lightbox-next {
        right: 10px;
    }

    .wings-lightbox-nav button {
        padding: 10px 5px;
    }
}

/* contact form */

.contact-form form label {
    font-weight: 600;
    font-size: 18px;
    color: #493933;
    margin-bottom: 12px;
}

.contact-form form p {
    margin-bottom: 32px;
}

.contact-form .form-row {
	display: flex;
    gap: 0;
    margin-bottom: 0 !important;
    flex-direction: column;    
}

.contact-form .wpcf7-radio {
    margin-bottom: 0 !important;
}

.wpcf7-radio {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}
.contact-form input[type=date],
.contact-form input[type=email],
.contact-form input[type=number],
.contact-form input[type=password],
.contact-form input[type=search],
.contact-form input[type=tel],
.contact-form input[type=text],
.contact-form input[type=url],
.contact-form textarea {
    border: 1px solid #EABFA9;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    outline: 0;
}

input[type="date"]{
  background-image: url("/wp-content/uploads/2026/04/Group-17.svg") !important;
  background-repeat: no-repeat !important;
  background-position: right 16px center !important;
  background-size: 20px !important;
}

input[type="date"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  cursor: pointer;
}

.contact-form textarea {
    height: 160px;
}

.wpcf7-list-item-label {
    color: #493933;
    font-weight: 400;
}

/* .wpcf7-list-item input[type="radio"] {
    accent-color: #ED7C1F !important;
    outline: 0;
} */

/* Hide default radio */
.wpcf7-list-item input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid #EABFA9; /* outer ring */
  border-radius: 50%;
  position: relative;
  cursor: pointer;
  outline: none;
}

/* Inner orange circle */
.wpcf7-list-item input[type="radio"]::after {
  content: "";
  width: 10px;
  height: 10px;
  background: #ED7C1F;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: 0.3s ease;
}

/* Checked state */
.wpcf7-list-item input[type="radio"]:checked::after {
  transform: translate(-50%, -50%) scale(1);
}

.wpcf7-submit,
.wpcf7-submit:hover {
    background-color: #FEBC10 !important;
    padding: 12px 24px !important;
    border-radius: 100px !important;
    color: #313131 !important;
    font-size: 16px !important;
    border: 0 !important;
}

form h2.form-title {
    font-family: 'Elsie';
    font-weight: 400;
    font-size: 40px;
    line-height: 100%;
    letter-spacing: -1px;
    color: #322019;
    text-align: left;
}

form p.form-sub {
    font-weight: 400;
    font-size: 16px;
    color: #493933;
    margin-bottom: 32px;
    text-align: left;
}

form .form-row {
    display: flex;
    gap: 48px;
    margin-bottom: 24px;
}

form label {
    font-weight: 600;
    font-size: 18px;
    color: #493933;
    margin-bottom: 12px;
    width: 100%;
    text-align: left;
}

form input[type=date],
form input[type=email],
form input[type=number],
form input[type=password],
form input[type=search],
form input[type=tel],
form input[type=text],
form input[type=url],
form textarea {
    border: 1px solid #EABFA9;
    background: #fff;
    border-radius: 8px;
    padding: 16px;
    outline: 0;
}

.pum-content.popmake-content form {
    width: 1100px;
    margin: auto;
}

.pum-content.popmake-content form textarea {
    height: 152px;
}

.dynamic-pkg-title {
    font-weight: 400 !important;
    font-size: 22px !important;
    color: #0D5B43 !important;
    text-align: left;
    margin-bottom: 32px;
}

span.pkg-child {
    font-weight: 600;
}

.wp-block-popup-maker-cta-buttons {
    display: block !important;
    width: 100%;
}

.wp-block-popup-maker-cta-button {
    width: 100%;
}

.date-group {
    display: flex;
    gap: 24px;
    align-items: center;
}

.date-group p,
.date-group label {
    margin: 0;
}

.date-fields p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.guest-group p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.guest-group label {
    margin: 0;
}

.form-col.small {
    flex: 1;
}

.submit-row {
    text-align: left;
}

.our-story-image{
	height:250px;
}

.bookstay form h2.form-title{
	margin-bottom:30px;
}

.bookstay .form-row{
	flex-direction:column;
	gap:0;
}

.bookstay .wpcf7-radio{
	gap:12px;
	flex-direction:column;
}

.w-50 .form-col{
	width:50%;
}

/* Modern browsers */
.wpcf7 input[type="file"]::file-selector-button {
    cursor: pointer;
    background: #EABFA9;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    border: 0;
    border-radius: 8px;
}

/* WebKit browsers (Chrome, Safari, Edge older support) */
.wpcf7 input[type="file"]::-webkit-file-upload-button {
    cursor: pointer;
    background: #EABFA9;
    padding: 10px;
    color: #fff;
    font-size: 16px;
    border: 0;
    border-radius: 8px;
}

.get-involved-form .form-title{
	margin-bottom:30px;
}

.book-date{
	flex-direction:row !important;
	gap:15px !important;
}

.book-date label{
	font-size:17px !important;
}

.pf-date > p:first-of-type {
  margin: 0;
}

.contact-links .phone-no{
		margin:0;
	}

@media(max-width:767px) {

    header .nav-right-side .main-nav {
        display: none;
    }

    header span.menu-line {
        display: none;
    }

    header .d-flex {
        gap: 60px;
    }

    header .container {
        padding: 0 20px;
    }

    header .book-btn {
        font-size: 15px;
        width: 158px;
    }

    .nav-links {
        width: 100%;
        padding: 20px;
    }

    .nav-links-container .d-flex {
        gap: 40px;
    }
	
	
    /* footer css */
    footer .footer-wrapper {
    padding: 40px 0;
}
    .footer-container{
        padding: 0 20px;
    }
    .footer-top-border img{
        height: 40px;
        object-fit: cover;
    }

    .footer-container .d-flex{
        display: flex;
        gap: 40px;
        flex-wrap: wrap;
        row-gap: 25px;
    }

    .footer-bottom-border {
    margin: 40px 0;
    }

    .footer-bottom{
        flex-direction: column;
        align-items: center;
    }

    .footer-bottom-border img {
    width: 100%;
    height: 5px;
    object-fit: cover;
}

    section .container {
        padding: 0 20px;
    }

    .slide-content {
        max-width: 320px;
    }

    .slide-content h1 {
        font-size: 70px;
        line-height: 70px;
        letter-spacing: -3px;
    }

    .slide-content h2 {
        font-size: 36px;
        line-height: 44px;
    }

    .experiences-grid {
        flex-direction: column;
        gap: 80px;
    }

    .experiences-grid .experience-card {
        width: 100%;
        gap: 32px;
    }

    .packages-grid {
        flex-direction: column;
    }

    .packages-grid .package-card {
        width: 100%;
        height: 430px;
        padding: 25px;
    }

    #popmake-1271 .packages .cards {
        flex-direction: column;
    }

    #popmake-1271 .packages .card {
        width: 100%;
    }

    #popmake-1271 .packages .card-inner {
        padding: 32px;
    }

    .event-grid .cards {
        flex-direction: column;
    }

    .event-grid .cards .card {
        width: 100%;
    }

    .event-grid .cards .card .card-inner {
        padding: 32px;
    }

    .wings-gallery-container .filter-graphic {
        object-fit: cover;
        height: 4px;
    }

    .wings-gallery-wrapper {
        padding: 0 20px;
        flex-direction: column;
        width: 100%;
    }

    .wings-gallery-item {
        width: 100%;
    }

    .pum-content.popmake-content form{
        width: 100%;
    }

    form .form-row{
        flex-direction: column;
        gap: 16px;
    }

    form label{
        margin-bottom: 16px;
    }

    .wpcf7-radio{
        flex-direction: column;
    }

    .wpcf7-list-item label{
        margin-bottom: 0;
    }

    .contact-form .form-row{
        gap: 0;
    }

    .contact-form .wpcf7-radio{
            flex-direction: row;
    flex-wrap: wrap;
    }

    .wp-block-popup-maker-cta-button__link{
        padding: 0 !important;
    }

    .date-group{
        flex-direction: column;
        align-items: flex-start;
    }
    
    .date-fields p{
        align-items: flex-start;
        gap: 0;
        flex-direction: column;
    }

    .date-fields{
        width: 100%;
    }

    .wpcf7-form-control-wrap{
        width: 100%;
    }
    
    .guest-group p{
        flex-direction: column;
        gap: 0;
        margin-top: 1rem;
    }
	
	.dot{
		display:none;
	}
	
	.slide-content p{
		display:flex;
		flex-direction:column;
		gap:20px;
	}
	
	.pum-container {
		top: 0 !important;
		margin-top: 0 !important;
		transform: translateY(0) !important;
    }
	
	.footer-col {
    width: calc((100% - 40px) / 2);
}
	
	.footer-col.footer-brand {
    width: 100%;
}
	#popmake-1271 .packages .card h2, #popmake-1271 .packages .text, .event-grid .cards .card .pkg-title{
		min-height:auto;
	}
	
	.our-story-image{
	height:150px;
}
	.w-50 .form-col{
		width:100%;
	}
	.book-date{
		flex-direction:column !important;
		gap:0 !important;
	}
	
	.slide-content p br{
	display:block;
}
	.card-slider{
	width:100%;
	height:300px;
}
	.experience-video video{
		height:400px !important;
	}
}