/* style/promo.css */
.page-promo {
    color: #333333; /* Dark text for light body background */
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-promo__section-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

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

.page-promo__section-intro {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
    color: #555555;
}

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

.page-promo__btn--primary {
    background-color: #FCBC45; /* Login color */
    color: #000000;
}

.page-promo__btn--primary:hover {
    background-color: #e0a53a;
    transform: translateY(-2px);
}

.page-promo__btn--secondary {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-promo__btn--secondary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

/* Hero Section */
.page-promo__hero-section {
    position: relative;
    text-align: center;
    color: #FFFFFF;
    overflow: hidden;
    padding: 0;
}

.page-promo__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    filter: brightness(0.6); /* Darken image for text readability, not changing color */
}

.page-promo__hero-container {
    position: relative;
    width: 100%;
    height: 600px; /* Fixed height for hero section */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.page-promo__hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 40px 20px;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent overlay for text */
    border-radius: 10px;
}

.page-promo__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-promo__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
}

.page-promo__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Promotions Grid */
.page-promo__promotions-grid {
    padding: 80px 0;
    background-color: #f9f9f9;
}

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

.page-promo__promo-card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.page-promo__promo-card:hover {
    transform: translateY(-10px);
}

.page-promo__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.page-promo__card-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-promo__card-title {
    font-size: 1.8em;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promo__card-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promo__btn--card {
    margin-top: auto;
    background-color: #FCBC45;
    color: #000000;
    padding: 12px 25px;
    font-size: 1em;
    border-radius: 5px;
}

.page-promo__btn--card:hover {
    background-color: #e0a53a;
}

/* Details List */
.page-promo__details-list {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-promo__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.page-promo__list-item {
    background-color: #f9f9f9;
    border-left: 5px solid #FCBC45;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.page-promo__list-title {
    font-size: 1.8em;
    margin-bottom: 10px;
}

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

.page-promo__list-title a:hover {
    color: #FCBC45;
}

.page-promo__list-description {
    font-size: 1em;
    line-height: 1.6;
    color: #555555;
    margin-bottom: 20px;
}

.page-promo__btn--details {
    background-color: #000000;
    color: #FFFFFF;
    padding: 10px 20px;
    font-size: 0.95em;
    border-radius: 5px;
}

.page-promo__btn--details:hover {
    background-color: #333333;
}

/* Why Choose Section */
.page-promo__why-choose {
    padding: 80px 0;
    background-color: #f0f0f0;
}

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

.page-promo__feature-item {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.page-promo__feature-item:hover {
    transform: translateY(-8px);
}

.page-promo__feature-icon {
    width: 250px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-promo__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-promo__feature-description {
    font-size: 0.95em;
    color: #555555;
    line-height: 1.6;
}

.page-promo__section-conclusion {
    font-size: 1.1em;
    line-height: 1.6;
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0 auto;
    color: #555555;
}

/* Call to Action Section */
.page-promo__cta-section {
    padding: 80px 0;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
}

.page-promo__cta-section .page-promo__section-title,
.page-promo__cta-section .page-promo__section-intro {
    color: #FFFFFF;
}

.page-promo__cta-section .page-promo__section-title::after {
    background-color: #FCBC45;
}

.page-promo__cta-section .page-promo__btn--primary {
    margin-top: 30px;
    background-color: #FCBC45;
    color: #000000;
}

.page-promo__cta-section .page-promo__btn--primary:hover {
    background-color: #e0a53a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-promo__hero-title {
        font-size: 3em;
    }
    .page-promo__hero-description {
        font-size: 1.2em;
    }
    .page-promo__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-promo__hero-container {
        height: 500px;
    }
    .page-promo__hero-content {
        padding: 30px 15px;
    }
    .page-promo__hero-title {
        font-size: 2.5em;
    }
    .page-promo__hero-description {
        font-size: 1em;
    }
    .page-promo__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-promo__btn {
        width: 80%;
        margin: 0 auto;
    }
    .page-promo__grid,
    .page-promo__features {
        grid-template-columns: 1fr;
    }
    .page-promo__section-title {
        font-size: 2em;
    }
    .page-promo__section-intro {
        font-size: 0.95em;
    }
    .page-promo__promo-card,
    .page-promo__list-item,
    .page-promo__feature-item {
        margin: 0 auto;
        max-width: 450px;
    }
    .page-promo__hero-section .page-promo__hero-image,
    .page-promo__promotions-grid .page-promo__promo-card img,
    .page-promo__why-choose .page-promo__feature-item img {
        max-width: 100%;
        height: auto;
    }
    .page-promo__feature-icon {
        width: 100%;
        height: auto;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .page-promo__hero-container {
        height: 400px;
    }
    .page-promo__hero-title {
        font-size: 2em;
    }
    .page-promo__hero-description {
        font-size: 0.9em;
    }
    .page-promo__btn {
        padding: 12px 20px;
        font-size: 1em;
    }
    .page-promo__section-title {
        font-size: 1.8em;
    }
    .page-promo__card-title,
    .page-promo__list-title {
        font-size: 1.5em;
    }
    .page-promo__feature-title {
        font-size: 1.3em;
    }
}