.elementor-16222 .elementor-element.elementor-element-c776e21{--display:flex;}/* Start custom CSS for html, class: .elementor-element-16d45ef *//* ========================================
   CSS VARIABLES - GREEN OASIS BRAND
======================================== */
:root {
    --sage: #8A9A8C;
    --eucalyptus: #A4B5A4;
    --soft-clay: #C9B8A8;
    --stone: #E8E5E0;
    --warm-white: #FAF9F7;
    --charcoal: #2C3331;
    --muted-green: #6B7A6E;
}

/* ========================================
   FULL-WIDTH OVERRIDES FOR WORDPRESS
======================================== */
.hero-section,
.course-overview-section,
.image-gallery-section,
.presenter-section,
.registration-section {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* ========================================
   FONT OVERRIDES FOR WORDPRESS
======================================== */
.hero-section *,
.course-overview-section *,
.image-gallery-section *,
.presenter-section *,
.registration-section * {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Inter', 'Avenir', sans-serif !important;
}

/* ========================================
   HERO SECTION
======================================== */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #2C3331;
}

.hero-image-wrapper {
  position: absolute;
  inset: 0;
  z-index: 0;

  background-image: url("https://images.unsplash.com/photo-1743148509752-9ea6072ea35f?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&q=80&w=1920");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.3), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    text-align: center;
    color: white;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 650;
    margin-bottom: 5px;
}

.hero-title {
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    font-weight: 300;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
}

.hero-title-bold {
    font-weight: 500;
}

.hero-subtitle {
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.6;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    max-width: 672px;
    margin: 0 auto 40px;
}

.hero-cta {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: var(--charcoal);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta:hover {
    background: var(--stone);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: scale(1.02);
}

.hero-info {
    margin-top: 24px;
    font-size: 16px;
    font-weight:500;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.02em;
}

.scroll-indicator {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-icon {
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.6);
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: translateX(-50%) translateY(0);
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}

/* ========================================
   COURSE OVERVIEW SECTION
======================================== */
.course-overview-section {
    padding: 96px 24px 48px 24px;
    background-color: var(--warm-white);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    text-transform: uppercase;
    font-size: 12px;
    color: var(--muted-green);
    letter-spacing: 0.12em;
    font-weight: 500;
    margin-bottom: 5px;
}

.two-column-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 64px;
    align-items: start;
}

.overview-title {
    font-size: clamp(32px, 4vw, 44px);
    line-height: 1.2;
    color: var(--charcoal);
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.overview-text {
    color: var(--muted-green);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.learning-objectives {
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid var(--stone);
}

.objectives-title {
    color: var(--charcoal);
    font-size: 18px;
    letter-spacing: 0.01em;
    margin-bottom: 20px;
    font-weight: 500;
}

.objectives-list {
    list-style: none;
}

.objective-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.objective-number {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background-color: var(--eucalyptus);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-top: 2px;
}

.objective-text {
    color: var(--muted-green);
    font-size: 16px;
    line-height: 1.6;
}

.overview-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.overview-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.info-callouts {
    display: grid;
    gap: 24px;
}

.callout-card {
    padding: 24px;
    background-color: white;
    border: 1px solid var(--stone);
    border-radius: 8px;
}

.callout-label {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--sage);
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 8px;
}

.callout-content {
    color: var(--charcoal);
    font-size: 15px;
    line-height: 1.6;
}

/* ========================================
   IMAGE GALLERY SECTION
======================================== */
.image-gallery-section {
    padding: 64px 24px;
    background-color: white;
}

.image-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1280px;
    margin: 0 auto;
}

.gallery-image-wrapper {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.gallery-image-wrapper:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.gallery-image-wrapper img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* ========================================
   PRESENTER SECTION
======================================== */

.presenter-section .section-container > div:first-child {
    text-align: center;
    margin-bottom: 1rem !important;
}

.presenter-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: start;
     margin-top: -2.8rem;
}

.presenter-image-wrapper {
    position: relative;
}

