/* Call to Action Section Styles */

.cta-section {
    padding: 4rem 1rem;
    --cta-text-color: #222;
    --cta-bg: #fff;
}

/* Themes */
.cta-section.theme-light {
    background-color: var(--chickin-offwhite, #f9f9f9);
}

.cta-section.theme-orange {
    background: linear-gradient(135deg, var(--chickin-orange) 0%, #d17d1f 100%);
    --cta-text-color: #fff;
    color: white;
}

.cta-section.theme-dark {
    background-color: var(--chickin-anthracite);
    --cta-text-color: #fff;
    color: white;
}

/* Wrapper */
.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Content */
.cta-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--cta-text-color);
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    max-width: 600px;
    color: var(--cta-text-color);
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Button variants specific to CTA */
.cta-section .btn {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cta-section.theme-orange .btn-primary {
    background-color: white;
    color: var(--chickin-orange) !important;
    border-color: white;
}
.cta-section.theme-orange .btn-primary:hover {
    background-color: var(--chickin-anthracite);
    color: white !important;
    border-color: var(--chickin-anthracite);
}

.cta-section.theme-orange .btn-outline {
    background-color: transparent;
    color: white;
    border-color: white;
}
.cta-section.theme-orange .btn-outline:hover {
    background-color: white;
    color: var(--chickin-orange);
}

.cta-section.theme-dark .btn-primary {
    background-color: var(--chickin-orange);
    border-color: var(--chickin-orange);
}

/* Link style button */
.btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--cta-text-color);
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 600;
    background: none;
    border: none;
    cursor: pointer;
    opacity: 0.9;
    transition: opacity 0.2s;
    padding: 0.5rem 1rem;
}
.btn-link:hover {
    opacity: 1;
}


/* ===========================
   STYLE: SIMPLE (Centered)
   =========================== */
.style-simple .cta-wrapper {
    max-width: 800px;
}


/* ===========================
   STYLE: SPLIT (2 columns)
   =========================== */
.style-split .cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.style-split .cta-content {
    text-align: left;
    align-items: flex-start;
}

.style-split .cta-buttons {
    justify-content: flex-start;
}

.cta-visual {
    width: 100%;
    max-width: 500px;
}
.cta-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

@media (max-width: 768px) {
    .style-split .cta-wrapper {
        grid-template-columns: 1fr;
    }
    .style-split .cta-content {
        text-align: center;
        align-items: center;
    }
    .style-split .cta-buttons {
        justify-content: center;
    }
}


/* ===========================
   STYLE: BANNER (Full Width Emphasis)
   =========================== */
.style-banner {
    padding: 5rem 1rem;
}
.style-banner .cta-title {
    font-size: 3rem;
}
.style-banner .cta-description {
    font-size: 1.5rem;
}


/* ===========================
   STYLE: COVER (Background Image)
   =========================== */
.style-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 1rem;
    position: relative;
}

.style-cover .cta-wrapper {
    max-width: 900px;
}

.style-cover .cta-title,
.style-cover .cta-description,
.style-cover .btn-link {
    color: white;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.style-cover .btn-primary {
    background-color: var(--chickin-orange);
    color: white;
    border-color: var(--chickin-orange);
}

.style-cover .btn-outline {
    background-color: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border-color: white;
}
.style-cover .btn-outline:hover {
    background-color: white;
    color: var(--chickin-orange);
}


/* Mobile adjustments */
@media (max-width: 600px) {
    .cta-title {
        font-size: 2rem;
    }
    .cta-description {
        font-size: 1.1rem;
    }
    .style-banner .cta-title {
        font-size: 2.2rem;
    }
    .style-cover {
        padding: 4rem 1rem;
    }
}
