/* Technical Documents Page Styles */
.technical-docs-content {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-family: 'Poppins', sans-serif;
}

/* Three-Column Layout */
.technical-docs-layout {
    display: grid;
    grid-template-columns: 1fr 1fr 350px;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

/* Left and Middle Columns */
.technical-info-left,
.technical-info-middle {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Info Cards - Using global content-box styles as base */
.info-card {
    background-color: #1a1a1a;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: box-shadow 0.2s;
    font-family: 'Poppins', sans-serif;
}

.info-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

/* Info card headings inherit from global h2, h3 styles */
.info-card h2 {
    font-size: 1.4rem;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.5px;
}

.info-card h3 {
    font-size: 1.1rem;
    margin: 1.5rem 0 1rem 0;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.95);
}

.info-card p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.info-card p strong {
    color: var(--mcbb-gold);
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
}

/* Requirement Highlights */
.requirement-highlight {
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    font-family: 'Poppins', sans-serif;
}

.requirement-highlight h3 {
    color: var(--mcbb-gold);
    margin-top: 0;
}

.requirement-highlight p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Lists */
.info-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    font-family: 'Poppins', sans-serif;
}

.info-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.info-list li:before {
    content: "▸";
    color: var(--mcbb-gold);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Technical Documents Sidebar */
.technical-docs-sidebar {
    height: fit-content;
}

.docs-container {
    background: rgba(26, 26, 26, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
    font-family: 'Poppins', sans-serif;
}

.docs-container h2 {
    font-size: 1.3rem;
    margin: 0 0 1.5rem 0;
    letter-spacing: 0.5px;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1rem;
}

/* Document Items */
.docs-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.doc-item {
    background: rgba(35, 39, 43, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.doc-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--mcbb-gold);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.doc-item.downloading {
    background: rgba(212, 175, 55, 0.2);
    border-color: var(--mcbb-gold);
    pointer-events: none;
}

.doc-item.downloading .download-indicator {
    color: var(--mcbb-gold);
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.doc-item h3 {
    font-size: 1rem;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.doc-item p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0 0 0.5rem 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

.download-indicator {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: rgba(212, 175, 55, 0.6);
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.doc-item:hover .download-indicator {
    color: var(--mcbb-gold);
    transform: translateY(2px);
}

/* No Documents State */
.no-docs {
    text-align: center;
    padding: 2rem 1rem;
}

.no-docs p {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    line-height: 1.5;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

/* Simple Contact Button Section */
.contact-button-section {
    text-align: center;
    margin-top: 4rem;
    padding: 2rem 0;
}

.contact-button {
    display: inline-block;
    background: var(--mcbb-gold);
    color: #000;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    font-family: 'Poppins', sans-serif;
}

.contact-button:hover {
    background: rgba(212, 175, 55, 0.9);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .technical-docs-layout {
        grid-template-columns: 1fr 1fr 300px;
        gap: 1.5rem;
    }
    
    .docs-container {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    .technical-docs-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .technical-docs-sidebar {
        order: -1;
    }
    
    .docs-container {
        max-width: 600px;
        margin: 0 auto;
    }
    
    .docs-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .info-card {
        padding: 1.5rem;
    }
    
    .docs-container {
        padding: 1.5rem;
    }
    
    .docs-list {
        grid-template-columns: 1fr;
    }
    
    .contact-button {
        padding: 0.8rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .info-card {
        padding: 1rem;
    }
    
    .docs-container {
        padding: 1rem;
    }
    
    .requirement-highlight {
        padding: 1rem;
    }
    
    .contact-button {
        padding: 0.7rem 1.5rem;
        font-size: 1rem;
    }
}