/* Welcome Section Styles */
.welcome-section {
    padding: 4rem 1rem;
    width: 100%;
}

.welcome-section__container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    /* Allows responsive stacking */
}

/* Image styles */
.welcome-section__image-wrapper {
    flex: 1;
    min-width: 300px;
    max-width: 550px;
}

.welcome-section__image {
    width: 100%;
    height: auto;
    aspect-ratio: 504/459;
    /* Maintains image proportion */
    box-shadow: 0px 8px 24px -3px rgba(16, 24, 40, 0.10);
    /* outline: 6px solid white; */
    outline-offset: -3px;
    object-fit: cover;
}

/* Content area styles */
.welcome-section__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 50px;
    min-width: 300px;
}

/* Title styles */
.welcome-section__title-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px 0;
}

.welcome-section__title {
    padding: 30px 40px;
    transform: rotate(-2deg);
    outline: 7px solid #FC0606;
    outline-offset: -3.5px;
    color: #FC0606;
    font-size: 44px;
    font-family: 'Stardos Stencil', cursive;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 52px;
    letter-spacing: 0.5px;
    text-align: center;
    display: inline-block;
    background-color: transparent;
}

/* Text content styles */
.welcome-section__text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    width: 100%;
}

.welcome-section__heading {
    color: white;
    font-size: 28px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 36px;
    text-align: center;
    margin: 0;
}

.welcome-section__description {
    color: #D1D1D1;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    line-height: 25px;
    text-align: center;
    margin: 0;
}

.welcome-section__link {
    color: #D1D1D1;
    font-weight: 600;
    text-decoration: underline;
}

/* Button styles */
.welcome-section__buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.welcome-section__button {
    padding: 22px 32px;
    font-size: 22px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 22px;
    letter-spacing: 0.5px;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.welcome-section__button--primary {
    background: linear-gradient(0deg, white 0%, #ECECEC 50%, white 50%, #ECECEC 100%);
    outline: 4px solid #C1C1C1;
    outline-offset: -4px;
    color: #6D6D6D;
}

.welcome-section__button--primary:hover {
    background: linear-gradient(0deg, #ECECEC 0%, white 50%, #ECECEC 50%, white 100%);
}

.welcome-section__button--secondary {
    background-color: transparent;
    outline: 3px solid #FC0606;
    outline-offset: -1.5px;
    color: white;
}

.welcome-section__button--secondary:hover {
    background-color: rgba(252, 6, 6, 0.1);
}

/* Responsive adjustments */
@media screen and (max-width: 1024px) {
    .welcome-section__container {
        flex-direction: column;
    }

    .welcome-section__title {
        font-size: 36px;
        line-height: 44px;
        padding: 20px 30px;
    }

    .welcome-section__heading {
        font-size: 24px;
        line-height: 32px;
    }
}

@media screen and (max-width: 768px) {
    .welcome-section {
        padding: 3rem 1rem;
    }

    .welcome-section__title {
        font-size: 32px;
        line-height: 40px;
        padding: 15px 25px;
    }

    .welcome-section__content {
        gap: 30px;
    }

    .welcome-section__buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
}

@media screen and (max-width: 480px) {
    .welcome-section__title {
        font-size: 28px;
        line-height: 36px;
        padding: 15px 20px;
        outline-width: 5px;
    }

    .welcome-section__heading {
        font-size: 20px;
        line-height: 28px;
    }

    .welcome-section__description {
        font-size: 14px;
        line-height: 22px;
    }

    .welcome-section__button {
        padding: 18px 24px;
        font-size: 18px;
    }
}