/* Call Google Fonts  */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

:root {

	/* ===== Primary Brand Colors ===== */
	--color-primary: #EE7B5C;
	--color-primary-dark: #E66745;
	--color-primary-light: #FCE6DF;

	/* ===== Secondary Accent ===== */
	--color-secondary: #F5B74E;
	--color-secondary-light: #FFF3D8;

	/* ===== Text Colors ===== */
	--color-heading: #2F3448;
	--color-body: #6B7280;
	--color-light-text: #9CA3AF;
	--color-white: #FFFFFF;

	/* ===== Background Colors ===== */
	--color-background: #FDFBF8;
	--color-section: #F6FAF7;
	--color-card: #FFFFFF;
	--color-border: #ECECEC;

	/* ===== Program Card Colors ===== */
	--color-program-orange: #FCE6DD;
	--color-program-yellow: #FFF4CC;
	--color-program-green: #E7F3EC;
	--color-program-blue: #E6F0F8;

	/* ===== CTA ===== */
	--color-cta: #EB7B59;
	--color-cta-accent: #F1A24E;

	/* ===== Footer ===== */
	--color-footer: #364437;
	--color-footer-text: #D9E2D4;

	/* ===== Status ===== */
	--color-success: #6BBF7A;
	--color-warning: #F2B94B;
	--color-error: #E76F51;

	/* ===== Shadow ===== */
	--shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
	--shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);

	/* ===== Border Radius ===== */
	--radius-sm: 12px;
	--radius-md: 20px;
	--radius-lg: 30px;
	--radius-xl: 40px;
	--radius-pill: 999px;
}

/* Reset some default styles */
.site-header .header-inner, .site-footer .footer-inner {
    max-width: 1280px;
    padding: 0 5rem;
    margin-left: auto;
    margin-right: auto;	
	width: 100%;
}
html,
body {
	font-family: 'Nunito', sans-serif;
	font-size: 16px;
	line-height: 1.6;
	color: inherit;
	background-color: rgb(253 251 247 / 100%);
}

