/* style/index.css */

/* General page styling */
.page-index {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #ffffff; /* Default text color for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-bottom: 60px; /* Add some padding at the bottom before footer */
}

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

.page-index__section-title {
    font-size: 36px;
    font-weight: bold;
    color: #FFD700; /* Accent color for titles */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
}

.page-index__section-description {
    font-size: 18px;
    color: #f0f0f0;
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Reusable buttons */
.page-index__cta-button {
    display: inline-block;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index__cta-button--primary {
    background: #FFD700; /* Accent color for primary action */
    color: #0A192F; /* Dark text for accent background */
    border: 2px solid #FFD700;
}

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

.page-index__cta-button--secondary {
    background: transparent;
    color: #FFD700; /* Accent color for text */
    border: 2px solid #FFD700;
}

.page-index__cta-button--secondary:hover {
    background: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-index__btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background: #FFD700;
    color: #0A192F;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index__btn-primary:hover {
    background: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

.page-index__btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    color: #FFD700;
    text-decoration: none;
    border: 1px solid #FFD700;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-index__btn-secondary:hover {
    background: #FFD700;
    color: #0A192F;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(255, 215, 0, 0.2);
}

/* Image styling */
.page-index img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

/* Section backgrounds */
.page-index__dark-section {
    background-color: #0A192F; /* Main brand color */
    color: #ffffff;
    padding: 80px 0;
}

.page-index__light-section {
    background-color: #1a2a44; /* Slightly lighter dark for contrast */
    color: #ffffff;
    padding: 80px 0;
}


/* HERO Section */
.page-index__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: var(--header-offset, 120px); /* Account for fixed header */
    background: linear-gradient(135deg, #0A192F, #1a2a44); /* Subtle gradient for depth */
    overflow: hidden; /* Ensure content doesn't overflow */
}

.page-index__hero-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
}