/* style/promotions.css */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #f0f0f0; /* Light grey for general text on dark background */
    background-color: #1a1a1a; /* Dark background */
    line-height: 1.6;
}

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

/* Hero Section */
.page-promotions__hero {
    background: linear-gradient(135deg, #8B0000, #4d0000); /* Dark red gradient */
    padding: 80px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.page-promotions__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 215, 0, 0.1), transparent 70%);
    animation: page-promotions-rotate 20s linear infinite;
}

@keyframes page-promotions-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.page-promotions__hero-content {
    flex: 1;
    text-align: left;
    z-index: 1;
    max-width: 600px;
}

.page-promotions__hero-content h1 {
    font-size: 3.5em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

.page-promotions__hero-content p {
    font-size: 1.2em;
    color: #e0e0e0; /* Lighter grey for hero paragraph */
    margin-bottom: 30px;
}

.page-promotions__hero-image {
    flex: 1;
    text-align: right;
    z-index: 1;
}

.page-promotions__hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

/* General Headings */
.page-promotions h2 {
    font-size: 2.5em;
    color: #FFD700; /* Gold for section titles */
    text-align: center;
    margin-top: 60px;
    margin-bottom: 40px;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

.page-promotions h3 {
    font-size: 1.8em;
    color: #FFD700; /* Gold for sub-titles */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-promotions p {
    color: #f0f0f0; /* Light grey for paragraphs */
    margin-bottom: 15px;
}

/* 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;
    text-align: center;
    white-space: nowrap;
}

.page-promotions__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #8B0000; /* Dark red text on gold */
    border: 2px solid #FFD700;
    margin-right: 15px;
}

.page-promotions__btn--primary:hover {
    background-color: #e6c200;
    border-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

.page-promotions__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
}

.page-promotions__btn--secondary:hover {
    background-color: #FFD700;
    color: #8B0000; /* Dark red text on gold hover */
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(255, 215, 0, 0.3);
}

/* Intro Section */
.page-promotions__intro {
    padding: 60px 0;
    background-color: #222;
    text-align: center;
}

.page-promotions__intro p {
    max-width: 900px;
    margin: 0 auto 15px auto;
    font-size: 1.1em;
}

/* Promotions List Grid */
.page-promotions__list {
    padding: 60px 0;
    background-color: #1a1a1a;
}

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

.page-promotions__card {
    background-color: #2a2a2a; /* Slightly lighter dark background */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px 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(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
}

.page-promotions__card img {
    max-width: 100%;
    height: 180px; /* Fixed height for images */
    object-fit: cover; /* Ensure images cover the area */
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-promotions__card h3 {
    color: #FFD700;
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 10px;
}

.page-promotions__card p {
    color: #ccc;
    font-size: 0.95em;
    flex-grow: 1;
    margin-bottom: 20px;
}

.page-promotions__card .page-promotions__btn {
    margin-top: auto; /* Push button to bottom */
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    padding: 10px 20px;
    font-size: 1em;
}

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

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

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

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

.page-promotions__feature-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-promotions__feature-item h3 {
    color: #FFD700;
    font-size: 1.4em;
    margin-top: 0;
}

.page-promotions__feature-item p {
    color: #ccc;
    font-size: 0.95em;
}

/* Terms & Tips Sections */
.page-promotions__terms, .page-promotions__tips {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.page-promotions__terms h2, .page-promotions__tips h2 {
    margin-bottom: 30px;
}

.page-promotions__terms ul, .page-promotions__tips ul {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-promotions__terms li, .page-promotions__tips li {
    background-color: #2a2a2a;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    color: #f0f0f0;
    font-size: 1.05em;
    border-left: 5px solid #FFD700;
}

.page-promotions__terms li strong, .page-promotions__tips li strong {
    color: #FFD700;
}

/* FAQ Section */
.page-promotions__faq {
    padding: 60px 0;
    background-color: #222;
}

.page-promotions__faq-item {
    background-color: #2a2a2a;
    border-radius: 10px;
    margin-bottom: 20px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border-left: 4px solid #8B0000; /* Dark red accent */
}

.page-promotions__faq-item h3 {
    color: #FFD700; /* Gold for FAQ questions */
    font-size: 1.3em;
    margin-top: 0;
    margin-bottom: 10px;
    cursor: pointer;
    position: relative;
    padding-right: 30px;
}

.page-promotions__faq-item h3::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2em;
    color: #FFD700;
    transition: transform 0.3s ease;
}

.page-promotions__faq-item h3.active::after {
    content: '-';
    transform: translateY(-50%) rotate(180deg);
}

.page-promotions__faq-item p {
    color: #ccc; /* Light grey for FAQ answers */
    font-size: 1em;
    margin-top: 15px;
    display: none; /* Hidden by default, toggled by JS */
}

.page-promotions__faq-item p.active {
    display: block;
}

/* Call to Action Section */
.page-promotions__cta {
    background: linear-gradient(90deg, #8B0000, #FFD700); /* Red to gold gradient */
    padding: 80px 0;
    text-align: center;
    color: #f0f0f0;
}

.page-promotions__cta h2 {
    color: #fff; /* White for CTA title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

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

.page-promotions__cta .page-promotions__btn {
    margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions__hero {
        flex-direction: column;
        text-align: center;
        padding: 60px 20px;
    }

    .page-promotions__hero-content {
        max-width: 100%;
    }

    .page-promotions__hero-content h1 {
        font-size: 2.8em;
    }

    .page-promotions__hero-image {
        margin-top: 40px;
    }

    .page-promotions h2 {
        font-size: 2em;
    }

    .page-promotions__grid, .page-promotions__features {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-content h1 {
        font-size: 2.2em;
    }

    .page-promotions__hero-content p {
        font-size: 1em;
    }

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

    .page-promotions__card img {
        height: 150px;
    }

    .page-promotions h2 {
        font-size: 1.8em;
    }

    .page-promotions h3 {
        font-size: 1.4em;
    }
}

@media (max-width: 480px) {
    .page-promotions__hero-content h1 {
        font-size: 1.8em;
    }

    .page-promotions__btn {
        width: 100%;
        margin: 10px 0;
    }

    .page-promotions__hero-content .page-promotions__btn--primary {
        margin-right: 0;
    }

    .page-promotions__cta .page-promotions__btn {
        margin: 10px 0;
    }

    .page-promotions__card, .page-promotions__feature-item, .page-promotions__faq-item {
        padding: 20px;
    }

    .page-promotions__card h3 {
        font-size: 1.3em;
    }

    .page-promotions__faq-item h3 {
        font-size: 1.1em;
    }
}