/* style/promotions.css */

/* Base styles for the promotions page */
.page-promotions {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark background */
    background-color: var(--primary-color, #1A202C); /* Main background color */
}

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

.page-promotions__section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary-color, #FFD700); /* Gold for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 20px;
}

.page-promotions__text-block {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Section */
.page-promotions__hero-section {
    position: relative;
    padding-top: 0; /* shared already handles body padding-top */
    padding-bottom: 0;
    margin-top: 0;
    overflow: hidden;
    color: #ffffff;
    background-color: #1A202C;
}

.page-promotions__hero-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    max-width: 1400px; /* Adjust as needed for hero content width */
    margin: 0 auto;
    box-sizing: border-box;
}

.page-promotions__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.page-promotions__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5); /* Darken image slightly for text readability */
    display: block;
}

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

.page-promotions__hero-title {
    font-size: 52px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--secondary-color, #FFD700);
    line-height: 1.2;
}

.page-promotions__hero-description {
    font-size: 22px;
    margin-bottom: 40px;
    color: #f0f0f0;
}

.page-promotions__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
}

/* Buttons */
.page-promotions__btn-primary,
.page-promotions__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
    text-align: center;
}

.page-promotions__btn-primary {
    background-color: var(--secondary-color, #FFD700);
    color: var(--primary-color, #1A202C);
    border: 2px solid var(--secondary-color, #FFD700);
}

.page-promotions__btn-primary:hover {
    background-color: #e6c200; /* Darken secondary color */
    border-color: #e6c200;
}

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

.page-promotions__btn-secondary:hover {
    background-color: var(--secondary-color, #FFD700);
    color: var(--primary-color, #1A202C);
}

/* Intro Section */
.page-promotions__intro-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
    color: #333333; /* Dark text for light background */
}

.page-promotions__intro-section .page-promotions__section-title {
    color: var(--primary-color, #1A202C);
}

.page-promotions__intro-section .page-promotions__text-block {
    color: #555555;
}

/* Types Section */
.page-promotions__types-section {
    padding: 80px 0;
    background-color: var(--primary-color, #1A202C); /* Dark background */
    color: #ffffff; /* Light text */
}

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

.page-promotions__card {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white for cards on dark bg */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    color: #ffffff;
}

.page-promotions__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-promotions__card-title {
    font-size: 24px;
    color: var(--secondary-color, #FFD700);
    margin-bottom: 20px;
    font-weight: 700;
}

.page-promotions__card img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
    object-fit: cover;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
    width: 100%; /* Ensure it fills card width */
    display: block;
}

.page-promotions__card-text {
    font-size: 16px;
    margin-bottom: 25px;
    flex-grow: 1;
}

.page-promotions__card .page-promotions__btn-primary,
.page-promotions__card .page-promotions__btn-secondary {
    margin-top: 10px;
    width: 100%;
}

/* VIP Section */
.page-promotions__vip-section {
    padding: 80px 0;
    background-color: #f8f8f8; /* Light background */
    color: #333333; /* Dark text */
}

.page-promotions__vip-section .page-promotions__section-title {
    color: var(--primary-color, #1A202C);
}

.page-promotions__vip-section .page-promotions__text-block {
    color: #555555;
}

.page-promotions__list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-promotions__list li {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 18px 25px;
    display: flex;
    align-items: flex-start;
    font-size: 17px;
    color: #333333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.page-promotions__list-icon {
    color: var(--secondary-color, #FFD700);
    font-size: 24px;
    margin-right: 15px;
    font-weight: bold;
    flex-shrink: 0;
    line-height: 1;
}

.page-promotions__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap; /* Allow buttons to wrap */
}

/* Guide Section */
.page-promotions__guide-section {
    padding: 80px 0;
    background-color: var(--primary-color, #1A202C); /* Dark background */
    color: #ffffff; /* Light text */
}

.page-promotions__numbered-list {
    list-style: none;
    counter-reset: guide-step;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-promotions__numbered-list li {
    counter-increment: guide-step;
    background-color: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    margin-bottom: 20px;
    padding: 25px 30px 25px 70px;
    position: relative;
    font-size: 17px;
    color: #ffffff;
    text-align: left;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}