.presenter-image {
    aspect-ratio: 3/4;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.presenter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.presenter-name {
    font-size: clamp(30px, 3vw, 40px);
    line-height: 1.2;
    color: var(--charcoal);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

.presenter-title {
    color: var(--sage);
    font-size: 18px;
    line-height: 1.5;
    font-weight: 400;
    padding-bottom: 34px;
}

.presenter-bio {
    color: var(--muted-green);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.presenter-cta {
    padding-top: 32px;
    color: var(--sage);
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
}

/* ========================================
   REGISTRATION CTA SECTION
======================================== */
.registration-section {
    padding: 96px 24px 0 24px;
    background-color: var(--stone);
}

.registration-container {
    max-width: 896px;
    margin: 0 auto;
    text-align: center;
}

.registration-title {
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.2;
    color: var(--charcoal);
    font-weight: 300;
    letter-spacing: -0.01em;
    margin-bottom: 24px;
}

.registration-subtitle {
    color: var(--muted-green);
    font-size: 18px;
    line-height: 1.7;
    max-width: 672px;
    margin: 0 auto 40px;
}

.registration-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 24px 48px;
    background-color: var(--sage);
    color: white;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.registration-cta:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform: scale(1.03);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.registration-cta:hover .cta-arrow {
    transform: translateX(4px);
}

.course-details-grid {
    margin-top: 64px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
}

.detail-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-icon {
    width: 32px;
    height: 32px;
    color: var(--sage);
    margin-bottom: 16px;
}

.detail-label {
    text-transform: uppercase;
    font-size: 12px;
    color: var(--sage);
    letter-spacing: 0.1em;
    font-weight: 500;
    margin-bottom: 8px;
}

.detail-value {
    color: var(--charcoal);
    font-size: 17px;
    font-weight: 500;
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (min-width: 768px) {
    .hero-content {
        padding: 0 48px;
    }

    .course-overview-section {
        padding: 128px 48px 64px 48px;
    }

    .presenter-section {
        padding: 64px 48px 128px 48px;
    }

    .registration-section {
        padding: 128px 48px;
    }

    .two-column-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
    }

    .presenter-grid {
        grid-template-columns: 2fr 3fr;
        gap: 64px;
    }

    .course-details-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 48px;
    }

    .image-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .gallery-image-wrapper img {
        height: 350px;
    }

    .image-gallery-section {
        padding: 80px 48px;
    }
}

/* ========================================
   MODAL POPUP STYLES
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 12px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(20px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
    color: var(--muted-green);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    z-index: 10;
}

.modal-close:hover {
    background: var(--stone);
    color: var(--charcoal);
}

.modal-header {
    padding: 32px 32px 24px 32px;
    border-bottom: 1px solid var(--stone);
    text-align: center;
}

.modal-title {
    font-size: 28px;
    font-weight: 400;
    color: var(--charcoal);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
}

.modal-subtitle {
    font-size: 16px;
    color: var(--sage);
    font-weight: 400;
}

.modal-body {
    padding: 0;
}

/* Override ewebinar form padding when inside modal */
.modal-body .ewebinar__RegForm__Content {
    padding: 24px 32px !important;
}

.modal-body .ewebinar__RegForm__Footer {
    padding: 0 32px 32px 32px !important;
}

/* Responsive modal */
@media (max-width: 768px) {
    .modal-container {
        max-height: 95vh;
        margin: 10px;
    }

    .modal-header {
        padding: 24px 20px 20px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-subtitle {
        font-size: 14px;
    }

    .modal-body .ewebinar__RegForm__Content {
        padding: 20px !important;
    }

    .modal-body .ewebinar__RegForm__Footer {
        padding: 0 20px 20px 20px !important;
    }

    .modal-close {
        top: 12px;
        right: 12px;
        font-size: 28px;
        width: 36px;
        height: 36px;
    }
}

/* Smooth scrollbar for modal */
.modal-container::-webkit-scrollbar {
    width: 8px;
}

.modal-container::-webkit-scrollbar-track {
    background: var(--warm-white);
}

.modal-container::-webkit-scrollbar-thumb {
    background: var(--eucalyptus);
    border-radius: 4px;
}

.modal-container::-webkit-scrollbar-thumb:hover {
    background: var(--sage);
}

footer,
.site-footer,
#colophon {
  background: #0B4221;
  width: 100%;
}

footer .footer-inner,
footer .wp-block-group__inner-container,
footer .container,
footer .ast-container {
  max-width: 1280px;   /* keep content aligned to site grid */
  margin: 0 auto;
  padding: 48px 32px;
}/* End custom CSS */