/* style/index.css */
.page-index {
    padding-top: var(--header-offset, 120px);
    background-color: #FFFFFF;
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

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

/* Hero Section */
.page-index__hero-section {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background-color: #000000;
    color: #FFFFFF;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.page-index__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-index__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: bold;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-index__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #F0F0F0;
}

.page-index__hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.page-index__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    font-size: 1.1em;
}

.page-index__button--register {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-index__button--register:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

.page-index__button--login {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-index__button--login:hover {
    background-color: #FCBC45;
    color: #000000;
}

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

.page-index__hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
}

/* General Section Styling */
.page-index__section-title {
    font-size: 2.5em;
    color: #000000;
    text-align: center;
    margin-bottom: 20px;
    padding-top: 60px;
}

.page-index__section-description {
    font-size: 1.1em;
    color: #555555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

/* About Section */
.page-index__about-section {
    padding: 60px 0;
    background-color: #FFFFFF;
}

.page-index__about-grid {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-index__about-text {
    flex: 1;
}

.page-index__about-text p {
    margin-bottom: 20px;
    color: #333333;
}

.page-index__about-image {
    flex: 1;
    text-align: center;
}

.page-index__about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-index__button--learn-more {
    background-color: #000000;
    color: #FFFFFF;
    border: 2px solid #000000;
}

.page-index__button--learn-more:hover {
    background-color: #333333;
    border-color: #333333;
}