/* style/promotions.css */

:root {
    --primary-color: #C61F1F;
    --secondary-color: #E53030;
    --card-bg: #2A1212;
    --background-dark: #140C0C;
    --text-main: #FFF1E8;
    --border-color: #6A1E1E;
    --gold-color: #F3C54D;
    --deep-red-color: #7E0D0D;
    --button-gradient: linear-gradient(180deg, #FFB04A 0%, #D86A14 100%);
}

.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--background-dark); /* Ensure text is readable on this dark background */
}

.page-promotions__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    overflow: hidden;
    background-color: var(--background-dark);
}

.page-promotions__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-bottom: 30px;
}

.page-promotions__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
    color: var(--text-main);
}

.page-promotions__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: 1px;
}

.page-promotions__intro-text {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__section {
    padding: 60px 20px;
    background-color: var(--background-dark);
    color: var(--text-main);
}

.page-promotions__light-bg {
    background-color: #f5f5f5;
    color: #333333;
}

.page-promotions__dark-bg {
    background-color: var(--background-dark);
    color: var(--text-main);
}

.page-promotions__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--gold-color);
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-promotions__text-block {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.page-promotions__card {
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease-in-out;
    color: var(--text-main);
}

.page-promotions__card:hover {
    transform: translateY(-5px);
}

.page-promotions__feature-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.page-promotions__feature-title, .page-promotions__reason-title {
    font-size: 1.5rem;
    color: var(--gold-color);
    margin-bottom: 15px;
    font-weight: bold;
}

.page-promotions__feature-description, .page-promotions__reason-description {
    font-size: 0.95rem;
    color: var(--text-main);
}

.page-promotions__promo-category {
    margin-bottom: 50px;
    background-color: var(--card-bg);
    border-radius: 10px;
    padding: 30px;
    border: 1px solid var(--border-color);
}

.page-promotions__promo-category:last-child {
    margin-bottom: 0;
}

.page-promotions__promo-subtitle {
    font-size: 1.8rem;
    color: var(--gold-color);
    margin-bottom: 25px;
    font-weight: bold;
    text-align: left;
}

.page-promotions__promo-image, .page-promotions__step-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 25px;
    display: block;
}

.page-promotions__promo-list {
    list-style-type: disc;
    margin-left: 25px;
    margin-bottom: 20px;
    color: var(--text-main);
}

.page-promotions__promo-list li {
    margin-bottom: 10px;
    font-size: 1rem;
}

.page-promotions__promo-info {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

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

.page-promotions__step-item {
    text-align: left;
}

.page-promotions__step-title {
    font-size: 1.6rem;
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: bold;
}

.page-promotions__text-link {
    color: var(--gold-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.page-promotions__text-link:hover {
    color: var(--primary-color);
}

.page-promotions__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-promotions__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-promotions__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-promotions__btn-secondary {
    background: transparent;
    color: var(--gold-color);
    border: 2px solid var(--gold-color);
}

.page-promotions__btn-secondary:hover {
    background: var(--gold-color);
    color: var(--background-dark);
    transform: translateY(-2px);
}

.page-promotions__cta-final {
    text-align: center;
    padding-top: 80px;
    padding-bottom: 80px;
}

/* FAQ Section */
.page-promotions__faq-section {
    background-color: var(--background-dark);
    color: var(--text-main);
}

.page-promotions__faq-list {
    margin-top: 40px;
}

.page-promotions__faq-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: var(--text-main);
}

.page-promotions__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    list-style: none;
    color: var(--gold-color);
    outline: none;
}

.page-promotions__faq-item summary::-webkit-details-marker {
    display: none;
}

.page-promotions__faq-qtext {
    flex-grow: 1;
    text-align: left;
}

.page-promotions__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold-color);
}

.page-promotions__faq-answer {
    padding: 0 20px 20px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-main);
}

.page-promotions__faq-answer p {
    margin-top: 0;
    margin-bottom: 0;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-promotions__hero-content {
        max-width: 700px;
    }
    .page-promotions__main-title {
        font-size: clamp(2.2rem, 4.5vw, 3rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    }
    .page-promotions__promo-subtitle {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .page-promotions__hero-section {
        padding-bottom: 40px;
    }
    .page-promotions__hero-image {
        height: 300px; /* Adjust for smaller screens */
    }
    .page-promotions__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-promotions__intro-text {
        font-size: 1rem;
    }
    .page-promotions__section {
        padding: 40px 15px;
    }
    .page-promotions__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-promotions__text-block {
        font-size: 0.95rem;
    }
    .page-promotions__feature-grid, .page-promotions__reason-grid, .page-promotions__step-by-step {
        grid-template-columns: 1fr;
    }
    .page-promotions__card {
        padding: 25px;
    }
    .page-promotions__feature-title, .page-promotions__reason-title {
        font-size: 1.3rem;
    }
    .page-promotions__promo-subtitle {
        font-size: 1.4rem;
    }
    .page-promotions__promo-list {
        margin-left: 20px;
    }
    .page-promotions__promo-list li {
        font-size: 0.95rem;
    }
    .page-promotions__step-title {
        font-size: 1.4rem;
    }
    .page-promotions__cta-button {
        padding: 12px 25px;
        font-size: 1rem;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }
    .page-promotions__cta-final {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .page-promotions__faq-item summary {
        font-size: 1rem;
        padding: 15px;
    }
    .page-promotions__faq-answer {
        padding: 0 15px 15px;
        font-size: 0.95rem;
    }

    /* Mobile image responsive */
    .page-promotions img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-promotions__section,
    .page-promotions__card,
    .page-promotions__container,
    .page-promotions__hero-section,
    .page-promotions__promo-category,
    .page-promotions__step-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__hero-section {
        padding-top: 10px !important;
    }
    /* Mobile button responsive */
    .page-promotions__cta-button,
    .page-promotions__btn-primary,
    .page-promotions__btn-secondary,
    .page-promotions a[class*="button"],
    .page-promotions a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-promotions__button-group,
    .page-promotions__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
    }
    .page-promotions__cta-buttons {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .page-promotions__main-title {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }
    .page-promotions__section-title {
        font-size: clamp(1.4rem, 6vw, 2rem);
    }
    .page-promotions__hero-image {
        height: 200px;
    }
}