/* style/promotions.css */

/* General Styles for the promotions page */
.page-promotions {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f8f9fa;
}

.page-promotions-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.page-promotions-section-title {
    font-size: 2.5em;
    color: #007bff;
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
    padding-top: 40px;
}

.page-promotions-section-subtitle {
    font-size: 1.2em;
    color: #555;
    text-align: center;
    margin-bottom: 40px;
}

.page-promotions-btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    font-size: 1em;
    text-align: center;
}

.page-promotions-btn-primary {
    background-color: #ffc107; /* Auxiliary color */
    color: #333; /* Dark text for contrast */
    border: 2px solid #ffc107;
}

.page-promotions-btn-primary:hover {
    background-color: #e0a800; /* Darker yellow */
    color: #000;
    border-color: #e0a800;
}

.page-promotions-btn-secondary {
    background-color: #007bff; /* Primary color */
    color: #fff;
    border: 2px solid #007bff;
}

.page-promotions-btn-secondary:hover {
    background-color: #0056b3; /* Darker blue */
    border-color: #0056b3;
}

.page-promotions-btn-outline {
    background-color: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.page-promotions-btn-outline:hover {
    background-color: #007bff;
    color: #fff;
}

.page-promotions-btn-large {
    padding: 15px 30px;
    font-size: 1.1em;
}

/* Hero Section */
.page-promotions-hero-section {
    background: linear-gradient(135deg, #007bff, #4da3ff); /* Gradient from primary to lighter blue */
    color: #fff;
    padding: 100px 0;
    text-align: center;
    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,blue_yellow,light_pattern]') 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;
    font-weight: 700;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

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

/* About Section */
.page-promotions-about-section {
    padding: 60px 0;
    background-color: #fff;
}

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

.page-promotions-feature-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-promotions-feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-promotions-feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.2));
}

.page-promotions-card-title {
    font-size: 1.5em;
    color: #007bff;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-promotions-card-description {
    font-size: 1em;
    color: #666;
}

/* Promotions List Section */
.page-promotions-list-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

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

.page-promotions-promotion-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-promotions-promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.page-promotions-promotion-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

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

.page-promotions-promotion-card .page-promotions-card-title {
    font-size: 1.6em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-promotions-promotion-card .page-promotions-card-title a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-promotions-promotion-card .page-promotions-card-title a:hover {
    color: #0056b3;
}

.page-promotions-promotion-card .page-promotions-card-description {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-promotions-promotion-card .page-promotions-btn {
    margin-top: auto; /* Push button to bottom */
    align-self: flex-start;
}

/* How To Claim Section */
.page-promotions-how-to-claim-section {
    padding: 80px 0;
    background-color: #fff;
}

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

.page-promotions-step-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    padding-top: 70px; /* Space for step number */
}

.page-promotions-step-number {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffc107;
    color: #333;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8em;
    font-weight: bold;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border: 3px solid #fff;
}

.page-promotions-step-card .page-promotions-card-title {
    color: #007bff;
    margin-bottom: 10px;
}

.page-promotions-step-card .page-promotions-card-description a {
    color: #007bff;
    text-decoration: underline;
}

.page-promotions-step-card .page-promotions-card-description a:hover {
    color: #0056b3;
}

.page-promotions-cta-bottom {
    text-align: center;
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}

.page-promotions-cta-text {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 25px;
    font-weight: 500;
}

/* FAQ Section */
.page-promotions-faq-section {
    padding: 80px 0;
    background-color: #f0f2f5;
}

.page-promotions-faq-list {
    margin-top: 40px;
    display: grid;
    gap: 20px;
}

.page-promotions-faq-item {
    background-color: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions-faq-question {
    font-size: 1.3em;
    color: #007bff;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-promotions-faq-answer {
    font-size: 1em;
    color: #555;
}

/* Final CTA Section */
.page-promotions-cta-final-section {
    padding: 80px 0;
    background: linear-gradient(45deg, #007bff, #0056b3); /* Darker blue gradient */
    color: #fff;
    text-align: center;
}

.page-promotions-cta-final-section .page-promotions-section-title {
    color: #fff;
}

.page-promotions-cta-final-section .page-promotions-section-subtitle {
    color: #e0e0e0;
    margin-bottom: 50px;
}

.page-promotions-cta-final-section .page-promotions-btn {
    margin: 0 10px;
}

.page-promotions-cta-final-section .page-promotions-btn-primary {
    background-color: #ffc107;
    color: #333;
    border-color: #ffc107;
}

.page-promotions-cta-final-section .page-promotions-btn-primary:hover {
    background-color: #e0a800;
    border-color: #e0a800;
    color: #000;
}

.page-promotions-cta-final-section .page-promotions-btn-outline {
    color: #fff;
    border-color: #fff;
}

.page-promotions-cta-final-section .page-promotions-btn-outline:hover {
    background-color: #fff;
    color: #007bff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-promotions-hero-title {
        font-size: 3em;
    }

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

    .page-promotions-promotions-grid,
    .page-promotions-steps-grid,
    .page-promotions-grid {
        grid-template-columns: 1fr;
    }

    .page-promotions-promotion-image {
        height: 180px;
    }
}

@media (max-width: 768px) {
    .page-promotions-hero-title {
        font-size: 2.5em;
    }

    .page-promotions-hero-description {
        font-size: 1.1em;
    }

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

    .page-promotions-section-subtitle {
        font-size: 1em;
    }

    .page-promotions-btn-large {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-promotions-cta-final-section .page-promotions-btn {
        margin: 10px 0;
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .page-promotions-hero-title {
        font-size: 2em;
    }

    .page-promotions-hero-description {
        font-size: 0.95em;
    }

    .page-promotions-section-title {
        font-size: 1.6em;
        padding-top: 30px;
    }

    .page-promotions-container {
        padding: 0 10px;
    }

    .page-promotions-btn {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}