/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #F8F8F8;
    background-color: #05143a; /* Slightly darker than main blue for depth */
    line-height: 1.6;
}

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

.page-promotions__hero {
    background: linear-gradient(135deg, #0A2463 0%, #05143a 100%);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.page-promotions__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin-bottom: 40px;
}

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

.page-promotions__hero-subtitle {
    font-size: 1.4em;
    color: #F8F8F8;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-promotions__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
}

.page-promotions__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.page-promotions__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.page-promotions__btn--primary {
    background-color: #E3B505;
    color: #0A2463;
    box-shadow: 0 4px 15px rgba(227, 181, 5, 0.4);
}

.page-promotions__btn--primary:hover {
    background-color: #f5cb3c;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 181, 5, 0.6);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #E3B505;
    border: 2px solid #E3B505;
    box-shadow: 0 4px 15px rgba(227, 181, 5, 0.2);
}

.page-promotions__btn--secondary:hover {
    background-color: rgba(227, 181, 5, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(227, 181, 5, 0.4);
}

.page-promotions__section-title {
    font-size: 2.5em;
    color: #E3B505;
    text-align: center;
    margin-bottom: 40px;
    padding-top: 60px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.page-promotions__text-content {
    font-size: 1.1em;
    color: #F8F8F8;
    margin-bottom: 20px;
    text-align: justify;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__introduction, .page-promotions__types, .page-promotions__detail-list, .page-promotions__why-join, .page-promotions__cta {
    padding: 60px 0;
    background-color: #0A2463;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-promotions__introduction {
    background-color: #0A2463;
    padding-bottom: 20px;
}

.page-promotions__image-fullwidth {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__image-margin-top {
    margin-top: 60px;
}

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

.page-promotions__card {
    background-color: #05143a;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-promotions__card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    filter: drop-shadow(0 0 5px rgba(227, 181, 5, 0.6));
}

.page-promotions__card-title {
    font-size: 1.6em;
    color: #E3B505;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__card-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__btn--small {
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 6px;
    background-color: #E3B505;
    color: #0A2463;
}

.page-promotions__btn--small:hover {
    background-color: #f5cb3c;
    transform: translateY(-2px);
}

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

.page-promotions__list-card {
    background-color: #05143a;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__list-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-promotions__list-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__list-title a {
    color: #E3B505;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__list-title a:hover {
    color: #f5cb3c;
    text-decoration: underline;
}

.page-promotions__list-description {
    font-size: 1em;
    color: #CCCCCC;
    margin-bottom: 20px;
}

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

.page-promotions__why-item {
    text-align: center;
    padding: 25px;
    background-color: #05143a;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

.page-promotions__why-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 4px rgba(227, 181, 5, 0.5));
}

.page-promotions__why-item h3 {
    font-size: 1.3em;
    color: #E3B505;
    margin-bottom: 10px;
}

.page-promotions__why-item p {
    font-size: 0.95em;
    color: #CCCCCC;
}

.page-promotions__cta {
    text-align: center;
    background: linear-gradient(90deg, #0A2463 0%, #05143a 100%);
    padding: 80px 20px;
    border-radius: 10px;
    margin-top: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-title {
    font-size: 2.8em;
    color: #E3B505;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

.page-promotions__cta-description {
    font-size: 1.2em;
    color: #F8F8F8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.page-promotions__btn--cta {
    padding: 18px 40px;
    font-size: 1.3em;
    border-radius: 10px;
    background-color: #E3B505;
    color: #0A2463;
    box-shadow: 0 6px 20px rgba(227, 181, 5, 0.5);
}

.page-promotions__btn--cta:hover {
    background-color: #f5cb3c;
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(227, 181, 5, 0.7);
}

.page-promotions__cta-small-text {
    margin-top: 30px;
    font-size: 1em;
    color: #CCCCCC;
}

.page-promotions__link-login {
    color: #E3B505;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-promotions__link-login:hover {
    color: #f5cb3c;
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-promotions__hero-title {
        font-size: 3em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.3em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__grid, .page-promotions__list-items, .page-promotions__why-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .page-promotions__cta-title {
        font-size: 2.2em;
    }
    .page-promotions__btn--cta {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
        min-height: 400px;
    }
    .page-promotions__hero-title {
        font-size: 2.5em;
    }
    .page-promotions__hero-subtitle {
        font-size: 1.1em;
    }
    .page-promotions__hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-promotions__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
        padding-top: 40px;
    }
    .page-promotions__text-content {
        font-size: 1em;
    }
    .page-promotions__introduction, .page-promotions__types, .page-promotions__detail-list, .page-promotions__why-join, .page-promotions__cta {
        padding: 40px 0;
    }
    .page-promotions__cta-title {
        font-size: 1.8em;
    }
    .page-promotions__cta-description {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero {
        padding: 60px 0;
        min-height: 350px;
    }
    .page-promotions__hero-title {
        font-size: 2em;
    }
    .page-promotions__hero-subtitle {
        font-size: 0.95em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
        padding-top: 30px;
    }
    .page-promotions__card-title {
        font-size: 1.3em;
    }
    .page-promotions__list-title {
        font-size: 1.2em;
    }
    .page-promotions__cta-title {
        font-size: 1.5em;
    }
    .page-promotions__btn--cta {
        padding: 12px 25px;
        font-size: 1em;
    }
}