
/*
Theme Name: New Van Es Camp theme
Theme URI: https://vanes.ca
Author: Amira Abdalla
Author URI: https://vanes.ca
Description: A modern, responsive WordPress theme for Van Es Camp retreat and event destination
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: https://vanes.ca
*/
html {
  scroll-behavior: smooth;
}


/* ===========================
   CSS Variables & Root Styles
   =========================== */
:root {
    /* Theme colors */
    --primary-teal: #68898E;
    --secondary-spruce: #3E6B4F;
    --secondary-warm-grey: #9B9384;
    --secondary-clay: #A67C6D;
    --third-cream: #FFFFF8;
    --deep-charcoal: #2C2C2C;
    --white: #ffffff;
    --star-yellow: #fbbf24;
    --third-blue: #a5dff8;
    
    /* Typography */
    --font-lora: 'Lora';
    --font-ovo: 'Ovo';
    
    /* Spacing */
    --section-padding: 5rem 0;
    --card-radius: 2.375rem;
    --button-radius: 1.375rem;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px 1px rgba(0, 0, 0, 0.09);;
}
.text-white{
    color: var(--white);
}
/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-lora);
    color: var(--deep-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--third-cream);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-ovo);
    font-weight: 700;
    line-height: 1.2;
    /* color: var(--deep-charcoal); */
}

a {
    text-decoration: none;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===========================
   Navigation
   =========================== */
.navbar {
    padding: 0.1rem 0;
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-family: var(--font-lora);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-charcoal) !important;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--third-cream), transparent 50%);
    border-radius: 8px;
}

