/* Features page specific styles */

/* Features intro section */
.features-intro {
    padding: 5rem 0;
    text-align: center;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.feature-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-image {
    height: 200px;
    background-color: #f5f5f5;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    padding: 1.5rem;
}

.feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* Main feature section */
.main-feature {
    padding: 5rem 0;
    background-color: var(--secondary-color);
    color: white;
}

.main-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.main-feature-content h2 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.main-feature-content p {
    margin-bottom: 1.5rem;
}

.feature-list {
    margin: 2rem 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.feature-icon {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
    font-weight: bold;
}

.feature-text h4 {
    margin-bottom: 0.5rem;
}

.main-feature-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-feature-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Technology section */
.tech-section {
    padding: 5rem 0;
}

.tech-container {
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.tech-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border: 1px solid #f0f0f0;
    border-radius: 5px;
    transition: all 0.3s;
}

.tech-item:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.tech-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin-right: 1rem;
    color: var(--secondary-color);
    font-size: 24px;
    flex-shrink: 0;
}

.tech-info h3 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

/* Levels section */
.levels-section {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.levels-container {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.level-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.level-card {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s;
}

.level-card:hover {
    transform: translateY(-10px);
}

.level-header {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 1rem;
    text-align: center;
    font-weight: bold;
    font-size: 1.2rem;
}

.level-body {
    padding: 1.5rem;
}

.level-icon {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.level-requirements {
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
    color: var(--secondary-color);
}

.level-benefits {
    margin-top: 1rem;
}

.level-benefits h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Smile coin section */
.smile-coin-section {
    padding: 5rem 0;
}

.coin-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.coin-icon {
    width: 150px;
    height: 150px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 60px;
    color: var(--secondary-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.coin-description {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.coin-uses {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.coin-use-card {
    background-color: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.coin-use-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.coin-use-title {
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

/* CTA section */
.cta-section {
    background-color: var(--primary-color);
    padding: 5rem 0;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
}

.cta-content p {
    color: var(--secondary-color);
    margin-bottom: 2rem;
    font-size: 1.2rem;
}

/* Media queries */
@media (max-width: 768px) {
    .main-feature-grid,
    .tech-grid {
        grid-template-columns: 1fr;
    }

    .cta-content p {
        font-size: 1rem;
    }
}
