/* content-sections.css - Styles for SEO content sections */

/* Content Wrapper */
.content-wrapper {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 1.5rem;
    color: var(--text-secondary);
}

.content-section {
    margin-bottom: 4rem;
}

.content-section h2 {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

/* Intro Section */
.intro-section {
    text-align: center;
    max-width: 800px;
    margin: 2rem auto;
    padding: 0 1.5rem;
}

.section-title {
    color: var(--gold);
    font-family: var(--font-display);
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.intro-text strong {
    color: var(--text-primary);
}

/* How to Use Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--gold);
    color: var(--surface-dark);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.2rem;
}

.step-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Tips Section */
.tips-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    border-left: 3px solid var(--green);
}

.tip-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.tip-card h3 {
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* FAQ Section */
.accordion-item {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-item summary {
    padding: 1rem 1.5rem;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-primary);
    list-style: none;
    /* Hide default triangle */
    position: relative;
    transition: background 0.2s ease;
}

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

.accordion-item summary::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.2rem;
}

.accordion-item[open] summary::after {
    content: '−';
}

.accordion-item summary:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0.5rem;
    /* Add some space between summary and content */
    padding-top: 1rem;
}

/* Recommended Gear Section */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02));
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    display: block;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
}

.product-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.3));
}

.product-card h3 {
    color: var(--text-primary);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}

.product-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Footer */
.main-footer {
    border-top: 1px solid var(--border-color);
    padding: 3rem 1.5rem;
    text-align: center;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 4rem;
}

.footer-content p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.8rem !important;
    opacity: 0.7;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.8rem;
    }

    .content-wrapper {
        margin: 2rem auto;
    }

    .steps-grid,
    .tips-container {
        grid-template-columns: 1fr;
    }
}