/* Inherit Nunito for common content elements */
p,
span,
div,
li,
a,
button,
input,
textarea,
select,
label,
blockquote,
figcaption,
small {
	font-family: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6,
.elementor-heading-title {
	font-family: 'Outfit', sans-serif;
    font-style: normal;
}

footer {
	background: var(--color-footer);
	color: var(--color-footer-text);
}

/* Header */
header {
	background-color: var(--color-background);
	box-shadow: var(--shadow-sm);
}
.glass {
	backdrop-filter: blur(14px);
	background-color: rgba(253, 251, 247, 0.75);
}

/* Navigation Menu Styles */
.site-navigation ul.menu li a {
    font-weight: 600;
    color: var(--color-heading);
}

.book-tour-button {
    display: flex;
    align-items: center;
    letter-spacing: -0.015rem;
    padding: 0 28px;
    background: #E87A5D;
    border-radius: 26px;
    font-weight: 600;
    box-shadow: 1px, 1px, 1px, inherit;
    cursor:pointer;
}
.book-tour-button a.book-tour-link {
    color: #fff;
    font-weight:700;
    font-size:14px
}
.book-tour-button:hover {
 transform: translateY(-4px);
 box-shadow: 1px, 1px, 1px #404040;
 background-color: rgb(213 106 77 / 100%);
 box-shadow: 4px 4px 12px rgba(0, 0, 0, 0.1);
}

.book-tour-button {
 transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.animate-badge{

	padding: 0.45rem 0.85rem;
    border-radius: 18px;
    background: #fff;
    box-shadow: 0px 0px 5px #c8d9cd;
}
.white-card {
    background: #fff;
    border-radius: 30px;
    box-shadow: 0 4px 4px #dedede;
}

/*** Animation styles */
@keyframes floatUpDown {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
    100% {
        transform: translateY(0);
    }
}

.pulse {
    animation: floatUpDown 2.5s ease-in-out infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.6);
        opacity: 0.2;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.animate-badge svg {
    animation: pulseDot 1.5s ease-in-out infinite;
    transform-origin: center;
}

/* footer stylesheet */
.footer-columns {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 100%;
    margin-bottom: 2.5rem;
}

.footer-columns-area {
    width: calc(100% / 4 - 10px);
    box-sizing: border-box;
    display: flex;
    flex-flow: column;
}

.footer-social a {
    color: #fff;
    display: inline-flex;
    background: #5c6d5d;
    width: 30px;
    text-align: center;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
}

.footer-social a:hover {
    background: #e87b5e;
}

.footer-social a i {
    display: block;
    margin: auto;
}

.footer-menu {
    list-style: none;
    padding: 0;
    line-height: 2.25rem;
}

.footer-menu li a, .footer-menu  p a {
    color: #ffff;
    cursor: pointer;
}

.footer-menu p a:hover, .footer-column p a{
    color: #ffff;
    cursor: pointer;
}

a.footer-button {
    background: #e87b5e;
    padding: 0.85rem 1.5rem;
    border-radius: 32px;
    color: #fff;
    width: fit-content;
}

.footer-columns-area p {
    margin: 0.385rem !important;
}

.footer-columns h3 {
    font-size: 18px;
}

.footer-columns p {
    font-size: 15px;
}

.site-logo.show {
    width: 180px;
    height: auto;
}

.copyright.show {
    border-top: 1px solid #4d604f;
}

.copyright.show p {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    position: relative;
    top: 11px;
}

/** contact form styles */
.cf7-contact-form{
    width:100%;
}

.cf7-row{
    display:flex;
    gap:30px;
    margin-bottom:25px;
}

.cf7-col{
    flex:1;
}

.cf7-col-full{
    width:100%;
}

.cf7-contact-form label{
    display:block;
    margin-bottom:10px;
    font-size:18px;
    font-weight:600;
    color:#1D3557;
}

.cf7-contact-form input,
.cf7-contact-form textarea{
    width:100%;
    background:#F5F1EA;
    border:none;
    border-radius:20px;
    padding:18px 22px;
    font-size:18px;
    color:#1D3557;
    outline:none;
    box-sizing:border-box;
}

.cf7-contact-form textarea{
    height:180px;
    resize:none;
}

.cf7-contact-form input::placeholder,
.cf7-contact-form textarea::placeholder{
    color:#9CA3AF;
}

.cf7-submit{
    margin-top:10px;
}

.cf7-submit input[type="submit"]{
    background:#1D3557;
    color:#fff;
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-size:18px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cf7-submit input[type="submit"]:hover{
    transform:translateY(-3px);
}

.wpcf7-spinner{
    display:none;
}

@media(max-width:768px){

    .cf7-row{
        flex-direction:column;
        gap:20px;
    }

    .cf7-contact-form label{
        font-size:16px;
    }

    .cf7-contact-form input,
    .cf7-contact-form textarea{
        font-size:16px;
        padding:16px 18px;
    }

}

/** Responsive styles */
/* ==========================
   Mobile Devices
   Up to 767px
========================== */
@media (max-width: 767px) {
    .book-tour-button {  order: 2; display:none; }
    .site-navigation-toggle-holder { order: 3; }
    .site-header .header-inner, .site-footer .footer-inner {
        max-width: 1280px;
        padding: 0px 1rem;
    }
    .footer-columns-area {
        width: 100%;
        box-sizing: border-box;
        display: flex;
        flex-flow: column;
    }
    .footer-columns {
        display: flex;
        flex-direction: column;
        gap: 22px;
        width: 100%;
        margin-bottom: 2.5rem;
    }
}

/* ==========================
   Tablet Devices
   768px - 1024px
========================== */
@media (min-width: 768px) and (max-width: 1024px) {
    .book-tour-button {  order: 2; margin-left: auto;}
    .site-navigation-toggle-holder { order: 3; }
    .site-header .header-inner, .site-footer .footer-inner { padding: 0 2rem;}
}

/* ==========================
   Desktop
   1025px and above
========================== */
@media (min-width: 1025px) {
    /* Your desktop styles */
}