.brand-icon {
    width: 2rem;
    height: 2rem;
    background-color: var(--primary-teal);
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

.circle-icon {
    width: 2rem;
    height: 2rem;
    padding: 2rem;
    border-radius: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.brand-text {
    font-family: var(--font-lora);
    font-weight: 600;
}

.top-logo{
    max-height: 50px;
}

.navbar-nav a {
    color: var(--deep-charcoal);
    font-weight: 500;
    padding: 0.5rem 1rem;
    transition: color 0.3s ease;
    border-radius: var(--button-radius);
}

.navbar-nav a:hover {
    background: rgba(255, 255, 255, 0.40);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.navbar-nav .current_page_item{
    
}
.navbar-nav .current_page_item a{
    color: #000;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.5);
    font-weight: bold;
    /* border-bottom: 1px solid var(--primary-teal); */
}
.bg-glass{
    background: rgba(255, 255, 255, 0.75);
    border-radius: var[--card-radius];
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(6.3px);
    -webkit-backdrop-filter: blur(6.3px);
    border: 1px solid rgba(255, 255, 255, 0.22);
}

/* ===========================
   Bg colours
   =========================== */
.bg-teal {
    background-color: var(--primary-teal);
    color: var(--white);
}
.bg-clay {
    background-color: var(--secondary-clay);
    color: var(--white);
}
.bg-spruce {
    background-color: var(--secondary-spruce);
    color: var(--white);
}
.bg-cream {
    background-color: var(--third-cream);
    color: var(--deep-charcoal);
}
.bg-white {
    background-color: var(--white);
    color: var(--deep-charcoal);
}
.bg-warm-grey{
    background-color: var(--secondary-warm-grey);
}
.bg-blue{
    background-color: var(--third-blue);
}
/* ===========================
   Font colours
   =========================== */
.color-teal {
    color: var(--primary-teal);
}
.color-clay {
    color: var(--secondary-clay);
}
.color-spruce {
    color: var(--secondary-spruce);
}
.color-cream{
    color: var(--third-cream);
}
/* ===========================
   Buttons
   =========================== */
.btn-primary {
    background-color: var(--secondary-spruce);
    border:none;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: color-mix(in srgb, var(--secondary-spruce) 85%, black 15%);
    border-color: color-mix(in srgb, var(--secondary-spruce) 85%, black 15%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background-color: var(--white);
    border-color: color-mix(in srgb, var(--primary-teal), transparent 50%);
    color: var(--secondary-spruce);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
}
.btn-secondary:hover {
    background-color: color-mix(in srgb, var(--secondary-spruce) 85%, black 15%);
    border-color: color-mix(in srgb, var(--secondary-spruce) 85%, black 15%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
    background-color: var(--third-cream);
    border-color: var(--deep-charcoal);
    color: var(--deep-charcoal);
}
.btn-dark {
    background-color: var(--deep-charcoal);
    color: var(--white);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.btn-dark:hover {
    background-color: var(--deep-charcoal);
    color: var(--third-cream);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-dark {
    border-color: var(--deep-charcoal);
    color: var(--deep-charcoal);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: var(--button-radius);
}

.btn-outline-dark:hover {
    background-color: var(--deep-charcoal);
    color: white;
}

.btn-secondary-clay {
    padding: 0.75rem 2rem;
    border-radius: 0 0.5rem 0.5rem 0;
    background-color: var(--secondary-clay);
    color: var(--deep-charcoal);
    font-weight: 600;
    border: none;
}

.btn-secondary-clay:hover {
    background-color: #f8f9fa;
    color: var(--primary-teal);
}
.btn-white{
 background-color: var(--white);
    border-color: var(--third-cream);
    color: var(--deep-charcoal);
    padding: 0.75rem 2rem;
    font-weight: 500;
    border-radius: var(--button-radius);
    transition: all 0.3s ease;
}

.btn-white:hover {
    background-color: color-mix(in srgb, var(--white) 85%, black 15%);
    border-color: color-mix(in srgb, var(--white) 85%, black 15%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
/* ===========================
   Hero Section
   =========================== */
.hero-section {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* background-image: url('images/hero-bg.jpg'); */
    background-size: cover;
    background-position: center;
    padding-top: 6rem;
    padding-bottom: 3rem;
}
.hero-section.home{
    min-height: 100vh;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
/* / background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)); */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
#background-video {
  position: absolute;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
  z-index: -1; /* Puts the video behind other content */
}

.overlay-screen {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right top, #68898e, #718d87, #7e9082, #8d9281, #9b9384);
    opacity: 0.8;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px); /* For compatibility */

    /* filter:blur(7px);
    -o-filter:blur(5px);
    -ms-filter:blur(5px);
    -moz-filter:blur(5px);
    -webkit-filter:blur(4px); */
    z-index: 1; /* Puts the video behind other content */
}

.glass-screen {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(to right top, rgba(255, 255, 255, 0.8),  rgba(255, 255, 255, 0.5));
    opacity: 0.8;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px); /* For compatibility */

    z-index: 1; /* Puts the video behind other content */
}

.hero-section .container {
    position: relative;
    z-index: 2;
}


@media (max-width: 1024px) {
    .container {
        width: 93%;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* ===========================
    Bouncing arrow
    ========================== */
.arrow{
  position: relative;
  bottom: -2rem;
  left: 50%;
  margin-left:-20px;
  width: 40px;
  height: 40px;

  /**
   * Dark Arrow Down
   */
  background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI1MTIiIGlkPSJzdmcyIiB2ZXJzaW9uPSIxLjEiIHdpZHRoPSI1MTIiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6Y2M9Imh0dHA6Ly9jcmVhdGl2ZWNvbW1vbnMub3JnL25zIyIgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9lbGVtZW50cy8xLjEvIiB4bWxuczppbmtzY2FwZT0iaHR0cDovL3d3dy5pbmtzY2FwZS5vcmcvbmFtZXNwYWNlcy9pbmtzY2FwZSIgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIiB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiIHhtbG5zOnN2Zz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciPjxkZWZzIGlkPSJkZWZzNCIvPjxnIGlkPSJsYXllcjEiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTU0MC4zNjIyKSI+PHBhdGggZD0ibSAxMjcuNDA2MjUsNjU3Ljc4MTI1IGMgLTQuOTg1MywwLjA3ODQgLTkuOTEwNzcsMi4xNjMwOCAtMTMuNDM3NSw1LjY4NzUgbCAtNTUsNTUgYyAtMy42MDA1NjUsMy41OTkyNyAtNS42OTY4ODMsOC42NTg5NSAtNS42OTY4ODMsMTMuNzUgMCw1LjA5MTA1IDIuMDk2MzE4LDEwLjE1MDczIDUuNjk2ODgzLDEzLjc1IEwgMjQyLjI1LDkyOS4yNSBjIDMuNTk5MjcsMy42MDA1NiA4LjY1ODk1LDUuNjk2ODggMTMuNzUsNS42OTY4OCA1LjA5MTA1LDAgMTAuMTUwNzMsLTIuMDk2MzIgMTMuNzUsLTUuNjk2ODggTCA0NTMuMDMxMjUsNzQ1Ljk2ODc1IGMgMy42MDA1NiwtMy41OTkyNyA1LjY5Njg4LC04LjY1ODk1IDUuNjk2ODgsLTEzLjc1IDAsLTUuMDkxMDUgLTIuMDk2MzIsLTEwLjE1MDczIC01LjY5Njg4LC0xMy43NSBsIC01NSwtNTUgYyAtMy41OTgxNSwtMy41OTEyNyAtOC42NTA2OCwtNS42ODEyNyAtMTMuNzM0MzgsLTUuNjgxMjcgLTUuMDgzNjksMCAtMTAuMTM2MjIsMi4wOSAtMTMuNzM0MzcsNS42ODEyNyBMIDI1Niw3NzguMDMxMjUgMTQxLjQzNzUsNjYzLjQ2ODc1IGMgLTMuNjY2NzgsLTMuNjY0MjMgLTguODQ4MDEsLTUuNzY0NDIgLTE0LjAzMTI1LC01LjY4NzUgeiIgaWQ9InBhdGgzNzY2LTEiIHN0eWxlPSJmb250LXNpemU6bWVkaXVtO2ZvbnQtc3R5bGU6bm9ybWFsO2ZvbnQtdmFyaWFudDpub3JtYWw7Zm9udC13ZWlnaHQ6bm9ybWFsO2ZvbnQtc3RyZXRjaDpub3JtYWw7dGV4dC1pbmRlbnQ6MDt0ZXh0LWFsaWduOnN0YXJ0O3RleHQtZGVjb3JhdGlvbjpub25lO2xpbmUtaGVpZ2h0Om5vcm1hbDtsZXR0ZXItc3BhY2luZzpub3JtYWw7d29yZC1zcGFjaW5nOm5vcm1hbDt0ZXh0LXRyYW5zZm9ybTpub25lO2RpcmVjdGlvbjpsdHI7YmxvY2stcHJvZ3Jlc3Npb246dGI7d3JpdGluZy1tb2RlOmxyLXRiO3RleHQtYW5jaG9yOnN0YXJ0O2Jhc2VsaW5lLXNoaWZ0OmJhc2VsaW5lO2NvbG9yOiMwMDAwMDA7ZmlsbDojMjIyMjIyO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpub256ZXJvO3N0cm9rZTpub25lO3N0cm9rZS13aWR0aDozOC44ODAwMDEwNzttYXJrZXI6bm9uZTt2aXNpYmlsaXR5OnZpc2libGU7ZGlzcGxheTppbmxpbmU7b3ZlcmZsb3c6dmlzaWJsZTtlbmFibGUtYmFja2dyb3VuZDphY2N1bXVsYXRlO2ZvbnQtZmFtaWx5OlNhbnM7LWlua3NjYXBlLWZvbnQtc3BlY2lmaWNhdGlvbjpTYW5zIi8+PC9nPjwvc3ZnPg==);
  background-size: contain;
}

.bounce {
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.hero-section .arrow{
    position: absolute;
    bottom: 10px;
    z-index: 2;
}
/* ===========================
   Section Titles
   =========================== */
.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/*============================
    section card
    ========================== */
.section-image {
    overflow: hidden;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-md);
    border: 1px solid color-mix(in srgb, var(--secondary-warm-grey), transparent 80%);
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.section-image img {
    width: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.section-image:hover img {
    transform: scale(1.05);
}
.section-image iframe{
    width: 100% !important;
    height: 240px !important;
}
    
.icon-card {
    border-radius: 1.5rem;
    padding: 2rem;
    /* text-align: center; */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border: 1px solid color-mix(in srgb, var(--secondary-warm-grey), transparent 80%);
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    height: 100%;
}

/* .icon-card:hover {
    transform: translateY(-5px);
} */
.glass-card{
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.glass-card:hover{
    background: rgba(255, 255, 255, 0.15);
}
/* ===========================
   Half half Cards
   =========================== */
.card-half-flaf{
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    width: 100%;
}
.card-half-flaf > div{
    gap: 0;
    margin: 0;
    padding: 0;
}
.card-half-flaf .card-image{
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    min-height: 344px;
}
.card-half-flaf .card-image iframe{
    width: 100% !important;
    min-height: 344px !important;
    max-height: 404px !important;
}
.card-content{
    padding: 30px;
}

blockquote{
    border-left: 1px solid var(--deep-charcoal);
    padding-left: 20px;
    margin: 20px 0;
}
.card-body h5{
    color: var(--primary-teal);
}

.n2-ss-slider,
.n2-padding, 
.n2-section-smartslider{
    height: auto !important;
    min-height: 100% !important;
    max-height: 100% !important;
}
.smart-slider-container .n2-ss-slide-background-image,
.n2-ss-slider .n2-ss-slide-background-image img,
.card-half-flaf .card-image ~ img , .card-half-flaf .card-image ~ svg{
    height: auto !important;
    min-height: 100% !important;
    width: auto !important;
    min-width: 100% !important;
    /* Optional: center the image if it's larger than the container */
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

/* ===========================
   Service Cards
   =========================== */
.service-card {
    border: none;
    border-radius: var(--card-radius);
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    background-color: var(--white);
    border: 1px solid color-mix(in srgb, var(--secondary-warm-grey), transparent 80%);
}

/* .service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
} */

.card-img-wrapper {
    overflow: hidden;
    aspect-ratio: 7/3;
}

.card-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/*.service-card:hover .card-img-wrapper img {
    transform: scale(1.05);
}*/

.service-card .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.service-card .card-text {
    color: var(--text-gray);
    margin-bottom: 1rem;
}
.card-radius-lg{
    border-radius: var(--card-radius);
    overflow: hidden;
}
/* ===========================
   Gallery Section
   =========================== */

.bg-teal .section-title{
    color: var(--white);
}

.gallery-item {
    overflow: hidden;
    border-radius: var(--card-radius);
    height: 100%;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    opacity:0.8;
}

.gallery-item:hover img {
    transform: scale(1.05);
    opacity:1;
}

/* ===========================
   Testimonials
   =========================== */
.bg-section{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
}
.bg-section .container {
    position: relative;
    z-index: 2;
}
.testimonial-card {
    border: none;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-gray);
    line-height: 1.7;
}

.stars {
    color: var(--star-yellow);
}

.stars i {
    font-size: 1rem;
}

/* ===========================
   Newsletter Section
   =========================== */

.bg-primary-gradient{
    /* background-image: linear-gradient(to right top, #68898e, #718d87, #7e9082, #8d9281, #9b9384);    */
    background: radial-gradient(at 18% 99%, var(--primary-teal) 0px, transparent 50%) repeat scroll 0% 0%, 
            radial-gradient(at 97% 8%, var(--secondary-warm-grey) 0px, transparent 50%) repeat scroll 0% 0%, 
            radial-gradient(at 79% 82%, var(--secondary-clay) 0px, transparent 50%) repeat scroll 0% 0%,
            radial-gradient(at 96% 10%, var(--third-blue) 0px, transparent 50%) repeat scroll 0% 0%,    
            radial-gradient(at 42% 20%, var(--primary-teal) 0px, transparent 50%) repeat scroll 0% 0%,
            radial-gradient(at 4% 49%, var(--secondary-spruce) 0px, transparent 50%) repeat scroll 0% 0%, 
                        var(--primary-teal) radial-gradient(at 57% 33%, var(--primary-teal) 0px,
                        var(--secondary-spruce) 50%) repeat scroll 0% 0%;
    background-size: 180% 180%;
    animation: gradient-animation 10s ease infinite;

}
@keyframes gradient-animation {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.newsletter-form .input-group {
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form .form-control {
    padding: 0.75rem 1rem;
    border: none;
    border-radius: var(--card-radius);
    border: 1px solid var(--secondary-warm-grey);
}

/*============================
============================== */
 .mission-value {
    background: white;
    border-radius: 1.5rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.mission-value-icon {
    color: var(--primary-teal);
    flex-shrink: 0;
    font-size: 2.5rem;
}

.mission-value h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.mission-value p {
    font-size: 0.95rem;
    margin: 0;
    color: #666;
}

/* ===========================
    Values Section
    =========================== */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}
.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.icon-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.icon-card p {
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .icon-card {
        padding: 1.5rem;
    }
}

/* ===========================
    Team Section
    =========================== */

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.image-card {
    /* background: var(--white); */
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}


.image-card-image {
    height: 300px;
    overflow: hidden;
}

.image-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.image-card-info {
    padding: 2rem;
}

.team-name {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--deep-charcoal);
}

.team-title {
    font-size: 0.95rem;
    color: var(--primary-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .image-card-image {
        height: 250px;
    }
}

/* ===========================
    Tabs
    ========================== */
.nav-pills{
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    gap: 15px;
    width: 100%;
}
.nav-pills .nav-link{
    background-color: var(--white); /* Color for non-active pills on hover */
  box-shadow: var(--shadow-md);
  color: var(--primary-teal);
  border: 1px solid var(--primary-teal);;
  border-radius: var(--button-radius);
  padding: 15px 25px;
  width: 150px;
  height: 80px;
  vertical-align: middle;
  font-size:  1rem;
  text-align: center;
  display: flex;
  justify-content: center; /* Aligns horizontally */
  align-items: center; 
}
.nav-pills .nav-link.active {
  background-color: var(--primary-teal); /* Your desired color */
  color: white;             /* Text color */
}
/* In custom-styles.css */
.nav-pills .nav-link:hover:not(.active) {
  background-color: var(--white); /* Color for non-active pills on hover */
  box-shadow: var(--shadow-lg);
}

/* ===========================
    FAQ Accordion
    ========================== */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-plus' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
  transition: all 0.5s;
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='currentColor' class='bi bi-dash' viewBox='0 0 16 16'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E");
}
.accordion-button::after {
  transition: all 0.5s;
}
.accordion-button {
  font-size: 20px;
}
.accordion-button:not(.collapsed) {
  background-color: var(--third-cream);
  font-size: 20px;
}
.accordion-item {
  background-color: var(--third-cream);
  margin-top: 20px;
  border-radius: var(--button-radius) !important;
  overflow: hidden;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background-color: var(--deep-charcoal) !important;
}
.footer-logo{
    background-color: var(--white);
    /* border-radius: var(--card-radius); */
    font-family: var(--font-lora);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--deep-charcoal) !important;
    gap: 0.5rem;
    background-color: color-mix(in srgb, var(--third-cream), transparent 10%);
    border-radius: 8px;

    height: 100px;
}

.footer h5 {
    font-family: var(--font-ovo);
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer ul li a {
    color: #d1d5db !important;
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.footer ul li a:hover {
    color: var(--primary-teal);
}

.contact-info li {
    color: #d1d5db;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.contact-info i {
    width: 20px;
    margin-right: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.25rem;
    transition: color 0.3s ease;
    color: var(--white);
}

.social-links a:hover {
    color: var(--primary-teal);
}

/* ===========================
   Responsive Utilities
   =========================== */
@media (max-width: 991px) {
    .navbar-collapse {
        padding-top: 1rem;
    }
    
    .navbar-nav {
        margin-bottom: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding-top: 80px;
    }
    
    section {
        padding: 3rem 0 !important;
    }
}

/* ===========================
   WordPress Specific Styles
   =========================== */
.alignleft {
    float: left;
    margin-right: 1.5rem;
    margin-bottom: 1rem;
}

.alignright {
    float: right;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* ===========================
   Animations
   =========================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease-out;
}

/* ===========================
   Print Styles
   =========================== */
@media print {
    .navbar,
    .footer,
    #newsletter {
        display: none;
    }
}
/* ===========================
   Hide on mobile
   =========================== */
@media screen and (max-width: 768px) {
  .hide-on-mobile {
    display: none !important; /* !important helps ensure this rule overrides any conflicting display properties */
  }
}

/* ===========================
    Cool Timeline
    ========================== */
/* .ctl-timeline {
  position: relative;
  padding: 20px 0;
}

.ctl-timeline:before {
  content: '';
  position: absolute;
  width: 4px;
  background-color: #e5e5e5;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
}

.ctl-story {
  padding: 10px 40px;
  position: relative;
  width: 50%;
}

.ctl-story-left {
  left: 0;
}

.ctl-story-right {
  left: 50%;
}

.ctl-story:before {
  content: " ";
  position: absolute;
  top: 15px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--primary-teal);
  z-index: 1;
}

.ctl-story-left:before {
  right: -10px;
}

.ctl-story-right:before {
  left: -10px;
}

.ctl-content {
  padding: 20px;
  background: #fff;
  border-radius: var(--card-radius);
  border: 1px solid #ddd;
}

.ctl-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.ctl-description {
  font-size: 14px;
  line-height: 1.6;
}

.ctl-animate {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease;
}

.ctl-animate.active {
  opacity: 1;
  transform: translateY(0);
}

.ctl-timeline {
  font-family: Arial, sans-serif;
}

.ctl-content {
  box-shadow: var(--shadow-md);
}

.ctl-story:hover .ctl-content {
  transform: translateY(-3px);
  transition: 0.3s;
}

.ctl-title {
  color: #333;
}

.ctl-description {
  color: #666;
  padding-top: 10px;
}
.ctl-title a {
  pointer-events: none;
  cursor: default;
  text-decoration: none;
  color: inherit;
}
.timeline-year{
    display: none;
}

.fa {
  display: inline-block;
  font: normal normal normal 14px/1 Arial;
}

.fa-circle:before {
  content: "\25CF";
}

.fa-calendar:before {
  content: "\1F4C5";
} */

/* ==========================================================================
   TIMELINE EXPRESS: DUAL COLUMN COMPACT MASONRY GRID 
   ========================================================================== */

/* 1. Main Container Grid Configuration */
#cd-timeline.timeline-express {
    position: relative;
    width: 100%;
    max-width: 950px;
    margin: 0 auto;
    padding: 120px 0 30px 0;
    
    /* GRID SETTINGS: Automatically handles staggered, overlapping layouts */
    display: grid !important;
    grid-template-columns: 1fr 1fr !important; /* Two equal split columns */
    column-gap: 80px !important; /* Center space explicitly reserved for the spine */
    row-gap: 25px !important; /* ADDED: Even, clean vertical spacing between tiles */
}

/* Central Continuous Timeline Spine Line */
#cd-timeline.timeline-express::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Precise absolute horizontal center alignment */
    width: 2px;
    background: #c3dae8;
    transform: translateX(-50%);
    z-index: 1;
}

/* 2. Individual Item Blocks - Formats Grid Cell Placements */
.cd-timeline-block {
    position: relative;
    display: block !important;
    width: 100% !important;
    margin: 0; /* Managed cleanly via row-gap above */
    padding: 0 !important;
}

/* Alternating Column Placement Logic */
.cd-timeline-block:nth-child(odd) {
    grid-column: 1 !important; /* Left Column */
    margin-top: -120px;
}
.cd-timeline-block:nth-child(even) {
    grid-column: 2 !important; /* Right Column */
    margin-top: 30px;
}

/* 3. Spine Circle Node Icon Realignment */
.cd-timeline-icon-link {
    position: absolute;
    top: 20px;
    z-index: 5;
    text-decoration: none !important;
}

/* Absolute Coordinate Locks to pin icons onto the middle line from either side */
.cd-timeline-block:nth-child(odd) .cd-timeline-icon-link {
    right: -56px !important; /* Pulls left-side icons rightward onto the spine */
    left: auto !important;
}
.cd-timeline-block:nth-child(even) .cd-timeline-icon-link {
    left: -56px !important; /* Pulls right-side icons leftward onto the spine */
    right: auto !important;
}

/* The Circular Icon Bullet Design Wrapper */
.cd-timeline-img {
    width: 32px !important;
    height: 32px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 3px solid #ffffff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,0.15) !important;
    transform: translateX(0) !important;
    position: absolute;
    z-index: 2;
}

.cd-timeline-block:nth-child(odd) .cd-timeline-img{
        left: calc(100% + 25px);
}
.cd-timeline-block:nth-child(even) .cd-timeline-img{
        right: calc(100% + 25px);
}

.cd-timeline-img span.fa {
    color: #ffffff !important;
    font-size: 12px !important;
}

/* 4. Main Content Card Layout */
.cd-timeline-content {
    position: relative;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #e9ecef !important;
    border-radius: 6px;
    padding: 16px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    box-sizing: border-box;
}

/* 5. Image Stretching Layout Constraints */
img.announcement-banner-image {
    width: 100% !important;
    height: 160px !important;
    object-fit: cover !important;
    border-radius: 4px;
    margin: 0 0 12px 0 !important;
    display: block !important;
}

/* 6. Text Elements Typographic Hierarchies */
.cd-timeline-title-container {
    margin-bottom: 10px;
}

h2.cd-timeline-item-title {
    margin: 0 0 2px 0 !important;
    font-size: 1.25rem !important;
    font-weight: 700 !important;
    color: var(--deep-charcoal) !important;
}

p.timeline-date {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: #999999 !important;
}

.the-excerpt p {
    margin: 0 !important;
    font-size: 0.95rem !important;
    color: #555555 !important;
    line-height: 1.4;
}

a.timeline-express-read-more-link {
    display: none !important; /* Hide read more link text fields */
}

/* ==========================================================================
   MOBILE SCREEN CONVERSION (Collapses layout cleanly to a single line)
   ========================================================================== */
@media screen and (max-width: 768px) {
    #cd-timeline.timeline-express {
        display: block !important;
        padding: 30px 0;
    }
    #cd-timeline.timeline-express::before {
        left: 20px !important;
    }
    .cd-timeline-block {
        padding-left: 45px !important;
        margin-bottom: 25px !important;
    }
    .cd-timeline-block:nth-child(odd) .cd-timeline-icon-link,
    .cd-timeline-block:nth-child(even) .cd-timeline-icon-link {
        left: 20px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
    }

    .cd-timeline-block:nth-child(even), .cd-timeline-block:nth-child(odd) {
        margin-top: 0px;
    }
    .cd-timeline-block:nth-child(odd) .cd-timeline-img{
        left: 4px;
    }
    .cd-timeline-block:nth-child(even) .cd-timeline-img{
        right: auto;
        left: 4px;
    }

}
