/* style/promotions.css */

/* Base styles for the page-promotions container */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f5ddc6; /* Light text for dark background */
    background-color: #0A2239;
    line-height: 1.6;
    padding-bottom: 60px;
}

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

/* Hero Section */
.page-promotions__hero-section {
    background: linear-gradient(135deg, #0A2239, #2C4A6B);
    padding: 100px 0;
    text-align: center;
    color: #FFD700;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('[GALLERY:bg:abstract,geometric,gold_lines]') no-repeat center center/cover;
    opacity: 0.1;
    z-index: 0;
}

.page-promotions__hero-section .page-promotions__container {
    position: relative;
    z-index: 1;
}

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

.page-promotions__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #f5ddc6;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A2239;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-promotions__btn--secondary {
    background-color: #2C4A6B;
    color: #FFD700;
    border: 1px solid #FFD700;
    padding: 10px 20px;
    font-size: 1em;
}

.page-promotions__btn--secondary:hover {
    background-color: #3f6081;
    transform: translateY(-2px);
}

.page-promotions__btn--block {
    display: block;
    width: fit-content;
    margin: 30px auto;
}

.page-promotions__btn--large {
    padding: 18px 35px;
    font-size: 1.2em;
}

/* Section Titles */
.page-promotions__section-title {
    font-size: 2.5em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    padding-top: 40px;
    position: relative;
}

.page-promotions__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-promotions__sub-title {
    font-size: 2em;
    color: #FFD700;
    margin-top: 50px;
    margin-bottom: 25px;
    border-left: 5px solid #FFD700;
    padding-left: 15px;
    font-weight: bold;
}

/* Featured Offers Section */
.page-promotions__featured-offers {
    padding: 60px 0;
    background-color: #0A2239;
}

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

.page-promotions__offer-card {
    background-color: #1A354E;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    padding-bottom: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions__offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-promotions__offer-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

.page-promotions__card-title {
    font-size: 1.5em;
    color: #FFD700;
    margin: 25px 15px 15px;
    font-weight: bold;
}

.page-promotions__card-title a {
    color: inherit;
    text-decoration: none;
}

.page-promotions__card-title a:hover {
    text-decoration: underline;
}

.page-promotions__card-description {
    color: #f5ddc6;
    font-size: 1em;
    padding: 0 20px;
    margin-bottom: 25px;
}

/* Full Content Section */
.page-promotions__full-content {
    padding: 80px 0;
    background-color: #0A2239;
}

.page-promotions__paragraph {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #f5ddc6;
}

.page-promotions__inline-link {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-promotions__inline-link:hover {
    text-decoration: underline;
}

.page-promotions__list,
.page-promotions__ordered-list {
    list-style-type: disc;
    margin-left: 30px;
    margin-bottom: 20px;
    color: #f5ddc6;
    font-size: 1.1em;
}

.page-promotions__ordered-list {
    list-style-type: decimal;
}

.page-promotions__list li,
.page-promotions__ordered-list li {
    margin-bottom: 10px;
}

.page-promotions__content-img {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: 3px solid #FFD700;
}

/* FAQ Section */
.page-promotions__faq-item {
    background-color: #1A354E;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-promotions__faq-question {
    font-size: 1.4em;
    color: #FFD700;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2em;
    transition: transform 0.3s ease;
}

.page-promotions__faq-question.active::after {
    content: '-';
    transform: rotate(180deg);
}

.page-promotions__faq-answer {
    color: #f5ddc6;
    font-size: 1.1em;
    display: none;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    margin-top: 15px;
}

.page-promotions__faq-answer.active {
    display: block;
}

/* Call to Action at the end */
.page-promotions__call-to-action {
    text-align: center;
    font-size: 1.5em;
    color: #FFD700;
    margin-top: 80px;
    font-weight: bold;
    line-height: 1.4;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero-title {
        font-size: 2.8em;
    }
    .page-promotions__hero-description {
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 2em;
    }
    .page-promotions__sub-title {
        font-size: 1.7em;
    }
    .page-promotions__offer-grid {
        grid-template-columns: 1fr;
    }
    .page-promotions__offer-card {
        margin: 0 10px;
    }
    .page-promotions__content-img {
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-title {
        font-size: 2.2em;
    }
    .page-promotions__hero-description {
        font-size: 1em;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__sub-title {
        font-size: 1.5em;
    }
    .page-promotions__paragraph,
    .page-promotions__list li,
    .page-promotions__ordered-list li,
    .page-promotions__faq-answer {
        font-size: 0.95em;
    }
    .page-promotions__faq-question {
        font-size: 1.2em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-title {
        font-size: 1.8em;
    }
    .page-promotions__hero-description {
        font-size: 0.9em;
    }
    .page-promotions__btn--large {
        padding: 15px 25px;
        font-size: 1.1em;
    }
    .page-promotions__section-title {
        font-size: 1.6em;
    }
    .page-promotions__sub-title {
        font-size: 1.3em;
    }
    .page-promotions__container {
        padding: 0 15px;
    }
    .page-promotions__call-to-action {
        font-size: 1.2em;
    }
}