/* Home CTA (Tradition) Section Styles */

.home-cta {
    padding: 0;
    background-color: #ffffff;
}

.home-cta__inner {
    background-color: #4B301D;
    border-radius: 2rem;
    margin-top: 2rem;
    padding: 2rem 3rem;
    color: #FDF8F3;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    gap: 4rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px -20px rgba(75, 52, 37, 0.4);
}

.home-cta__content {
    flex: 1 1 50%;
    z-index: 2;
}

.home-cta__title {
    font-family: 'Playfair Display', serif;
    font-size: var(--font-size-h1);
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #ffffff;
}

.home-cta__description {
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg);
    line-height: 1.7;
    color: #E6D5C5;
    margin-bottom: 2.5rem;
    max-width: 100%;
}

.home-cta__description p {
    margin-bottom: 1.5rem;
}

.home-cta__description p:last-child {
    margin-bottom: 0;
}

.home-cta__button {
    display: inline-flex;
    align-items: center;
    background-color: #ffffff;
    color: #4B3425;
    padding: 1rem 2.5rem;
    border-radius: 9999px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-size: var(--font-size-lg);
}

.home-cta__button:hover {
    background-color: #FDF8F3;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.2);
}

.home-cta__image {
    flex: 1 1 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
}

.home-cta__image img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 1rem;
}

/* Media Queries consolidated at the end */
@media (max-width: 1019px) {
    .home-cta__inner {
        flex-direction: column;
        padding: 0 3rem;
        gap: 3rem;
    }

    .home-cta__image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .home-cta__inner {
        padding: 0 1.5rem;
    }

    .home-cta__title {
        font-size: var(--font-size-h2);
    }

    .home-cta__button {
        width: 100%;
        justify-content: center;
    }
}