/* ========================================
   WREAU Hero Widget - Full Styling
   ======================================== */

/* Wrapper &amp; Background */
.wreau-hero-wrapper {
    position: relative;
    background-color: #E8F3F0;          /* light green from your design */
    padding: 80px 20px;
    overflow: hidden;
    min-height: 600px;
}

.wreau-hero-slideshow,
.wreau-hero-slideshow-item {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}

.wreau-hero-slideshow-item {
    opacity: 0;
    transition: opacity 1.5s ease;
}

.wreau-hero-slideshow-item.active {
    opacity: 1;
}

.wreau-hero-slideshow-overlay {
    position: absolute;
    inset: 0;
    background-color: #000;             /* you can change to your overlay color */
    opacity: 0.3;
    z-index: 1;
}

/* Container */
.wreau-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Content Area */
.wreau-hero-content {
    flex: 1;
    min-width: 0;
}

/* Tagline */
.wreau-hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #ffffff;
    color: #2D6F5E;
    padding: 8px 20px;
    border-radius: 999px;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
}

.wreau-hero-tagline i,
.wreau-hero-tagline svg {
    color: #4CAF50;
    font-size: 18px;
}

/* Heading */
.wreau-hero-heading {
    color: #1a1a1a;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 24px;
}

/* Description */
.wreau-hero-description {
    color: #4a5568;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Buttons */
.wreau-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 60px;
}

.wreau-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;                /* rounded like your design */
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wreau-hero-btn-primary {
    background-color: #2D6F5E;
    color: #ffffff;
    border: none;
}

.wreau-hero-btn-primary:hover {
    background-color: #235749;
}

.wreau-hero-btn-secondary {
    background-color: #FFC107;
    color: #1a1a1a;
    border: none;
}

.wreau-hero-btn-secondary:hover {
    background-color: #FFD54F;
}

.wreau-hero-btn-outline {
    background: transparent;
    border: 2px solid #1a1a1a;
    color: #1a1a1a;
}

.wreau-hero-btn-outline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* Info Cards */
.wreau-hero-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.wreau-hero-card {
    flex: 1;
    min-width: 220px;
    background: #ffffff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.wreau-hero-card-icon {
    font-size: 40px;
    color: #4CAF50;
    margin-bottom: 12px;
}

.wreau-hero-card-label {
    color: #2D6F5E;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wreau-hero-card-title {
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 700;
}

/* Sidebar */
.wreau-hero-sidebar {
    width: 380px;
    background-color: #F5F5DC;          /* beige/cream from design */
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.1);
}

.wreau-hero-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.wreau-hero-sidebar-title {
    color: #2D6F5E;
    font-size: 20px;
    font-weight: 800;
    margin: 0;
}

.wreau-hero-sidebar-dots {
    display: flex;
    gap: 8px;
}

.wreau-hero-sidebar-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.wreau-hero-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
}

.wreau-hero-sidebar-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #1a1a1a;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 16px;
}

.wreau-hero-sidebar-icon {
    color: #4CAF50;
    font-size: 18px;
    font-weight: bold;
}

.wreau-hero-sidebar-footer-title {
    color: #2D6F5E;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 12px;
}

.wreau-hero-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.wreau-hero-tag {
    background: rgba(45, 111, 94, 0.1);
    color: #2D6F5E;
    padding: 6px 16px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
}

/* Responsive */
@media (max-width: 1024px) {
    .wreau-hero-container {
        flex-direction: column;
    }
    .wreau-hero-sidebar {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .wreau-hero-heading {
        font-size: 36px;
    }
    .wreau-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}


.page-header {
  display: none !important;
}


.elementor-column-gap-default > .elementor-column > .elementor-element-populated {
  padding: 1px !important;
}




* Our Causes Widget - Improved &amp; Modern */

.wreau-causes-wrapper {
    padding: 100px 20px 80px;
    background: #ffffff;
    text-align: center;
}

.wreau-causes-heading {
    max-width: 880px;
    margin: 0 auto 70px;
}

.wreau-causes-subtitle {
    color: #2D6F5E;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.wreau-causes-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    color: #1a1a1a;
    margin: 0 0 24px;
}

.wreau-causes-description {
    font-size: 18px;
    line-height: 1.65;
    color: #4a5568;
    max-width: 720px;
    margin: 0 auto;
}

.wreau-causes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.wreau-cause-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid #e2e8f0;
    transition: all 0.35s ease;
    text-align: center;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wreau-cause-card:hover {
    transform: translateY(-10px);
    border-color: #2D6F5E;
    box-shadow: 0 20px 40px rgba(45, 111, 94, 0.12);
}

.cause-icon {
    font-size: 42px;
    color: #2D6F5E;
    margin-bottom: 20px;
    line-height: 1;
}

.cause-icon svg,
.cause-icon i {
    width: 1em;
    height: 1em;
}

.cause-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
}

.cause-description {
    font-size: 15.5px;
    line-height: 1.55;
    color: #4a5568;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .wreau-causes-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .wreau-causes-grid {
        grid-template-columns: 1fr;
    }
    
    .wreau-causes-title {
        font-size: 34px;
    }
    
    .wreau-cause-card {
        padding: 32px 24px;
    }
}
