/* style/happyluke-intro.css */

.page-happyluke-intro {
    font-family: 'Arial', sans-serif;
    color: #e0e0e0;
    background-color: #0A192F;
    line-height: 1.6;
}

.page-happyluke-intro__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-happyluke-intro__hero {
    background: linear-gradient(135deg, #0A192F, #1a3a5e);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-happyluke-intro__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: bold;
}

.page-happyluke-intro__hero-description {
    font-size: 1.3em;
    color: #ffffff;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-happyluke-intro__hero-image {
    width: 100%;
    max-width: 900px;
    height: auto;
    margin-top: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-happyluke-intro__section {
    padding: 60px 0;
    background-color: #0A192F;
}

.page-happyluke-intro__section--alt-bg {
    background-color: #1a2a41;
}

.page-happyluke-intro__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-happyluke-intro__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    border-radius: 2px;
}

.page-happyluke-intro__text-content {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
    text-align: justify;
}

.page-happyluke-intro__image-full-width {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 40px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.page-happyluke-intro__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-happyluke-intro__list-item {
    background-color: #1a2a41;
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    font-size: 1.1em;
    color: #ffffff;
    border-left: 5px solid #FFD700;
}

.page-happyluke-intro__list-item strong {
    color: #FFD700;
}

.page-happyluke-intro__features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-happyluke-intro__feature-item {
    background-color: #1a2a41;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-happyluke-intro__feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

.page-happyluke-intro__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 5px #FFD700);
}

.page-happyluke-intro__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-happyluke-intro__feature-description {
    font-size: 1em;
    color: #e0e0e0;
}

.page-happyluke-intro__steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-happyluke-intro__step-item {
    background-color: #0A192F;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    border: 1px solid #FFD700;
}

.page-happyluke-intro__step-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-happyluke-intro__step-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 20px;
}

.page-happyluke-intro__detail-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-happyluke-intro__card {
    background-color: #1a2a41;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.0s ease, box-shadow 0.3s ease;
}

.page-happyluke-intro__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-happyluke-intro__card-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-happyluke-intro__card-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.page-happyluke-intro__card-link:hover {
    color: #ffe87c;
    text-decoration: underline;
}

.page-happyluke-intro__card-description {
    font-size: 0.95em;
    color: #c0c0c0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-happyluke-intro__cta-final {
    background: linear-gradient(135deg, #1a2a41, #0A192F);
    padding: 80px 0;
    text-align: center;
}

.page-happyluke-intro__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-happyluke-intro__cta-description {
    font-size: 1.2em;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto 40px;
}

.page-happyluke-intro__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
    text-align: center;
    white-space: nowrap;
}

.page-happyluke-intro__button--primary {
    background-color: #FFD700;
    color: #0A192F;
    border: 2px solid #FFD700;
}

.page-happyluke-intro__button--primary:hover {
    background-color: #ffe87c;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-happyluke-intro__button--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
}

.page-happyluke-intro__button--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

.page-happyluke-intro__button--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 30px;
    margin-top: auto; /* Push button to the bottom of the card */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-happyluke-intro__hero-title {
        font-size: 2.5em;
    }

    .page-happyluke-intro__hero-description {
        font-size: 1.1em;
    }

    .page-happyluke-intro__section-title {
        font-size: 2em;
    }

    .page-happyluke-intro__feature-title {
        font-size: 1.4em;
    }

    .page-happyluke-intro__step-title {
        font-size: 1.5em;
    }

    .page-happyluke-intro__cta-title {
        font-size: 2.2em;
    }

    .page-happyluke-intro__features-grid, 
    .page-happyluke-intro__steps-grid, 
    .page-happyluke-intro__detail-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-happyluke-intro__hero {
        padding: 60px 0;
    }

    .page-happyluke-intro__hero-title {
        font-size: 2em;
    }

    .page-happyluke-intro__hero-description {
        font-size: 1em;
    }

    .page-happyluke-intro__section {
        padding: 40px 0;
    }

    .page-happyluke-intro__section-title {
        font-size: 1.8em;
    }

    .page-happyluke-intro__cta-title {
        font-size: 1.8em;
    }

    .page-happyluke-intro__button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-happyluke-intro__hero-title {
        font-size: 1.8em;
    }

    .page-happyluke-intro__hero-description {
        font-size: 0.9em;
    }

    .page-happyluke-intro__section-title {
        font-size: 1.5em;
    }

    .page-happyluke-intro__feature-item,
    .page-happyluke-intro__step-item,
    .page-happyluke-intro__card {
        padding: 20px;
    }

    .page-happyluke-intro__feature-title {
        font-size: 1.2em;
    }

    .page-happyluke-intro__step-title {
        font-size: 1.3em;
    }

    .page-happyluke-intro__cta-title {
        font-size: 1.5em;
    }

    .page-happyluke-intro__button {
        width: 100%;
        max-width: 280px;
        margin-top: 10px;
    }
}