/* guide-article.css - Styles for individual guide pages */

/* Main positioning and layout fixes */
main {
    padding-top: 120px; /* REDUCED: Was 140px. This makes the header area smaller. */
    padding-bottom: 0; 
    position: relative;
    z-index: 10;
    background-color: #000;
    min-height: calc(100vh - 120px); /* Adjusted to match new padding */
}

.guide-article {
    background-color: #000;
    position: relative;
    z-index: 11;
}

.guide-article .container {
    max-width: 800px;
    position: relative;
    z-index: 12;
}

/* Article header section */
.article-header {
    text-align: center; 
    margin-bottom: 60px;
    position: relative;
    z-index: 20;
    background-color: #000;
    padding: 20px 0;
}

.article-header h1 {
    font-size: 48px;
    font-weight: 500;
    margin-bottom: 20px;
    background: linear-gradient(180deg, #ffffff 0%, #bd815f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
}

.article-intro {
    font-size: 20px;
    color: #999;
    max-width: 700px;
    margin: 0 auto;
}

/* Article sections */
.article-section {
    position: relative;
    z-index: 20;
    background-color: #000;
    padding: 20px 0;
    margin-bottom: 40px;
}

.article-section h2 {
    font-size: 32px;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(189, 129, 95, 0.2);
}

.article-section h4 {
    font-size: 20px;
    color: #cea064;
    margin-top: 25px;
    margin-bottom: 10px;
}

.article-section p {
    color: #a6a6a6;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.article-section strong {
    color: #fff;
    font-weight: 600;
}

.article-section ul, 
.article-section ol {
    color: #c3c1c1;
    padding-left: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.article-section li {
    margin-bottom: 10px;
    color: #b6b5b5;
}

.article-section li strong {
    color: #fff;
}

/* CTA Section with proper spacing */
.article-cta {
    margin-top: 60px;
    margin-bottom: 80px; 
    padding: 40px;
    text-align: center;
    background: #1C1C1E;
    border: 1px solid #2a2a2a;
    border-radius: 15px;
    position: relative;
    z-index: 20;
}

.article-cta h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
}

.article-cta p {
    color: #a0a0a0;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.article-cta .btn {
    display: inline-block;
    text-decoration: none;
    -webkit-box-reflect: none !important;
    box-shadow: 0px 4px 20px rgba(189, 129, 95, 0.3); 
}

/* Ensure footer appears properly */
main {
    min-height: auto; 
}

.guide-article {
    padding-bottom: 40px; 
}

footer {
    position: relative;
    z-index: 20;
    margin-top: 0; 
}

/* Responsive */
@media (max-width: 768px) {
    main {
        padding-top: 100px; 
    }
    
    .article-header h1 {
        font-size: 36px;
    }
    
    .article-intro {
        font-size: 18px;
    }
    
    .article-section h2 {
        font-size: 28px;
    }
    
    .article-section p, 
    .article-section li {
        font-size: 16px;
    }
    
    .article-cta {
        margin-bottom: 60px; 
        padding: 30px 20px;
    }
}
/* Additional Styles for Glow Box Effect */
.guide-article {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(189, 129, 95, 0.2);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin-top: 40px;
}

.article-section {
    background-color: transparent;
    padding: 0;
}

.article-cta {
    background: linear-gradient(145deg, rgba(42, 42, 45, 0.5) 0%, rgba(28, 28, 30, 0.5) 100%);
    border-top: 2px solid #D4AC79;
}

@media (max-width: 768px) {
    .guide-article {
        padding: 25px;
    }
}
