/**
 * Integra Full Width Content and CTA Block Styles
 */

.integrafullwidthcontentandcta-wrapper {
    min-height: 500px;
    overflow: hidden;
}

/* Content Wrapper */
.integrafullwidthcontentandcta-content-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background Image */
.integrafullwidthcontentandcta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

/* Overlay */
.integrafullwidthcontentandcta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    opacity: 0.3;
}

/* Custom Overlay - No default opacity */
.integrafullwidthcontentandcta-overlay.custom-overlay {
    opacity: 1;
}

/* Background Colors */
.bg-primary {
    background-color: var(--primary);
}

.bg-secondary {
    background-color: var(--secondary);
}

.bg-tertiary {
    background-color: var(--tertiary);
}

.bg-dark-green {
    background-color: var(--dark-green);
}

/* Content */
.integrafullwidthcontentandcta-content {
    position: relative;
    z-index: 3;
    padding: 30px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.integrafullwidthcontentandcta-title {
    color: white;
    margin-top: 0;
    margin-bottom: 20px;
    text-align: center;
}

.integrafullwidthcontentandcta-copy {
    color: white;
    margin-bottom: 30px;
    text-align: center;
}

.integrafullwidthcontentandcta-copy p {
    color: white;
    text-align: center;
}

.btn-darkgreen {
    background-color: var(--dark-green);
    color: white;
}

/* Hover States */
.btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive Styles */
@media (max-width: 767px) {
    .integrafullwidthcontentandcta-content-wrapper {
        min-height: 400px;
    }

    .integrafullwidthcontentandcta-content {
        padding: 30px;
        max-width: 90%;
    }
}