/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text */
    background-color: #0A192F; /* Deep midnight blue */
    line-height: 1.6;
}

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

.page-promotions__section {
    padding: 60px 0;
    text-align: center;
}

.page-promotions__section-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for titles */
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.page-promotions__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #FFD700;
}

.page-promotions__description {
    font-size: 1.1em;
    color: #B0B0B0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #0A192F 0%, #1A3A5F 100%);
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 0;
}

.page-promotions__hero .page-promotions__container {
    position: relative;
    z-index: 1;
    max-width: 900px;
}

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

.page-promotions__hero p {
    font-size: 1.3em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-promotions__btn--primary {
    background-color: #FFD700;
    color: #0A192F;
    margin: 10px;
}

.page-promotions__btn--primary:hover {
    background-color: #E0B800;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin: 10px;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #0A192F;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

/* Intro Section Grid */
.page-promotions__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.page-promotions__feature-item {
    background-color: #1A2A4A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-promotions__feature-item:hover {
    transform: translateY(-10px);
}

.page-promotions__feature-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__feature-item p {
    color: #C0C0C0;
    font-size: 1em;
}

/* Promotions List Grid */
.page-promotions__promos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.page-promotions__promo-card {
    background-color: #1A2A4A;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions__promo-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.page-promotions__promo-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.page-promotions__promo-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-promotions__promo-content h3 {
    font-size: 1.8em;
    margin-bottom: 15px;
}

.page-promotions__promo-content h3 a {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions__promo-content h3 a:hover {
    color: #E0B800;
}

.page-promotions__promo-content p {
    color: #C0C0C0;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-promotions__promo-content .page-promotions__btn--secondary {
    align-self: flex-start;
    padding: 10px 20px;
    font-size: 0.95em;
}

/* How-to-Claim Section */
.page-promotions__how-to-claim {
    background-color: #0A192F;
}

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

.page-promotions__step-item {
    background-color: #1A2A4A;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    position: relative;
    padding-top: 60px; /* Space for number */
}

.page-promotions__step-number {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #FFD700;
    color: #0A192F;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2em;
    font-weight: bold;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

.page-promotions__step-item h3 {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-promotions__step-item p {
    color: #C0C0C0;
    font-size: 1em;
}

.page-promotions__step-item a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__step-item a:hover {
    color: #E0B800;
}

.page-promotions__cta-bottom {
    margin-top: 60px;
}

.page-promotions__cta-bottom p {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 30px;
}

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

/* Terms Section */
.page-promotions__terms {
    background-color: #1A2A4A;
}

.page-promotions__terms p {
    text-align: left;
    max-width: 900px;
    margin: 20px auto;
    color: #C0C0C0;
}

.page-promotions__terms a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__terms a:hover {
    color: #E0B800;
}

/* FAQ Section */
.page-promotions__faq {
    background-color: #0A192F;
}

.page-promotions__accordion {
    max-width: 900px;
    margin: 50px auto 0 auto;
    text-align: left;
}

.page-promotions__accordion-item {
    margin-bottom: 15px;
    border: 1px solid #FFD700;
    border-radius: 8px;
    overflow: hidden;
}

.page-promotions__accordion-header {
    background-color: #1A2A4A;
    color: #FFD700;
    padding: 18px 25px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.page-promotions__accordion-header:hover, .page-promotions__accordion-header.active {
    background-color: #2A3E6A;
}

.page-promotions__accordion-header::after {
    content: '\002B'; /* Plus sign */
    font-size: 1.5em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__accordion-header.active::after {
    content: '\2212'; /* Minus sign */
    transform: rotate(180deg);
}

.page-promotions__accordion-content {
    padding: 0 25px;
    background-color: #11223F;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-promotions__accordion-content.active {
    max-height: 200px; /* Adjust as needed */
    padding: 20px 25px;
}

.page-promotions__accordion-content p {
    color: #C0C0C0;
    font-size: 1em;
    margin: 0;
}

.page-promotions__accordion-content a {
    color: #FFD700;
    text-decoration: underline;
}

.page-promotions__accordion-content a:hover {
    color: #E0B800;
}

/* Final CTA Section */
.page-promotions__final-cta {
    background: linear-gradient(135deg, #1A2A4A 0%, #0A192F 100%);
    padding: 80px 0;
}

.page-promotions__final-cta p {
    font-size: 1.2em;
    color: #F0F0F0;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero h1 {
        font-size: 2.8em;
    }
    .page-promotions__section-title {
        font-size: 2.2em;
    }
    .page-promotions__promos-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-promotions__hero {
        padding: 80px 0;
    }
    .page-promotions__hero h1 {
        font-size: 2.2em;
    }
    .page-promotions__hero p {
        font-size: 1.1em;
    }
    .page-promotions__section {
        padding: 40px 0;
    }
    .page-promotions__section-title {
        font-size: 1.8em;
    }
    .page-promotions__grid, .page-promotions__steps {
        grid-template-columns: 1fr;
    }
    .page-promotions__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-promotions__promo-image {
        height: 180px;
    }
    .page-promotions__promo-content h3 {
        font-size: 1.5em;
    }
    .page-promotions__accordion-header {
        font-size: 1.1em;
        padding: 15px 20px;
    }
    .page-promotions__accordion-content.active {
        padding: 15px 20px;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero h1 {
        font-size: 1.8em;
    }
    .page-promotions__hero p {
        font-size: 0.95em;
    }
    .page-promotions__section-title {
        font-size: 1.5em;
    }
    .page-promotions__btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
    .page-promotions__feature-item, .page-promotions__promo-card, .page-promotions__step-item {
        padding: 20px;
    }
    .page-promotions__step-number {
        width: 40px;
        height: 40px;
        font-size: 1.5em;
        top: -20px;
    }
    .page-promotions__promo-content h3 {
        font-size: 1.3em;
    }
    .page-promotions__cta-buttons {
        flex-direction: column;
        gap: 10px;
    }
    .page-promotions__cta-buttons .page-promotions__btn {
        width: 100%;
        max-width: 280px;
    }
}